We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4522afe commit 32ff3baCopy full SHA for 32ff3ba
templates/deployment.yaml
@@ -7,6 +7,8 @@ metadata:
7
app.kubernetes.io/component: server
8
spec:
9
replicas: 1
10
+ strategy:
11
+ type: {{ .Values.strategyType }}
12
selector:
13
matchLabels:
14
{{- include "garm.selectorLabels" . | nindent 6 }}
values.yaml
@@ -86,6 +86,9 @@ service:
86
port: 9997
87
annotations: {}
88
89
+## -- Deployment strategy type.
90
+strategyType: "RollingUpdate"
91
+
92
## -- Ingress configuration.
93
ingress:
94
## -- Enable or disable the Ingress resource.
0 commit comments