Skip to content

Commit

Permalink
Fix missing dollar sign in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ecsy committed Mar 11, 2019
1 parent 660c15b commit 18873fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To create the Kubernetes API server:

```
export MASTER_IP_ADDRESS=""
pke install master --kubernetes-api-server=MASTER_IP_ADDRESS:6443
pke install master --kubernetes-api-server=$MASTER_IP_ADDRESS:6443
```

>Please get the token and certhash from the logs or issue the `pke token list` command to print the token and cert hash needed by workers to join the cluster.
Expand All @@ -43,7 +43,7 @@ Once the API server is up and running you can add as many nodes as needed:
export TOKEN=""
export CERTHASH=""
export MASTER_IP_ADDRESS=""
pke install worker --kubernetes-node-token $TOKEN --kubernetes-api-server-ca-cert-hash $CERTHASH --kubernetes-api-server MASTER_IP_ADDRESS:6443
pke install worker --kubernetes-node-token $TOKEN --kubernetes-api-server-ca-cert-hash $CERTHASH --kubernetes-api-server $MASTER_IP_ADDRESS:6443
```

### Using `kubectl`
Expand Down

0 comments on commit 18873fc

Please sign in to comment.