github.com/stefanmcshane/helm@v0.0.0-20221213002717-88a4a2c6e77d/cmd/helm/testdata/testcharts/lib-chart/templates/_container.yaml (about) 1 {{- define "common.container.tpl" -}} 2 name: {{ .Chart.Name }} 3 image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" 4 imagePullPolicy: {{ .Values.image.pullPolicy }} 5 ports: 6 - name: http 7 containerPort: 80 8 resources: 9 {{ toYaml .Values.resources | indent 2 }} 10 {{- end -}} 11 {{- define "common.container" -}} 12 {{- /* clear new line so indentation works correctly */ -}} 13 {{- println "" -}} 14 {{- include "common.util.merge" (append . "common.container.tpl") | indent 8 -}} 15 {{- end -}}