We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2bb7a6 + 66e666f commit 400d6caCopy full SHA for 400d6ca
content/en/docs/tasks/administer-cluster/configure-upgrade-etcd.md
@@ -125,7 +125,16 @@ the URL schema.
125
126
Similarly, to configure etcd with secure client communication, specify flags
127
`--key-file=k8sclient.key` and `--cert-file=k8sclient.cert`, and use HTTPS as
128
-the URL schema.
+the URL schema. Here is an example on a client command that uses secure
129
+communication:
130
+
131
+```
132
+ETCDCTL_API=3 etcdctl --endpoints 10.2.0.9:2379 \
133
+ --cert=/etc/kubernetes/pki/etcd/server.crt \
134
+ --key=/etc/kubernetes/pki/etcd/server.key \
135
+ --cacert=/etc/kubernetes/pki/etcd/ca.crt \
136
+ member list
137
138
139
### Limiting access of etcd clusters
140
0 commit comments