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
This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
94
+
#### **imageRegistry** ~ `string`
95
+
> Default value:
96
+
> ```yaml
97
+
> ""
98
+
> ```
99
+
100
+
The container registry used for disco-agent images by default. This can include path prefixes (e.g. "artifactory.example.com/docker").
101
+
102
+
#### **imageNamespace** ~ `string`
103
+
> Default value:
104
+
> ```yaml
105
+
> ""
106
+
> ```
107
+
108
+
The repository namespace used for disco-agent images by default.
109
+
Examples:
110
+
- jetstack
111
+
- custom-namespace
112
+
113
+
#### **image.registry** ~ `string`
114
+
115
+
Deprecated: per-component registry prefix.
116
+
117
+
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
118
+
`imageRegistry`+ `imageNamespace` + `image.name`.
119
+
120
+
This can produce "double registry" style references such as
121
+
`legacy.example.io/quay.io/jetstack/...`. Prefer using the global
122
+
`imageRegistry`/`imageNamespace` values.
123
+
94
124
#### **image.repository** ~ `string`
95
125
> Default value:
96
126
> ```yaml
97
127
> ""
98
128
> ```
129
+
130
+
Full repository override (takes precedence over `imageRegistry`, `imageNamespace`, and `image.name`).
131
+
Example: quay.io/jetstack/disco-agent
132
+
133
+
#### **image.name** ~ `string`
134
+
> Default value:
135
+
> ```yaml
136
+
> disco-agent
137
+
> ```
138
+
139
+
The image name for the Discovery Agent.
140
+
This is used (together with `imageRegistry` and `imageNamespace`) to construct the full image reference.
141
+
99
142
#### **image.pullPolicy** ~ `string`
100
143
> Default value:
101
144
> ```yaml
@@ -109,14 +152,14 @@ This sets the pull policy for images.
109
152
> ""
110
153
> ```
111
154
112
-
Overrides the image tag whose default is the chart appVersion.
155
+
Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.
113
156
#### **image.digest** ~ `string`
114
157
> Default value:
115
158
> ```yaml
116
159
> ""
117
160
> ```
118
161
119
-
The image digest
162
+
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
@@ -30,9 +30,15 @@
30
30
"image": {
31
31
"$ref": "#/$defs/helm-values.image"
32
32
},
33
+
"imageNamespace": {
34
+
"$ref": "#/$defs/helm-values.imageNamespace"
35
+
},
33
36
"imagePullSecrets": {
34
37
"$ref": "#/$defs/helm-values.imagePullSecrets"
35
38
},
39
+
"imageRegistry": {
40
+
"$ref": "#/$defs/helm-values.imageRegistry"
41
+
},
36
42
"metrics": {
37
43
"$ref": "#/$defs/helm-values.metrics"
38
44
},
@@ -183,9 +189,15 @@
183
189
"digest": {
184
190
"$ref": "#/$defs/helm-values.image.digest"
185
191
},
192
+
"name": {
193
+
"$ref": "#/$defs/helm-values.image.name"
194
+
},
186
195
"pullPolicy": {
187
196
"$ref": "#/$defs/helm-values.image.pullPolicy"
188
197
},
198
+
"registry": {
199
+
"$ref": "#/$defs/helm-values.image.registry"
200
+
},
189
201
"repository": {
190
202
"$ref": "#/$defs/helm-values.image.repository"
191
203
},
@@ -197,21 +209,36 @@
197
209
},
198
210
"helm-values.image.digest": {
199
211
"default": "",
200
-
"description": "The image digest",
212
+
"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.",
213
+
"type": "string"
214
+
},
215
+
"helm-values.image.name": {
216
+
"default": "disco-agent",
217
+
"description": "The image name for the Discovery Agent.\nThis is used (together with `imageRegistry` and `imageNamespace`) to construct the full image reference.",
201
218
"type": "string"
202
219
},
203
220
"helm-values.image.pullPolicy": {
204
221
"default": "IfNotPresent",
205
222
"description": "This sets the pull policy for images.",
206
223
"type": "string"
207
224
},
225
+
"helm-values.image.registry": {
226
+
"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.",
227
+
"type": "string"
228
+
},
208
229
"helm-values.image.repository": {
209
230
"default": "",
231
+
"description": "Full repository override (takes precedence over `imageRegistry`, `imageNamespace`, and `image.name`).\nExample: quay.io/jetstack/disco-agent",
210
232
"type": "string"
211
233
},
212
234
"helm-values.image.tag": {
213
235
"default": "",
214
-
"description": "Overrides the image tag whose default is the chart appVersion.",
236
+
"description": "Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.",
237
+
"type": "string"
238
+
},
239
+
"helm-values.imageNamespace": {
240
+
"default": "",
241
+
"description": "The repository namespace used for disco-agent images by default.\nExamples:\n- jetstack\n- custom-namespace",
215
242
"type": "string"
216
243
},
217
244
"helm-values.imagePullSecrets": {
@@ -220,6 +247,11 @@
220
247
"items": {},
221
248
"type": "array"
222
249
},
250
+
"helm-values.imageRegistry": {
251
+
"default": "",
252
+
"description": "The container registry used for disco-agent images by default. This can include path prefixes (e.g. \"artifactory.example.com/docker\").",
# This can produce "double registry" style references such as
29
+
# `legacy.example.io/quay.io/jetstack/...`. Prefer using the global
30
+
# `imageRegistry`/`imageNamespace` values.
31
+
# +docs:property
32
+
# registry: quay.io
33
+
34
+
# Full repository override (takes precedence over `imageRegistry`, `imageNamespace`,
35
+
# and `image.name`).
36
+
# Example: quay.io/jetstack/disco-agent
37
+
# +docs:property
10
38
repository: ""
39
+
40
+
# The image name for the Discovery Agent.
41
+
# This is used (together with `imageRegistry` and `imageNamespace`) to construct the full
42
+
# image reference.
43
+
# +docs:property
44
+
name: disco-agent
45
+
11
46
# This sets the pull policy for images.
12
47
pullPolicy: IfNotPresent
13
-
# Overrides the image tag whose default is the chart appVersion.
48
+
49
+
# Override the image tag to deploy by setting this variable.
50
+
# If no value is set, the chart's appVersion is used.
14
51
tag: ""
15
-
# The image digest
52
+
53
+
# Override the image digest to deploy by setting this variable.
54
+
# If set together with `image.tag`, the rendered image will include both tag and digest.
16
55
digest: ""
17
56
18
57
# 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