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
**Note:** TLS authentication is not yet supported by OCI Helm repositories.
458
-
459
457
To provide TLS credentials to use while connecting with the Helm repository,
460
458
the referenced Secret is expected to contain `.data.certFile` and
461
459
`.data.keyFile`, and/or `.data.caFile` values.
@@ -487,6 +485,28 @@ data:
487
485
caFile: <BASE64>
488
486
```
489
487
488
+
#### Provide TLS credentials in a secret of type kubernetes.io/dockerconfigjson
489
+
490
+
For OCI Helm repositories, Kubernetes secrets of type [kubernetes.io/dockerconfigjson](https://kubernetes.io/docs/concepts/configuration/secret/#secret-types)
491
+
are also supported. It is possible to append TLS credentials to the secret data.
492
+
493
+
For example:
494
+
495
+
```yaml
496
+
apiVersion: v1
497
+
kind: Secret
498
+
metadata:
499
+
name: example-tls
500
+
namespace: default
501
+
type: kubernetes.io/dockerconfigjson
502
+
data:
503
+
.dockerconfigjson: <BASE64>
504
+
certFile: <BASE64>
505
+
keyFile: <BASE64>
506
+
# NOTE: Can be supplied without the above values
507
+
caFile: <BASE64>
508
+
```
509
+
490
510
### Pass credentials
491
511
492
512
`.spec.passCredentials`is an optional field to allow the credentials from the
0 commit comments