Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to reflect Azure 2022 process #2823

Merged
merged 21 commits into from
Aug 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e265e2b
docs: Remove separate autoscaler docs for azure
Sieboldianus Aug 2, 2022
35deeec
docs: Add a note to recommended locations that feature a broader list…
Sieboldianus Aug 2, 2022
534a893
docs: According to [azure-cli issue #19179][1], --id http// has ben d…
Sieboldianus Aug 2, 2022
1184f12
docs: Incorporate instructions to enable autoscaling feature into mai…
Sieboldianus Aug 2, 2022
3032171
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 2, 2022
a17ae92
fix: Remove missing link
Sieboldianus Aug 2, 2022
dba4b4a
Add example for
Sieboldianus Aug 3, 2022
9744169
Add Azure autoscaler docs link
Sieboldianus Aug 3, 2022
83b61a8
Add autoscaler flag `--vm-set-type VirtualMachineScaleSets`
Sieboldianus Aug 3, 2022
bc43262
Use original values for `--min-count` and `--max-count`
Sieboldianus Aug 3, 2022
db38447
Match original autoscaling docs
Sieboldianus Aug 3, 2022
e2e9920
Migrate autoscaling azure interface actions into main
Sieboldianus Aug 3, 2022
456836f
Match autoscaling docs
Sieboldianus Aug 3, 2022
471d0a1
Update Azure autoscaling screenshots to 2022
Sieboldianus Aug 3, 2022
712dfca
Fix Typo
Sieboldianus Aug 3, 2022
dbd2f27
Update docs to get public IP of proxy, based on kubectl recommendation
Sieboldianus Aug 3, 2022
afca5a2
Fix phrase
Sieboldianus Aug 3, 2022
7ff31fd
Provide long and short form for getting the public proxy IP
Sieboldianus Aug 3, 2022
ba9928e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 3, 2022
21066cc
docs: adjust legacy redirection to new destination
consideRatio Aug 16, 2022
1fb30df
Consistent indentation and use of full resource names and flags
consideRatio Aug 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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