Update required quobyte secret structure (#14876)

This commit is contained in:
Stephan
2019-08-21 04:45:17 +02:00
committed by Kubernetes Prow Robot
parent 71b5465ae3
commit d61d3bee53
@@ -522,11 +522,12 @@ parameters:
Default is "default". Default is "default".
* `adminSecretName`: secret that holds information about the Quobyte user and * `adminSecretName`: secret that holds information about the Quobyte user and
the password to authenticate against the API server. The provided secret the password to authenticate against the API server. The provided secret
must have type "kubernetes.io/quobyte", e.g. created in this way: must have type "kubernetes.io/quobyte" and the keys `user` and `password`,
e.g. created in this way:
```shell ```shell
kubectl create secret generic quobyte-admin-secret \ kubectl create secret generic quobyte-admin-secret \
--type="kubernetes.io/quobyte" --from-literal=key='opensesame' \ --type="kubernetes.io/quobyte" --from-literal=user='admin' --from-literal=password='opensesame' \
--namespace=kube-system --namespace=kube-system
``` ```