Remove redundant curl parameter;
parent
d2a2922e3d
commit
42a81b94e1
|
@ -160,7 +160,7 @@ At this point the Kubernetes control plane is up and running. Run the following
|
||||||
Make a HTTP request for the Kubernetes version info:
|
Make a HTTP request for the Kubernetes version info:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -k --cacert ca.crt https://server.kubernetes.local:6443/version
|
curl -k https://server.kubernetes.local:6443/version
|
||||||
```
|
```
|
||||||
|
|
||||||
```text
|
```text
|
||||||
|
|
|
@ -11,8 +11,7 @@ Each kubeconfig requires a Kubernetes API Server to connect to.
|
||||||
You should be able to ping `server.kubernetes.local` based on the `/etc/hosts` DNS entry from a previous lap.
|
You should be able to ping `server.kubernetes.local` based on the `/etc/hosts` DNS entry from a previous lap.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -k --cacert ca.crt \
|
curl -k https://server.kubernetes.local:6443/version
|
||||||
https://server.kubernetes.local:6443/version
|
|
||||||
```
|
```
|
||||||
|
|
||||||
```text
|
```text
|
||||||
|
|
Loading…
Reference in New Issue