fix kubectl exec example in chart notes (#7496)

This commit is contained in:
orange-llajeanne
2021-09-15 18:04:57 +02:00
committed by GitHub
parent 9d8b8f283c
commit 971c4a44a6
2 changed files with 2 additions and 2 deletions

View File

@@ -25,4 +25,4 @@ name: etcd
sources:
- https://github.com/bitnami/bitnami-docker-etcd
- https://coreos.com/etcd/
version: 6.8.0
version: 6.8.1

View File

@@ -45,7 +45,7 @@ To create a pod that you can use as a etcd client run the following command:
Then, you can set/get a key using the commands below:
kubectl exec -it {{ template "common.names.fullname" . }}-client -- bash
kubectl exec --namespace {{ .Release.Namespace }} -it {{ template "common.names.fullname" . }}-client -- bash
{{- $etcdAuthOptions := include "etcd.authOptions" . }}
etcdctl {{ $etcdAuthOptions }} put /message Hello
etcdctl {{ $etcdAuthOptions }} get /message