Skip to content

Commit

Permalink
Disabling auto backend config to cleanup Tconf CRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Utkarshjh authored Dec 17, 2024
1 parent 774190b commit 9e3b007
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions helm/trident-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ spec:
containers:
- command:
- /trident-operator
{{- if or .Values.anfConfigurator.enabled .Values.ontapConfigurator.enabled }}
- -configurator-reconcile-interval={{ .Values.configuratorReconcileInterval }}
{{- end }}
{{- if .Values.operatorDebug }}
- -debug
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions helm/trident-operator/templates/tridentorchestrator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ spec:
cloudIdentity: {{ .Values.cloudIdentity }}
enableACP: {{ .Values.enableACP }}
acpImage: {{ .Values.acpImage }}
enableAutoBackendConfig: {{ or .Values.ontapConfigurator.enabled .Values.anfConfigurator.enabled }}
iscsiSelfHealingInterval: {{ .Values.iscsiSelfHealingInterval }}
iscsiSelfHealingWaitTime: {{ .Values.iscsiSelfHealingWaitTime }}
{{- if .Values.k8sAPIQPS }}
Expand Down
1 change: 1 addition & 0 deletions operator/crd/apis/netapp/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ type TridentOrchestratorSpec struct {
CloudIdentity string `json:"cloudIdentity,omitempty"`
EnableACP bool `json:"enableACP,omitempty"`
ACPImage string `json:"acpImage,omitempty"`
EnableAutoBackendConfig bool `json:"enableAutoBackendConfig,omitempty"`
ISCSISelfHealingInterval string `json:"iscsiSelfHealingInterval,omitempty"`
ISCSISelfHealingWaitTime string `json:"iscsiSelfHealingWaitTime,omitempty"`
K8sAPIQPS int `json:"k8sAPIQPS,omitempty"`
Expand Down

0 comments on commit 9e3b007

Please sign in to comment.