Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm/trident-operator/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ Trident AutoSupport image
{{- define "trident.autosupportImage" -}}
{{- if .Values.tridentAutosupportImage }}
{{- .Values.tridentAutosupportImage }}
{{- else if .Values.tridentAutosupportImageRegistry }}
{{- .Values.tridentAutosupportImageRegistry }}/trident-autosupport:{{ .Values.tridentAutosupportImageTag | default .Chart.AppVersion | trunc 5 }}
{{- else if .Values.imageRegistry }}
{{- .Values.imageRegistry }}/trident-autosupport:{{ .Values.tridentAutosupportImageTag | default .Chart.AppVersion | trunc 5}}
{{- else }}
Expand Down Expand Up @@ -200,6 +202,8 @@ Trident image
{{- define "trident.image" -}}
{{- if .Values.tridentImage }}
{{- .Values.tridentImage }}
{{- else if .Values.tridentImageRegistry }}
{{- .Values.tridentImageRegistry }}/trident:{{ .Values.tridentImageTag | default .Chart.AppVersion }}
{{- else if .Values.imageRegistry }}
{{- .Values.imageRegistry }}/trident:{{ .Values.tridentImageTag | default .Chart.AppVersion }}
{{- else }}
Expand Down
6 changes: 6 additions & 0 deletions helm/trident-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ tridentExcludeAutosupport: false
# tridentAutosupportImage allows the complete override of the image for Trident's Autosupport container.
tridentAutosupportImage: ""

# tridentAutosupportImageRegistry allows to override the registry for Trident's Autosupport container.
tridentAutosupportImageRegistry: ""

# tridentAutosupportImageTag allows overriding the tag of the image for Trident's Autosupport container.
tridentAutosupportImageTag: "25.02"

Expand Down Expand Up @@ -124,6 +127,9 @@ tridentLogLayers: ""
# tridentImage allows the complete override of the image for Trident.
tridentImage: ""

# tridentImage allows to override the registry for the image of Trident.
tridentImageRegistry: ""

# tridentImageTag allows overriding the tag of the image for Trident.
tridentImageTag: ""

Expand Down