Skip to content

Commit

Permalink
Consistent indentation and use of full resource names and flags
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio authored Aug 16, 2022
1 parent 21066cc commit 1fb30df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/source/jupyterhub/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ can try with `nano config.yaml`.
is available like in the example output.

```
kubectl --namespace=<k8s-namespace> get svc proxy-public
kubectl --namespace <k8s-namespace> get service proxy-public
```

```
Expand All @@ -144,7 +144,7 @@ can try with `nano config.yaml`.
Or, use the short form:

```
kubectl -n <k8s-namespace> get svc proxy-public -o jsonpath='{.status.loadBalancer.ingress[].ip}'
kubectl --namespace <k8s-namespace> get service proxy-public --output jsonpath='{.status.loadBalancer.ingress[].ip}'
```

6. To use JupyterHub, enter the external IP for the `proxy-public` service in
Expand Down
12 changes: 6 additions & 6 deletions docs/source/kubernetes/microsoft/step-zero-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,12 @@ If you prefer to use the Azure portal see the [Azure Kubernetes Service quicksta
--query [0].name \
--output tsv)
az aks nodepool update \
--name $SP_POOLNAME \
--cluster-name <CLUSTER-NAME> \
--resource-group <RESOURCE-GROUP-NAME> \
--enable-cluster-autoscaler \
--min-count <DESIRED-MINIMUM-COUNT> \
--max-count <DESIRED-MAXIMUM-COUNT>
--name $SP_POOLNAME \
--cluster-name <CLUSTER-NAME> \
--resource-group <RESOURCE-GROUP-NAME> \
--enable-cluster-autoscaler \
--min-count <DESIRED-MINIMUM-COUNT> \
--max-count <DESIRED-MAXIMUM-COUNT>
```

or update the parameters with `--update-cluster-autoscaler`.
Expand Down

0 comments on commit 1fb30df

Please sign in to comment.