Skip to content

Commit

Permalink
Upgrade images for jupyterhub-ssh, kbatch (#1997)
Browse files Browse the repository at this point in the history
  • Loading branch information
iameskild authored Sep 12, 2023
1 parent 3238856 commit 2d0c985
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/_nebari/stages/kubernetes_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class InputSchema(schema.Base):
"pandas=1.5.3",
{
"pip": [
"kbatch==0.4.1",
"kbatch==0.4.2",
],
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ resource "kubernetes_deployment" "jupyterhub-sftp" {
volume {
name = "secrets"
secret {
secret_name = kubernetes_secret.jupyterhub-sftp.metadata.0.name
secret_name = kubernetes_secret.jupyterhub-sftp.metadata.0.name
default_mode = "0600"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ resource "kubernetes_config_map" "jupyterhub-ssh" {
}

data = {
"values.yaml" = "hubUrl: ${var.jupyterhub_api_url}"
"values.yaml" = <<-EOT
hubUrl: ${var.jupyterhub_api_url}
ssh:
config:
JupyterHubSSH:
debug: true
host_key_path: /etc/jupyterhub-ssh/secrets/jupyterhub-ssh.host-key
EOT
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ variable "jupyterhub-ssh-image" {
tag = string
})
default = {
name = "yuvipanda/jupyterhub-ssh-ssh"
tag = "0.0.1-n026.hf136ec7"
name = "quay.io/jupyterhub-ssh/ssh"
tag = "0.0.1-0.dev.git.136.ha610981"
}
}

Expand All @@ -41,8 +41,8 @@ variable "jupyterhub-sftp-image" {
tag = string
})
default = {
name = "yuvipanda/jupyterhub-ssh-sftp"
tag = "0.0.1-n026.hf136ec7"
name = "quay.io/jupyterhub-ssh/sftp"
tag = "0.0.1-0.dev.git.142.h402a3d6"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ terraform {

locals {
kbatch_service_account_name = "kbatch-kbatch-proxy"
kbatch_version = "0.4.1"
kbatch_version = "0.4.2"
}

0 comments on commit 2d0c985

Please sign in to comment.