Skip to content

Commit

Permalink
Merge pull request #2823 from Sieboldianus/azure-update-2022
Browse files Browse the repository at this point in the history
Update docs to reflect Azure 2022 process
  • Loading branch information
consideRatio authored Aug 16, 2022
2 parents 6c52cc7 + 1fb30df commit 6be5267
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 390 deletions.
Binary file modified docs/source/_static/images/azure/scale_condition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/images/azure/scale_in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/source/_static/images/azure/scale_out.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def _get_git_ref_from_chartpress_based_version(version):
"redhat/step-zero-openshift": "kubernetes/redhat/step-zero-openshift",
"amazon/step-zero-aws-eks": "kubernetes/amazon/step-zero-aws-eks",
"amazon/step-zero-aws": "kubernetes/amazon/step-zero-aws",
"microsoft/step-zero-azure-autoscale": "kubernetes/microsoft/step-zero-azure-autoscale",
"microsoft/step-zero-azure-autoscale": "kubernetes/microsoft/step-zero-azure",
"microsoft/step-zero-azure": "kubernetes/microsoft/step-zero-azure",
"google/step-zero-gcp": "kubernetes/google/step-zero-gcp",
"create-k8s-cluster": "kubernetes/setup-kubernetes",
Expand Down
17 changes: 7 additions & 10 deletions docs/source/jupyterhub/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,26 +128,23 @@ can try with `nano config.yaml`.
proxy-7cb9bc4cc-9bdlp 1/1 Running 0 37s
```

5. Find the IP we can use to access the JupyterHub. Run the following command
until the `EXTERNAL-IP` of the `proxy-public` [service](https://kubernetes.io/docs/concepts/services-networking/service/) is
available like in the example output.
5. Find the IP we can use to access the JupyterHub. Run the following
command until the `EXTERNAL-IP` of the `proxy-public` [service](https://kubernetes.io/docs/concepts/services-networking/service/)
is available like in the example output.

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

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

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

```
kubectl describe service proxy-public --namespace <k8s-namespace>
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
Loading

0 comments on commit 6be5267

Please sign in to comment.