Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change agentTls to agent.tls #71

Merged
merged 1 commit into from
May 14, 2024
Merged
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
2 changes: 1 addition & 1 deletion mirrord-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
- name: OPERATOR_LICENSE_PATH
value: /license/license.pem
{{- else if .Values.license.key }}
{{- if .Values.agentTls }}
{{- if .Values.agent.tls }}
- name: OPERATOR_AGENT_CONNECTION_TLS
value: "true"
{{- end }}
Expand Down
10 changes: 5 additions & 5 deletions mirrord-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,13 @@ agent:
# registry: "ghcr.io/metalbear-co/mirrord"
# tag: "latest"


# If you want the operator to secure agent connections with TLS, set this value to true.
# This option requires agent version at least 3.97.0.
tls: false
## use this if you want to add settings that aren't covered by the values.yaml
## see possible settings here: https://mirrord.dev/docs/reference/configuration/#root-agent
extraConfig:
extraConfig:
# tolerations:
# - operator: Exists
# privileged: true
Expand Down Expand Up @@ -95,7 +99,3 @@ tls:

# if you run on OpenShift, set this value to true to get a SCC in the yaml.
openshift: false

# If you want the operator to secure agent connections with TLS, set this value to true.
# This option requires agent version at least 3.97.0.
agentTls: false
Loading