-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Internet2/caseyd
Caseyd
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Casey Dinsmore | ||
Oregon State University / Ocean Observatories Initiative | ||
|
||
[email protected] | ||
|
||
|
||
## File sets | ||
Working files live in caseyd/ | ||
|
||
## Project Goals | ||
|
||
* Terraform templates to programmatically deploy a scalable Kubernetes Cluster across AWS and Azure | ||
* Auto-scale up & down | ||
* SSL Encryption | ||
* OAuth Authentication | ||
* Terraform templates to deploy Jupyterhub into a K8s cluster | ||
|
||
|
||
## Stretch Goals | ||
* Variable templates to order multiple JupyterHubs in parallel | ||
* Monitoring dashboard for Jupyterhub pods |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Casey Dinsmore | ||
|
||
Working directory for Casey Dinsmore | ||
|
||
|
||
# Jupyterhub Common Commands | ||
|
||
## Helm | ||
|
||
### Install / Reconfigure | ||
|
||
helm upgrade --cleanup-on-fail \ | ||
--install jhub jupyterhub/jupyterhub \ | ||
--namespace jhub \ | ||
--create-namespace \ | ||
--version=2.0.0 \ | ||
--values config.yaml | ||
|
||
## Kubectl | ||
|
||
### Get Proxy Address | ||
|
||
kubectl -n jhub get service proxy-public | ||
|
||
### Show all pod states | ||
kubectl get pods -A | ||
|
||
### View details about a pod including deployment errors | ||
|
||
kubectl -n jhub describe pod <pod.name> | ||
|
||
### Get the logs for a pod | ||
|
||
kubectl -n jhub get logs <pod.name> |