Skip to content

Commit

Permalink
steo-issuer: Allow to set deployment strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
owen thomas committed Dec 5, 2024
1 parent 872f5b4 commit 6697c08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions step-issuer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ metadata:
control-plane: {{ .Values.service.controlPlane }}
{{- include "step-issuer.labels" . | nindent 4 }}
spec:
{{- if .Values.updateStrategy }}
strategy: {{ toYaml .Values.updateStrategy | nindent 4 }}
{{- end }}
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
Expand Down
3 changes: 3 additions & 0 deletions step-issuer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ service:
podSecurityContext: {}
# fsGroup: 2000

# Strategy used for the deployment
updateStrategy: {}

# security context for container
securityContext:
runAsUser: 1000
Expand Down

0 comments on commit 6697c08

Please sign in to comment.