Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlesne committed Sep 22, 2024
2 parents b478735 + 761e970 commit 60c83a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/helm/blue-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ spec:
matchLabels:
{{- include "blue-agent.selectorLabels" . | nindent 6 }}
replicas: {{ .Values.replicaCount | int | required "A value for .Values.replicaCount is required" }}
revisionHistoryLimit: {{ .Values.revisionHistoryLimit | int | required "A value for .Values.revisionHistoryLimit is required" }}
strategy:
type: RollingUpdate
rollingUpdate:
Expand Down
4 changes: 4 additions & 0 deletions src/helm/blue-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ tolerations: []
# Pod affinity configuration
affinity: {}

# Number of revisions to keep in the history of the Deployment
# Warning: setting this to 0 will disable the Deployment history and cause inability to rollback (see: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#clean-up-policy)
revisionHistoryLimit: 10

# Annotations for scheduling and security behaviors
#
# Example, to be used with img or BuildKit:
Expand Down

0 comments on commit 60c83a7

Please sign in to comment.