Skip to content

Commit 6be5267

Browse files
authored
Merge pull request #2823 from Sieboldianus/azure-update-2022
Update docs to reflect Azure 2022 process
2 parents 6c52cc7 + 1fb30df commit 6be5267

File tree

8 files changed

+95
-390
lines changed

8 files changed

+95
-390
lines changed
-209 KB
Loading
-73.2 KB
Loading
-73.2 KB
Loading

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _get_git_ref_from_chartpress_based_version(version):
138138
"redhat/step-zero-openshift": "kubernetes/redhat/step-zero-openshift",
139139
"amazon/step-zero-aws-eks": "kubernetes/amazon/step-zero-aws-eks",
140140
"amazon/step-zero-aws": "kubernetes/amazon/step-zero-aws",
141-
"microsoft/step-zero-azure-autoscale": "kubernetes/microsoft/step-zero-azure-autoscale",
141+
"microsoft/step-zero-azure-autoscale": "kubernetes/microsoft/step-zero-azure",
142142
"microsoft/step-zero-azure": "kubernetes/microsoft/step-zero-azure",
143143
"google/step-zero-gcp": "kubernetes/google/step-zero-gcp",
144144
"create-k8s-cluster": "kubernetes/setup-kubernetes",

docs/source/jupyterhub/installation.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,26 +128,23 @@ can try with `nano config.yaml`.
128128
proxy-7cb9bc4cc-9bdlp 1/1 Running 0 37s
129129
```
130130

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 like in the example output.
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.
134134

135135
```
136-
kubectl get service --namespace <k8s-namespace>
136+
kubectl --namespace <k8s-namespace> get service proxy-public
137137
```
138138

139139
```
140-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
141-
hub ClusterIP 10.51.243.14 <none> 8081/TCP 1m
142-
proxy-api ClusterIP 10.51.247.198 <none> 8001/TCP 1m
140+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
143141
proxy-public LoadBalancer 10.51.248.230 104.196.41.97 80:31916/TCP 1m
144142
```
145143

146-
If the IP for `proxy-public` is too long to fit into the window, you
147-
can find the longer version by calling:
144+
Or, use the short form:
148145

149146
```
150-
kubectl describe service proxy-public --namespace <k8s-namespace>
147+
kubectl --namespace <k8s-namespace> get service proxy-public --output jsonpath='{.status.loadBalancer.ingress[].ip}'
151148
```
152149

153150
6. To use JupyterHub, enter the external IP for the `proxy-public` service in

0 commit comments

Comments
 (0)