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
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.29.2
|
version: 0.29.3
|
||||||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -18,3 +18,5 @@ annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Add support for UI columns configuration
|
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
|
# 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.
|
# the contents in the associated secret, as defined by the `name` attribute.
|
||||||
accessKeySecret:
|
accessKeySecret:
|
||||||
name: "{{ .Release.Name }}-minio"
|
name: "{{ .Release.Name }}"
|
||||||
key: accesskey
|
key: accesskey
|
||||||
secretKeySecret:
|
secretKeySecret:
|
||||||
name: "{{ .Release.Name }}-minio"
|
name: "{{ .Release.Name }}"
|
||||||
key: secretkey
|
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
|
insecure: false
|
||||||
# bucket:
|
# bucket:
|
||||||
# endpoint:
|
# endpoint:
|
||||||
|
|
Loading…
Reference in a new issue