You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To allow the pods to utilize horizontal pod auto scaling the replicas and strategy.type fields of the deployment manifests need to be optionally turned on/off.
Propose modifying the deployment templates like so:
{{- if .Values.notificationPublisher.replicas.enabled }}replicas: {{ .Values.notificationPublisher.replicas.replicaCount }}{{- end }}{{- if .Values.notificationPublisher.deployment.strategy.enabled }}strategy:
type: {{ .Values.notificationPublisher.deployment.strategy.type }}{{- end }}
values.yaml
replicas:
enabled: truereplicaCount: 1deployment:
# -- The deployment strategy to use.strategy:
enabled: truetype: RollingUpdate
The text was updated successfully, but these errors were encountered:
To allow the pods to utilize horizontal pod auto scaling the
replicas
andstrategy.type
fields of the deployment manifests need to be optionally turned on/off.Propose modifying the deployment templates like so:
values.yaml
The text was updated successfully, but these errors were encountered: