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
`.spec.type`is an optional field that specifies the Helm repository type.
165
164
166
165
Possible values are `default` for a Helm HTTP/S repository, or `oci` for an OCI Helm repository.
167
166
168
-
169
167
### Provider
170
168
171
169
`.spec.provider`is an optional field that allows specifying an OIDC provider used
@@ -358,6 +356,12 @@ the needed permission is instead `storage.objects.list` which can be bound as pa
358
356
of the Container Registry Service Agent role. Take a look at [this guide](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity)
359
357
for more information about setting up GKE Workload Identity.
360
358
359
+
### Insecure
360
+
361
+
`.spec.insecure`is an optional field to allow connecting to an insecure (HTTP)
362
+
container registry server, if set to `true`. The default value is `false`,
363
+
denying insecure non-TLS connections when fetching Helm chart OCI artifacts.
364
+
361
365
### Interval
362
366
363
367
`.spec.interval`is a required field that specifies the interval which the
@@ -426,8 +430,8 @@ metadata:
426
430
name: example-user
427
431
namespace: default
428
432
stringData:
429
-
username: example
430
-
password: 123456
433
+
username: "user-123456"
434
+
password: "pass-123456"
431
435
```
432
436
433
437
OCI Helm repository example:
@@ -452,8 +456,8 @@ metadata:
452
456
name: oci-creds
453
457
namespace: default
454
458
stringData:
455
-
username: example
456
-
password: 123456
459
+
username: "user-123456"
460
+
password: "pass-123456"
457
461
```
458
462
459
463
For OCI Helm repositories, Kubernetes secrets of type [kubernetes.io/dockerconfigjson](https://kubernetes.io/docs/concepts/configuration/secret/#secret-types) are also supported.
0 commit comments