1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Support providing TLS certs for helm source

This commit is contained in:
Hidde Beydals
2020-07-31 16:23:03 +02:00
parent 58619076ea
commit 123433c4ea
2 changed files with 65 additions and 25 deletions

View File

@@ -26,15 +26,25 @@ tk create source helm [name] [flags]
--username=username \
--password=password
# Create a source from a Helm repository using TLS authentication
tk create source helm podinfo \
--url=https://stefanprodan.github.io/podinfo \
--cert-file=./cert.crt \
--key-file=./key.crt \
--ca-file=./ca.crt
```
### Options
```
-h, --help help for helm
-p, --password string basic authentication password
--url string Helm repository address
-u, --username string basic authentication username
--ca-file string TLS authentication CA file path
--cert-file string TLS authentication cert file path
-h, --help help for helm
--key-file string TLS authentication key file path
-p, --password string basic authentication password
--url string Helm repository address
-u, --username string basic authentication username
```
### Options inherited from parent commands