github.com/replicatedcom/ship@v0.50.0/integration/update/basic/expected/rendered.yaml (about)

     1  apiVersion: v1
     2  kind: Service
     3  metadata:
     4    labels:
     5      app: basic
     6      release: basic
     7    name: basic
     8  spec:
     9    ports:
    10    - name: http
    11      port: 80
    12      protocol: TCP
    13      targetPort: http
    14    selector:
    15      app: basic
    16      release: basic
    17    type: ClusterIP
    18  ---
    19  apiVersion: apps/v1beta2
    20  kind: Deployment
    21  metadata:
    22    labels:
    23      app: basic
    24      release: basic
    25    name: basic
    26  spec:
    27    replicas: 5
    28    selector:
    29      matchLabels:
    30        app: basic
    31        release: basic
    32    template:
    33      metadata:
    34        labels:
    35          app: basic
    36          release: basic
    37      spec:
    38        containers:
    39        - image: nginx:stable
    40          imagePullPolicy: IfNotPresent
    41          livenessProbe:
    42            httpGet:
    43              path: /
    44              port: http
    45          name: basic
    46          ports:
    47          - containerPort: 80
    48            name: http
    49            protocol: TCP
    50          readinessProbe:
    51            httpGet:
    52              path: /
    53              port: http
    54          resources: {}