Skip to content

Commit

Permalink
NbExec | Add S3 configurations to helm (#215)
Browse files Browse the repository at this point in the history
* feat: add s3 helm varibales for nbexec

* fix: pr comments
  • Loading branch information
MuthuRajan-S authored Aug 22, 2024
1 parent f7592f0 commit 1f28e47
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions getting-started/templates/systemlink-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
# <ATTENTION> 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
# <ATTENTION> This must be overridden if not using the SLE MinIO instance.
port: *minioPort
## S3 Region
# <ATTENTION> This must be set to the region of the S3 instance.
##
region: "us-east-1"
argo:
## Configure S3/MinIO access.
##
Expand Down

0 comments on commit 1f28e47

Please sign in to comment.