github.com/simonferquel/app@v0.6.1-0.20181012141724-68b7cccf26ac/e2e/testdata/helm-expected.chart/templates/stackv1beta1.yaml (about)

     1  kind: Stack
     2  apiVersion: compose.docker.com/v1beta1
     3  metadata:
     4    name: helm
     5    generatename: ""
     6    namespace: ""
     7    selflink: ""
     8    uid: ""
     9    resourceversion: ""
    10    generation: 0
    11    creationtimestamp: "0001-01-01T00:00:00Z"
    12    deletiontimestamp: null
    13    deletiongraceperiodseconds: null
    14    labels: {}
    15    annotations: {}
    16    ownerreferences: []
    17    initializers: null
    18    finalizers: []
    19    clustername: ""
    20  spec:
    21    composeFile: |
    22      version: "3.7"
    23      services:
    24        app-watcher:
    25          image: {{.Values.watcher.image}}
    26        debug:
    27          deploy:
    28            resources:
    29              limits:
    30                memory: {{.Values.memory}}
    31          environment:
    32            foo: {{.Values.bar}}
    33          healthcheck:
    34            test:
    35            - /ping
    36            - debug
    37            timeout: {{.Values.timeout}}
    38            interval: 2m0s
    39          image: busybox:latest
    40          labels:
    41            foo: {{.Values.bar}}
    42          ports:
    43          - mode: ingress
    44            target: {{.Values.aport}}
    45            protocol: tcp
    46          - mode: ingress
    47            target: {{.Values.sport}}
    48            published: {{.Values.dport}}
    49            protocol: tcp
    50          privileged: {{.Values.privileged}}
    51          read_only: {{.Values.read_only}}
    52          stdin_open: {{.Values.stdin_open}}
    53          tty: {{.Values.tty}}
    54        front:
    55          deploy:
    56            replicas: {{.Values.myapp.nginx_replicas}}
    57          environment:
    58            {{.Values.foo}}: {{.Values.bar}}
    59          image: nginx:{{.Values.myapp.nginx_version}}
    60          labels:
    61            {{.Values.foo}}: {{.Values.bar}}
    62        monitor:
    63          command:
    64          - monitor
    65          - --source
    66          - '{{.Values.app.name}}-{{.Values.app.version}}'
    67          - $dollar
    68          image: busybox:latest