From 1f28e475b9735d6766c2a6e550de05a243fdc442 Mon Sep 17 00:00:00 2001 From: MuthuRajan-S <95736848+MuthuRajan-S@users.noreply.github.com> Date: Fri, 23 Aug 2024 00:49:51 +0530 Subject: [PATCH] NbExec | Add S3 configurations to helm (#215) * feat: add s3 helm varibales for nbexec * fix: pr comments --- .../templates/systemlink-values.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/getting-started/templates/systemlink-values.yaml b/getting-started/templates/systemlink-values.yaml index 4c1f3b42..953205c9 100644 --- a/getting-started/templates/systemlink-values.yaml +++ b/getting-started/templates/systemlink-values.yaml @@ -1008,6 +1008,32 @@ argoworkflows: ## nbexecservice: maxNumberOfWorkflowsToSchedule: *workflowParallelism + ## Configure S3/MinIO access. + ## + s3: + ## Secret name for S3 credentials. + ## + secretName: "nbexecservice-s3-credentials" + ## The name of the S3 or MinIO bucket that the service should connect to. + ## + bucket: "systemlink-executions" + ## S3 connection scheme. + ## + scheme: "http://" + ## Set this value to connect to an external S3 instance. + # To connect to an external S3 bucket, set the host here as well as the scheme and port. + ## + host: "" + ## Set this value to connect to an S3 instance which is internal to the cluster. Ignored if host is set. + ## + service: *minioServiceName + ## S3 Port + # This must be overridden if not using the SLE MinIO instance. + port: *minioPort + ## S3 Region + # This must be set to the region of the S3 instance. + ## + region: "us-east-1" argo: ## Configure S3/MinIO access. ##