File tree Expand file tree Collapse file tree 4 files changed +14
-16
lines changed Expand file tree Collapse file tree 4 files changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -263,13 +263,13 @@ Deploy chart...
263263
264264` ` ` shell
265265make helmchart IMG=${imageRepository} VERSION=${imageTag}
266- helm upgrade -i namespace-configuration-operator-helmchart-test charts/namespace-configuration-operator -n namespace-configuration-operator-local --create-namespace
266+ helm upgrade -i namespace-configuration-operator-local charts/namespace-configuration-operator -n namespace-configuration-operator-local --create-namespace
267267` ` `
268268
269269Delete...
270270
271271` ` ` shell
272- helm delete namespace-configuration-operator-helmchart-test -n namespace-configuration-operator-local
272+ helm delete namespace-configuration-operator-local -n namespace-configuration-operator-local
273273kubectl delete -f charts/namespace-configuration-operator/crds/crds.yaml
274274` ` `
275275
Original file line number Diff line number Diff line change @@ -50,14 +50,3 @@ Selector labels
5050app.kubernetes.io/name: { { include " namespace-configuration-operator.name" . } }
5151app.kubernetes.io/instance: { { .Release.Name } }
5252{ {- end } }
53-
54- { {/*
55- Create the name of the service account to use
56- */} }
57- { {- define " namespace-configuration-operator.serviceAccountName" -} }
58- { {- if .Values.serviceAccount.create } }
59- { {- default (include " namespace-configuration-operator.fullname" .) .Values.serviceAccount.name } }
60- { {- else } }
61- { {- default " default" .Values.serviceAccount.name } }
62- { {- end } }
63- { {- end } }
Original file line number Diff line number Diff line change 3232 name : {{ .Chart.Name }}
3333 resources :
3434 {{- toYaml .Values.resources | nindent 12 }}
35+ livenessProbe :
36+ httpGet :
37+ path : /healthz
38+ port : 8081
39+ initialDelaySeconds : 15
40+ periodSeconds : 20
41+ readinessProbe :
42+ httpGet :
43+ path : /readyz
44+ port : 8081
45+ initialDelaySeconds : 5
46+ periodSeconds : 10
3547 {{- with .Values.nodeSelector }}
3648 nodeSelector :
3749 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change 4444 initialDelaySeconds : 5
4545 periodSeconds : 10
4646 resources :
47- limits :
48- cpu : 100m
49- memory : 30Mi
5047 requests :
5148 cpu : 100m
5249 memory : 20Mi
You can’t perform that action at this time.
0 commit comments