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: 2 additions & 2 deletions charts/s1-agent/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,15 @@ Generate server token for helper secret
{{- if .Values.configuration.image.helper -}}
{{ .Values.configuration.image.helper }}
{{- else -}}
{{ required "Must set the appropriate registry for agent helper pulling" .Values.configuration.repositories.helper }}:{{ default .Values.configuration.tag.agent .Values.configuration.tag.helper }}
{{ required "Must set the appropriate registry for agent helper pulling" .Values.configuration.repositories.helper }}:{{ default .Values.configuration.tag.agent .Values.configuration.tag.helper }}{{ .Values.configuration.tag_suffix.helper }}
{{- end -}}
{{- end -}}

{{- define "agent.full_url" -}}
{{- if .Values.configuration.image.agent -}}
{{ .Values.configuration.image.agent }}
{{- else -}}
{{ required "Must set the appropriate registry for agent image pulling" .Values.configuration.repositories.agent }}:{{ required "Must set the appropriate tag for agent image pulling" .Values.configuration.tag.agent }}
{{ required "Must set the appropriate registry for agent image pulling" .Values.configuration.repositories.agent }}:{{ required "Must set the appropriate tag for agent image pulling" .Values.configuration.tag.agent }}{{ .Values.configuration.tag_suffix.agent }}
{{- end -}}
{{- end -}}

Expand Down
3 changes: 3 additions & 0 deletions charts/s1-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ configuration:
tag:
agent: "25.3.1" # IF you want to use a different tag for the agent (only do so if advised by support), please replace this with the relevant tag for the agent image
helper: "25.3.1" # IF you want to use a different tag for the helper (only do so if advised by support), please replace this with the relevant tag for the helper image
tag_suffix:
agent: ""
helper: ""
proxy: "" # specify a proxy server (in URL format), if needed
dv_proxy: "" # specify a proxy server for Deep-Visibility (in URL format), if needed
env:
Expand Down