File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ can try with `nano config.yaml`.
133
133
is available like in the example output.
134
134
135
135
```
136
- kubectl --namespace= <k8s-namespace> get svc proxy-public
136
+ kubectl --namespace <k8s-namespace> get service proxy-public
137
137
```
138
138
139
139
```
@@ -144,7 +144,7 @@ can try with `nano config.yaml`.
144
144
Or, use the short form:
145
145
146
146
```
147
- kubectl -n <k8s-namespace> get svc proxy-public -o jsonpath='{.status.loadBalancer.ingress[].ip}'
147
+ kubectl --namespace <k8s-namespace> get service proxy-public --output jsonpath='{.status.loadBalancer.ingress[].ip}'
148
148
```
149
149
150
150
6 . To use JupyterHub, enter the external IP for the ` proxy-public ` service in
Original file line number Diff line number Diff line change @@ -246,12 +246,12 @@ If you prefer to use the Azure portal see the [Azure Kubernetes Service quicksta
246
246
--query [0].name \
247
247
--output tsv)
248
248
az aks nodepool update \
249
- --name $SP_POOLNAME \
250
- --cluster-name <CLUSTER-NAME> \
251
- --resource-group <RESOURCE-GROUP-NAME> \
252
- --enable-cluster-autoscaler \
253
- --min-count <DESIRED-MINIMUM-COUNT> \
254
- --max-count <DESIRED-MAXIMUM-COUNT>
249
+ --name $SP_POOLNAME \
250
+ --cluster-name <CLUSTER-NAME> \
251
+ --resource-group <RESOURCE-GROUP-NAME> \
252
+ --enable-cluster-autoscaler \
253
+ --min-count <DESIRED-MINIMUM-COUNT> \
254
+ --max-count <DESIRED-MAXIMUM-COUNT>
255
255
```
256
256
257
257
or update the parameters with ` --update-cluster-autoscaler ` .
You can’t perform that action at this time.
0 commit comments