Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # templates <code> apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Values.container.name }} spec: replicas: {{ .Values.replicas }} selector: matchLabels: app: {{ .Values.container.name }} template: metadata: labels: app: {{ .Values.container.name }} environment: {{ .Values.environment }} spec: containers: - name: {{ .Values.container.name }} image: {{ .Values.container.image }}:{{ .Values.container.tag }} ports: - containerPort: {{ .Values.container.port }} env: - name: environment value: {{ .Values.environment }} </code> open/templates.txt Last modified: 2024/10/05 06:15by 127.0.0.1