From 5c6d7337247adf042de89afaf6ea8d1fa725d96a Mon Sep 17 00:00:00 2001 From: Jordan Jacobelli Date: Mon, 21 Oct 2024 16:44:07 +0200 Subject: [PATCH 1/2] devcontainer: replace VAULT_HOST with AWS_ROLE_ARN Signed-off-by: Jordan Jacobelli --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 86a42253fb..f449cb5741 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -96,7 +96,7 @@ ENV PYTHON_PACKAGE_MANAGER="${PYTHON_PACKAGE_MANAGER}" ENV SCCACHE_REGION="us-east-2" ENV SCCACHE_BUCKET="rapids-sccache-devs" -ENV VAULT_HOST="https://vault.ops.k8s.rapids.ai" +ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs" ENV HISTFILE="/home/coder/.cache/._bash_history" ENV MORPHEUS_SUPPORT_DOCA=ON From 2b722fd2d59c6406bb46a7f75efcd276c53bb1c8 Mon Sep 17 00:00:00 2001 From: Jordan Jacobelli Date: Tue, 22 Oct 2024 15:29:54 +0200 Subject: [PATCH 2/2] Update devcontainers base image to support AWS_ROLE_ARN Signed-off-by: Jordan Jacobelli --- .devcontainer/cuda12.5-conda/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/cuda12.5-conda/devcontainer.json b/.devcontainer/cuda12.5-conda/devcontainer.json index 2a320a35cc..df5c1451ae 100644 --- a/.devcontainer/cuda12.5-conda/devcontainer.json +++ b/.devcontainer/cuda12.5-conda/devcontainer.json @@ -5,7 +5,7 @@ "args": { "CUDA": "12.5", "PYTHON_PACKAGE_MANAGER": "conda", - "BASE": "rapidsai/devcontainers:24.10-cpp-mambaforge-ubuntu22.04" + "BASE": "rapidsai/devcontainers:24.12-cpp-mambaforge-ubuntu22.04" } }, "privileged": true,