generated from UCL-ARC/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #67 from UCL-ARC/cdkharris/pu-dev-server-back-up
feat: Put a small dev server back up
- Loading branch information
Showing
5 changed files
with
39 additions
and
4 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
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 @@ | ||
module "jupyter-dev" { | ||
source = "./modules/jupyter" | ||
|
||
vm_count = 1 | ||
|
||
vcpu = 2 | ||
ram_gb = "8Gi" | ||
os_disk_gb = "30Gi" | ||
|
||
vm_prefix = "jupyter-dev" | ||
|
||
namespace = "ssrc-ns" | ||
network_name = "ssrc-net" | ||
|
||
public_key_openssh = var.public_key_openssh | ||
|
||
# renovate: datasource=github-releases depName=jupyterhub/zero-to-jupyterhub-k8s versioning=loose | ||
z2jupyterhub_version = "3.3.8" # https://github.com/jupyterhub/zero-to-jupyterhub-k8s/tags | ||
# renovate: datasource=github-releases depName=k3s-io/k3s versioning=loose | ||
k3s_version = "v1.31.2+k3s1" # https://github.com/k3s-io/k3s/releases/ | ||
# renovate: datasource=github-releases depName=projectcalico/calico versioning=loose | ||
calico_version = "v3.29.0" # https://github.com/projectcalico/calico/releases | ||
|
||
aad_client_id = var.aad_client_id | ||
aad_client_secret = var.aad_client_secret | ||
aad_tenant_id = var.aad_tenant_id | ||
|
||
jupyter_image = "jupyter/datascience-notebook" | ||
# renovate: datasource=docker depName=jupyter/datascience-notebook versioning=loose | ||
jupyter_image_version = "x86_64-ubuntu-22.04" | ||
|
||
condenser_ingress_isEnabled = true | ||
condenser_ingress_test_hostname = "jupyter-dev" | ||
} |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
terraform { | ||
|
||
required_version = "1.9.8" | ||
required_version = ">1.9.8" | ||
|
||
required_providers { | ||
harvester = { | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
terraform { | ||
|
||
required_version = "1.9.8" | ||
required_version = ">1.9.8" | ||
|
||
required_providers { | ||
harvester = { | ||
|