|
|
@ -179,6 +179,19 @@ autoscaling:
|
|
|
|
targetCPUUtilizationPercentage: 80
|
|
|
|
targetCPUUtilizationPercentage: 80
|
|
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Additional volumes on the output Deployment definition.
|
|
|
|
|
|
|
|
volumes: []
|
|
|
|
|
|
|
|
# - name: foo
|
|
|
|
|
|
|
|
# secret:
|
|
|
|
|
|
|
|
# secretName: mysecret
|
|
|
|
|
|
|
|
# optional: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Additional volumeMounts on the output Deployment definition.
|
|
|
|
|
|
|
|
volumeMounts: []
|
|
|
|
|
|
|
|
# - name: foo
|
|
|
|
|
|
|
|
# mountPath: "/etc/foo"
|
|
|
|
|
|
|
|
# readOnly: true
|
|
|
|
|
|
|
|
|
|
|
|
nodeSelector: {}
|
|
|
|
nodeSelector: {}
|
|
|
|
|
|
|
|
|
|
|
|
tolerations: []
|
|
|
|
tolerations: []
|
|
|
@ -323,6 +336,14 @@ spec:
|
|
|
|
port: http
|
|
|
|
port: http
|
|
|
|
resources:
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
|
|
|
|
{{- with .Values.volumeMounts }}
|
|
|
|
|
|
|
|
volumeMounts:
|
|
|
|
|
|
|
|
{{- toYaml . | nindent 12 }}
|
|
|
|
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- with .Values.volumes }}
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.nodeSelector }}
|
|
|
|
{{- with .Values.nodeSelector }}
|
|
|
|
nodeSelector:
|
|
|
|
nodeSelector:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|