fix(argo-workflows): Remove hardcoded minio in values.yaml
Signed-off-by: ariel-enso <ariel.shadkhan@snyk.io>
This commit is contained in:
parent
783439b714
commit
742e9bd16a
2 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.4.8
|
|||
name: argo-workflows
|
||||
description: A Helm chart for Argo Workflows
|
||||
type: application
|
||||
version: 0.29.2
|
||||
version: 0.29.3
|
||||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
sources:
|
||||
|
@ -18,3 +18,5 @@ annotations:
|
|||
artifacthub.io/changes: |
|
||||
- kind: added
|
||||
description: Add support for UI columns configuration
|
||||
- kind: fixed
|
||||
description: Minor bug hardcoded minio suffix for s3
|
||||
|
|
|
@ -709,12 +709,12 @@ artifactRepository:
|
|||
# Note the `key` attribute is not the actual secret, it's the PATH to
|
||||
# the contents in the associated secret, as defined by the `name` attribute.
|
||||
accessKeySecret:
|
||||
name: "{{ .Release.Name }}-minio"
|
||||
name: "{{ .Release.Name }}"
|
||||
key: accesskey
|
||||
secretKeySecret:
|
||||
name: "{{ .Release.Name }}-minio"
|
||||
name: "{{ .Release.Name }}"
|
||||
key: secretkey
|
||||
# insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
||||
# insecure will disable TLS. Used for s3 comptiable alternatives not configured with TLS
|
||||
insecure: false
|
||||
# bucket:
|
||||
# endpoint:
|
||||
|
|
Loading…
Reference in a new issue