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

Upgrade images for jupyterhub-ssh, kbatch #1997

Merged
merged 5 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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"
iameskild marked this conversation as resolved.
Show resolved Hide resolved
}
}

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
iameskild marked this conversation as resolved.
Show resolved Hide resolved
host_key_path: /etc/jupyterhub-ssh/secrets/jupyterhub-ssh.host-key
iameskild marked this conversation as resolved.
Show resolved Hide resolved
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"
}