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
{{ required "The key clusterDefaults.tokenValue must be set if clusterDefaults.enabled is true and clusterDefaults.existingTokenSecret is not set" .Values.clusterDefaults.tokenValue }}
Copy file name to clipboardExpand all lines: manifests/helm/values.yaml
+20-12Lines changed: 20 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -57,18 +57,6 @@ operator:
57
57
clusterDefaults:
58
58
# If enabled, configure cluster-wide defaults.
59
59
enabled: false
60
-
# Required. The Contrast UI instance to use. Defaults at the general SAAS instance.
61
-
url: https://app.contrastsecurity.com/Contrast
62
-
# Name of a secret to retrieve the cluster-wide connection details from.
63
-
# The secret should contain keys named apiKey, serviceKey and userName.
64
-
# Leave blank if you want the chart to create a secret using the subsequent apiKeyValue, serviceKeyValue and userNameValue values.
65
-
existingSecret:
66
-
# Required if existingSecret is not set. The API Key from the Contrast UI.
67
-
apiKeyValue:
68
-
# Required if existingSecret is not set. The Service Key from the Contrast UI.
69
-
serviceKeyValue:
70
-
# Required if existingSecret is not set. The User Name from the Contrast UI.
71
-
userNameValue:
72
60
#If true, parse and replace %variables% in the yaml.
73
61
enableYamlVariableReplacement: false
74
62
#If false, automatically set the Contrast application name on injected workloads (the workload name), rather than use the default (generated by the agent).
@@ -78,6 +66,26 @@ clusterDefaults:
78
66
# Optional. Any custom configuration to use. Must be in the format of the standard YAML file.
79
67
yaml: |-
80
68
enable: true
69
+
### Token Authentication ##
70
+
# Name of a secret to retrieve the cluster-wide connection token from.
71
+
# The secret should contain a key named 'token' (the agent token from the Contrast UI).
72
+
# Leave blank if you want the chart to create a secret using the subsequent tokenValue.
73
+
existingTokenSecret:
74
+
# Required if existingTokenSecret is not set. The Agent Token from the Contrast UI.
75
+
tokenValue:
76
+
### Legacy Authentication ###
77
+
# Name of a secret to retrieve the cluster-wide connection details from.
78
+
# The secret should contain keys named 'apiKey', 'serviceKey' and 'userName'.
79
+
# Leave blank if you want the chart to create a secret using the subsequent apiKeyValue, serviceKeyValue and userNameValue values.
80
+
existingSecret:
81
+
# Required. The Contrast UI instance to use. Defaults at the general SAAS instance.
0 commit comments