From ab1af56121e6d519489b2f925454f84c8116a6c3 Mon Sep 17 00:00:00 2001 From: Michele Baldessari Date: Thu, 7 Nov 2024 09:00:32 +0100 Subject: [PATCH] Add workbench-trusted-ca-bundle Create a configmap and label it with the `config.openshift.io/inject-trusted-cabundle: 'true'` label so we can use it to reference all the trusted certs in the cluster and inject those in the notebooks. --- .../data-science-project/templates/dev-project.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/charts/datacenter/data-science-project/templates/dev-project.yaml b/charts/datacenter/data-science-project/templates/dev-project.yaml index 1daf5bc69..cd731ef0f 100644 --- a/charts/datacenter/data-science-project/templates/dev-project.yaml +++ b/charts/datacenter/data-science-project/templates/dev-project.yaml @@ -1,3 +1,11 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: workbench-trusted-ca-bundle + namespace: ml-development + labels: + config.openshift.io/inject-trusted-cabundle: 'true' +--- kind: PersistentVolumeClaim apiVersion: v1 metadata: