github.com/qsis/helm@v3.0.0-beta.3+incompatible/cmd/helm/testdata/output/template-chart-with-template-lib-dep.txt (about)

     1  ---
     2  # Source: chart-with-template-lib-dep/templates/service.yaml
     3  apiVersion: v1
     4  kind: Service
     5  metadata:
     6    labels:
     7      app: chart-with-template-lib-dep
     8      chart: chart-with-template-lib-dep-0.1.0
     9      heritage: Helm
    10      release: RELEASE-NAME
    11    name: release-name-chart-with-template-lib-dep
    12  spec:
    13    ports:
    14    - name: http
    15      port: 80
    16      targetPort: http
    17    selector:
    18      app: chart-with-template-lib-dep
    19      release: RELEASE-NAME
    20    type: ClusterIP
    21  ---
    22  # Source: chart-with-template-lib-dep/templates/deployment.yaml
    23  apiVersion: apps/v1beta2
    24  kind: Deployment
    25  metadata:
    26    name: RELEASE-NAME-chart-with-template-lib-dep
    27    labels:
    28      app: chart-with-template-lib-dep
    29      chart: chart-with-template-lib-dep-0.1.0
    30      release: RELEASE-NAME
    31      heritage: Helm
    32  spec:
    33    replicas: 1
    34    selector:
    35      matchLabels:
    36        app: chart-with-template-lib-dep
    37        release: RELEASE-NAME
    38    template:
    39      metadata:
    40        labels:
    41          app: chart-with-template-lib-dep
    42          release: RELEASE-NAME
    43      spec:
    44        containers:
    45          - name: chart-with-template-lib-dep
    46            image: "nginx:stable"
    47            imagePullPolicy: IfNotPresent
    48            ports:
    49              - name: http
    50                containerPort: 80
    51                protocol: TCP
    52            livenessProbe:
    53              httpGet:
    54                path: /
    55                port: http
    56            readinessProbe:
    57              httpGet:
    58                path: /
    59                port: http
    60            resources:
    61              {}