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
etcd:
# -- (bool) Enable the creation of a local etcd instance as a default Datastore using the kamaji-etcd chart by CLASTIX. (default=true)deploy: true# -- (string) If the creation of an etcd instance is disabled, specify the default DataStore name for the Kamaji instance.datastoreName: kamaji-etcd
and controller.yaml template uses as:
containers:
- args:
- manager
- --health-probe-bind-address={{ .Values.healthProbeBindAddress }}
- --leader-elect
- --metrics-bind-address={{ .Values.metricsBindAddress }}
- --tmp-directory={{ .Values.temporaryDirectoryPath }}{{- if .Values.etcd.deploy }}
- --datastore={{ (index .Values "kamaji-etcd" "datastore").name }}{{- else }}
- --datastore={{ required ".Values.etcd.datastoreName is required when etcd sub-chart is enabled!" .Values.etcd.datastoreName }}{{- end }}
# remove this# etcd:# # -- (bool) Enable the creation of a local etcd instance as a default Datastore using the kamaji-etcd chart by CLASTIX. (default=true)# deploy: true# -- (string) Specify the default DataStore name for the Kamaji instance.defaultDatastoreName: defaultkamaji-etcd:
deploy: true # <<<<<<<<<< currently missing >>>>>>>>>>fullnameOverride: kamaji-etcddatastore:
enabled: truename: default
The introduction of dependancy for
kamaji-etcd
chart has the condition:However, the values.yaml file still report:
and controller.yaml template uses as:
Let's to refactor and simplify as:
In
Chart.yaml
:In
values.yaml
as:In
controller.yaml
as:The text was updated successfully, but these errors were encountered: