Skip to content

Commit

Permalink
Merge pull request #1 from Internet2/caseyd
Browse files Browse the repository at this point in the history
Caseyd
  • Loading branch information
aravipaticloudskills authored Apr 11, 2023
2 parents 9a19691 + 72a9bcc commit b273a8b
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
21 changes: 21 additions & 0 deletions caseyd.md
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
34 changes: 34 additions & 0 deletions caseyd/README.md
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>

0 comments on commit b273a8b

Please sign in to comment.