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

     1  ---
     2  # Source: modify-chart/templates/deployment.yaml
     3  apiVersion: apps/v1beta2
     4  kind: Deployment
     5  metadata:
     6    name: modify-chart
     7    labels:
     8      app: modify-chart
     9      chart: modify-chart-0.1.0
    10      release: modify-chart
    11      heritage: Tiller
    12  spec:
    13    replicas: 1
    14    selector:
    15      matchLabels:
    16        app: modify-chart
    17        release: modify-chart
    18    template:
    19      metadata:
    20        labels:
    21          app: modify-chart
    22          release: modify-chart
    23      spec:
    24        containers:
    25          - name: modify-chart
    26            image: "nginx:stable"
    27            imagePullPolicy: IfNotPresent
    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