add tracing and basic auth

This commit is contained in:
ducoterra
2020-05-15 13:37:42 -04:00
parent e4ec853e52
commit e46770616e
9 changed files with 34 additions and 2 deletions

View File

@@ -35,4 +35,11 @@ spec:
export USERNAME=
export TOKEN=
kubectl create secret generic namedotcom -n kube-system --from-literal=NAMECOM_USERNAME=$USERNAME --from-literal=NAMECOM_API_TOKEN=$TOKEN --from-literal=NAMECOM_SERVER=api.name.com
kubectl create secret generic namedotcom -n kube-system --from-literal=NAMECOM_USERNAME=$USERNAME --from-literal=NAMECOM_API_TOKEN=$TOKEN --from-literal=NAMECOM_SERVER=api.name.com
## Create a basic auth secret
```bash
htpasswd -nbB user pass >> users
kubectl create secret generic authsecret --from-file=users
```