github.com/replicatedcom/ship@v0.50.0/integration/init/git-root-directory/expected/base/deployment.yaml (about)

     1  ---
     2  # Source: values-update/templates/deployment.yaml
     3  apiVersion: apps/v1beta2
     4  kind: Deployment
     5  metadata:
     6    name: deployment
     7    labels:
     8      app: my-app
     9      chart: values-update
    10      release: values-update
    11      heritage: Tiller
    12  spec:
    13    replicas: 1
    14    selector:
    15      matchLabels:
    16        app: my-app
    17        release: values-update
    18    template:
    19      metadata:
    20        labels:
    21          app: my-app
    22          release: values-update
    23      spec:
    24        containers:
    25          - name: values-update
    26            image: "nginx:stable"
    27            imagePullPolicy: Always
    28            ports:
    29              - name: http
    30                containerPort: 80
    31                protocol: TCP
    32            livenessProbe:
    33              httpGet:
    34                path: /
    35                port: http
    36            readinessProbe:
    37              httpGet:
    38                path: /
    39                port: http