File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -128,10 +128,20 @@ can try with `nano config.yaml`.
128
128
proxy-7cb9bc4cc-9bdlp 1/1 Running 0 37s
129
129
```
130
130
131
- 5 . Find the IP we can use to access the JupyterHub. Run the following command
132
- until the external IP of the ` proxy-public ` [ service] ( https://kubernetes.io/docs/concepts/services-networking/service/ ) is
133
- available.
131
+ 5 . Find the IP we can use to access the JupyterHub. Run the following
132
+ command until the ` EXTERNAL-IP ` of the ` proxy-public ` [ service] ( https://kubernetes.io/docs/concepts/services-networking/service/ )
133
+ is available like in the example output .
134
134
135
+ ```
136
+ kubectl --namespace=<k8s-namespace> get svc proxy-public
137
+ ```
138
+
139
+ ```
140
+ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
141
+ proxy-public LoadBalancer 10.51.248.230 104.196.41.97 80:31916/TCP 1m
142
+ ```
143
+
144
+ Or, use the short form:
135
145
```
136
146
kubectl -n <k8s-namespace> get svc proxy-public -o jsonpath='{.status.loadBalancer.ingress[].ip}'
137
147
```
You can’t perform that action at this time.
0 commit comments