github.com/replicatedhq/ship@v0.55.0/integration/update/version/expected/base/deployment.yaml (about)

     1  ---
     2  # Source: version/templates/deployment.yaml
     3  apiVersion: apps/v1beta2
     4  kind: Deployment
     5  metadata:
     6    name: version
     7    labels:
     8      app: version
     9      chart: version-0.0.2
    10      release: version
    11      heritage: Tiller
    12  spec:
    13    replicas: 1
    14    selector:
    15      matchLabels:
    16        app: version
    17        release: version
    18    template:
    19      metadata:
    20        labels:
    21          app: version
    22          release: version
    23      spec:
    24        containers:
    25          - name: version
    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
    40            resources:
    41              {}
    42