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.
154
153
155
154
Possible values are `default` for a Helm HTTP/S repository, or `oci` for an OCI Helm repository.
156
155
157
-
158
156
### Provider
159
157
160
158
`.spec.provider`is an optional field that allows specifying an OIDC provider used
@@ -347,6 +345,15 @@ the needed permission is instead `storage.objects.list` which can be bound as pa
347
345
of the Container Registry Service Agent role. Take a look at [this guide](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity)
348
346
for more information about setting up GKE Workload Identity.
349
347
348
+
### Insecure
349
+
350
+
`.spec.insecure`is an optional field to allow connecting to an insecure (HTTP)
351
+
container registry server, if set to `true`. The default value is `false`,
352
+
denying insecure non-TLS connections when fetching Helm chart OCI artifacts.
353
+
354
+
**Note**: The insecure field is supported only for Helm OCI repositories.
355
+
The `spec.type` field must be set to `oci`.
356
+
350
357
### Interval
351
358
352
359
**Note:** This field is ineffectual for [OCI Helm
@@ -422,8 +429,8 @@ metadata:
422
429
name: example-user
423
430
namespace: default
424
431
stringData:
425
-
username: example
426
-
password: 123456
432
+
username: "user-123456"
433
+
password: "pass-123456"
427
434
```
428
435
429
436
OCI Helm repository example:
@@ -448,8 +455,8 @@ metadata:
448
455
name: oci-creds
449
456
namespace: default
450
457
stringData:
451
-
username: example
452
-
password: 123456
458
+
username: "user-123456"
459
+
password: "pass-123456"
453
460
```
454
461
455
462
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