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
Copy file name to clipboardExpand all lines: deploy/charts/disco-agent/README.md
+47-2Lines changed: 47 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,11 +98,54 @@ This will set the replicaset count more information can be found here: https://k
98
98
> ```
99
99
100
100
Must be set to indicate that you have read and accepted the CyberArk Terms of Service. If false, the helm chart will fail to install and will print a message with instructions on how to accept the TOS.
101
+
#### **imageRegistry** ~ `string`
102
+
> Default value:
103
+
> ```yaml
104
+
> quay.io
105
+
> ```
106
+
107
+
The container registry used for disco-agent images by default. This can include path prefixes (e.g. "artifactory.example.com/docker").
108
+
109
+
#### **imageNamespace** ~ `string`
110
+
> Default value:
111
+
> ```yaml
112
+
> jetstack
113
+
> ```
114
+
115
+
The repository namespace used for disco-agent images by default.
116
+
Examples:
117
+
- jetstack
118
+
- custom-namespace
119
+
120
+
#### **image.registry** ~ `string`
121
+
122
+
Deprecated: per-component registry prefix.
123
+
124
+
If set, this value is *prepended* to the image repository that the chart would otherwise render. This applies both when `image.repository` is set and when the repository is computed from
125
+
`imageRegistry`+ `imageNamespace` + `image.name`.
126
+
127
+
This can produce "double registry" style references such as
128
+
`legacy.example.io/quay.io/jetstack/...`. Prefer using the global
129
+
`imageRegistry`/`imageNamespace` values.
130
+
101
131
#### **image.repository** ~ `string`
102
132
> Default value:
103
133
> ```yaml
104
134
> ""
105
135
> ```
136
+
137
+
Full repository override (takes precedence over `imageRegistry`, `imageNamespace`, and `image.name`).
138
+
Example: quay.io/jetstack/disco-agent
139
+
140
+
#### **image.name** ~ `string`
141
+
> Default value:
142
+
> ```yaml
143
+
> disco-agent
144
+
> ```
145
+
146
+
The image name for the Discovery Agent.
147
+
This is used (together with `imageRegistry` and `imageNamespace`) to construct the full image reference.
148
+
106
149
#### **image.pullPolicy** ~ `string`
107
150
> Default value:
108
151
> ```yaml
@@ -116,14 +159,14 @@ This sets the pull policy for images.
116
159
> ""
117
160
> ```
118
161
119
-
Overrides the image tag whose default is the chart appVersion.
162
+
Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.
120
163
#### **image.digest** ~ `string`
121
164
> Default value:
122
165
> ```yaml
123
166
> ""
124
167
> ```
125
168
126
-
The image digest
169
+
Override the image digest to deploy by setting this variable. If set together with `image.tag`, the rendered image will include both tag and digest.
Copy file name to clipboardExpand all lines: deploy/charts/disco-agent/values.schema.json
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,15 @@
33
33
"image": {
34
34
"$ref": "#/$defs/helm-values.image"
35
35
},
36
+
"imageNamespace": {
37
+
"$ref": "#/$defs/helm-values.imageNamespace"
38
+
},
36
39
"imagePullSecrets": {
37
40
"$ref": "#/$defs/helm-values.imagePullSecrets"
38
41
},
42
+
"imageRegistry": {
43
+
"$ref": "#/$defs/helm-values.imageRegistry"
44
+
},
39
45
"metrics": {
40
46
"$ref": "#/$defs/helm-values.metrics"
41
47
},
@@ -191,9 +197,15 @@
191
197
"digest": {
192
198
"$ref": "#/$defs/helm-values.image.digest"
193
199
},
200
+
"name": {
201
+
"$ref": "#/$defs/helm-values.image.name"
202
+
},
194
203
"pullPolicy": {
195
204
"$ref": "#/$defs/helm-values.image.pullPolicy"
196
205
},
206
+
"registry": {
207
+
"$ref": "#/$defs/helm-values.image.registry"
208
+
},
197
209
"repository": {
198
210
"$ref": "#/$defs/helm-values.image.repository"
199
211
},
@@ -205,21 +217,36 @@
205
217
},
206
218
"helm-values.image.digest": {
207
219
"default": "",
208
-
"description": "The image digest",
220
+
"description": "Override the image digest to deploy by setting this variable. If set together with `image.tag`, the rendered image will include both tag and digest.",
221
+
"type": "string"
222
+
},
223
+
"helm-values.image.name": {
224
+
"default": "disco-agent",
225
+
"description": "The image name for the Discovery Agent.\nThis is used (together with `imageRegistry` and `imageNamespace`) to construct the full image reference.",
209
226
"type": "string"
210
227
},
211
228
"helm-values.image.pullPolicy": {
212
229
"default": "IfNotPresent",
213
230
"description": "This sets the pull policy for images.",
214
231
"type": "string"
215
232
},
233
+
"helm-values.image.registry": {
234
+
"description": "Deprecated: per-component registry prefix.\n\nIf set, this value is *prepended* to the image repository that the chart would otherwise render. This applies both when `image.repository` is set and when the repository is computed from\n`imageRegistry` + `imageNamespace` + `image.name`.\n\nThis can produce \"double registry\" style references such as\n`legacy.example.io/quay.io/jetstack/...`. Prefer using the global\n`imageRegistry`/`imageNamespace` values.",
235
+
"type": "string"
236
+
},
216
237
"helm-values.image.repository": {
217
238
"default": "",
239
+
"description": "Full repository override (takes precedence over `imageRegistry`, `imageNamespace`, and `image.name`).\nExample: quay.io/jetstack/disco-agent",
218
240
"type": "string"
219
241
},
220
242
"helm-values.image.tag": {
221
243
"default": "",
222
-
"description": "Overrides the image tag whose default is the chart appVersion.",
244
+
"description": "Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.",
245
+
"type": "string"
246
+
},
247
+
"helm-values.imageNamespace": {
248
+
"default": "jetstack",
249
+
"description": "The repository namespace used for disco-agent images by default.\nExamples:\n- jetstack\n- custom-namespace",
223
250
"type": "string"
224
251
},
225
252
"helm-values.imagePullSecrets": {
@@ -228,6 +255,11 @@
228
255
"items": {},
229
256
"type": "array"
230
257
},
258
+
"helm-values.imageRegistry": {
259
+
"default": "quay.io",
260
+
"description": "The container registry used for disco-agent images by default. This can include path prefixes (e.g. \"artifactory.example.com/docker\").",
Copy file name to clipboardExpand all lines: deploy/charts/disco-agent/values.yaml
+41-2Lines changed: 41 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,53 @@ replicaCount: 1
8
8
# Must be set to indicate that you have read and accepted the CyberArk Terms of Service. If false, the helm chart will fail to install and will print a message with instructions on how to accept the TOS.
9
9
acceptTerms: false
10
10
11
+
# The container registry used for disco-agent images by default.
12
+
# This can include path prefixes (e.g. "artifactory.example.com/docker").
13
+
# +docs:property
14
+
imageRegistry: "quay.io"
15
+
16
+
# The repository namespace used for disco-agent images by default.
17
+
# Examples:
18
+
# - jetstack
19
+
# - custom-namespace
20
+
# +docs:property
21
+
imageNamespace: "jetstack"
22
+
11
23
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
12
24
image:
25
+
# Deprecated: per-component registry prefix.
26
+
#
27
+
# If set, this value is *prepended* to the image repository that the chart would otherwise render.
28
+
# This applies both when `image.repository` is set and when the repository is computed from
# This can produce "double registry" style references such as
32
+
# `legacy.example.io/quay.io/jetstack/...`. Prefer using the global
33
+
# `imageRegistry`/`imageNamespace` values.
34
+
# +docs:property
35
+
# registry: quay.io
36
+
37
+
# Full repository override (takes precedence over `imageRegistry`, `imageNamespace`,
38
+
# and `image.name`).
39
+
# Example: quay.io/jetstack/disco-agent
40
+
# +docs:property
13
41
repository: ""
42
+
43
+
# The image name for the Discovery Agent.
44
+
# This is used (together with `imageRegistry` and `imageNamespace`) to construct the full
45
+
# image reference.
46
+
# +docs:property
47
+
name: disco-agent
48
+
14
49
# This sets the pull policy for images.
15
50
pullPolicy: IfNotPresent
16
-
# Overrides the image tag whose default is the chart appVersion.
51
+
52
+
# Override the image tag to deploy by setting this variable.
53
+
# If no value is set, the chart's appVersion is used.
17
54
tag: ""
18
-
# The image digest
55
+
56
+
# Override the image digest to deploy by setting this variable.
57
+
# If set together with `image.tag`, the rendered image will include both tag and digest.
19
58
digest: ""
20
59
21
60
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
Copy file name to clipboardExpand all lines: deploy/charts/venafi-kubernetes-agent/README.md
+51-4Lines changed: 51 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,13 +99,53 @@ endpointAdditionalProperties:
99
99
> ```
100
100
101
101
default replicas, do not scale up
102
+
#### **imageRegistry** ~ `string`
103
+
> Default value:
104
+
> ```yaml
105
+
> registry.venafi.cloud
106
+
> ```
107
+
108
+
The container registry used for venafi-kubernetes-agent images by default. This can include path prefixes (e.g. "artifactory.example.com/docker").
109
+
110
+
#### **imageNamespace** ~ `string`
111
+
> Default value:
112
+
> ```yaml
113
+
> venafi-agent
114
+
> ```
115
+
116
+
The repository namespace used for venafi-kubernetes-agent images by default.
117
+
Examples:
118
+
- venafi-agent
119
+
- custom-namespace
120
+
121
+
#### **image.registry** ~ `string`
122
+
123
+
Deprecated: per-component registry prefix.
124
+
125
+
If set, this value is *prepended* to the image repository that the chart would otherwise render. This applies both when `image.repository` is set and when the repository is computed from
126
+
`imageRegistry`+ `imageNamespace` + `image.name`.
127
+
128
+
This can produce "double registry" style references such as
129
+
`legacy.example.io/registry.venafi.cloud/venafi-agent/...`. Prefer using the global
130
+
`imageRegistry`/`imageNamespace` values.
131
+
102
132
#### **image.repository** ~ `string`
103
133
> Default value:
104
134
> ```yaml
105
-
> registry.venafi.cloud/venafi-agent/venafi-agent
135
+
> ""
106
136
> ```
107
137
108
-
The container image for the Discovery Agent.
138
+
Full repository override (takes precedence over `imageRegistry`, `imageNamespace`, and `image.name`). Example: registry.venafi.cloud/venafi-agent/venafi-agent
139
+
140
+
#### **image.name** ~ `string`
141
+
> Default value:
142
+
> ```yaml
143
+
> venafi-agent
144
+
> ```
145
+
146
+
The image name for the Discovery Agent.
147
+
This is used (together with `imageRegistry` and `imageNamespace`) to construct the full image reference.
148
+
109
149
#### **image.pullPolicy** ~ `string`
110
150
> Default value:
111
151
> ```yaml
@@ -116,10 +156,17 @@ Kubernetes imagePullPolicy on Deployment.
116
156
#### **image.tag** ~ `string`
117
157
> Default value:
118
158
> ```yaml
119
-
> v0.0.0
159
+
> ""
160
+
> ```
161
+
162
+
Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.
163
+
#### **image.digest** ~ `string`
164
+
> Default value:
165
+
> ```yaml
166
+
> ""
120
167
> ```
121
168
122
-
Overrides the image tag whose default is the chart appVersion.
169
+
Override the image digest to deploy by setting this variable. If set together with `image.tag`, the rendered image will include both tag and digest.
0 commit comments