fix(argo-workflows): Changed default .Values.artifactRepository.s3.insecure to false for security (#1401)
Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
parent
1a5a22b774
commit
fce51dfec3
2 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
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.16.9
|
version: 0.17.0
|
||||||
appVersion: v3.3.9
|
appVersion: v3.3.9
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
- name: benjaminws
|
- name: benjaminws
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Update to app version v3.3.9"
|
- "[Fixed]: Changed default .Values.artifactRepository.s3.insecure to false for security"
|
||||||
|
|
|
@ -502,7 +502,8 @@ artifactRepository:
|
||||||
secretKeySecret:
|
secretKeySecret:
|
||||||
# name: <releaseName>-minio
|
# name: <releaseName>-minio
|
||||||
key: secretkey
|
key: secretkey
|
||||||
insecure: true
|
# insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
||||||
|
insecure: false
|
||||||
# bucket:
|
# bucket:
|
||||||
# endpoint:
|
# endpoint:
|
||||||
# region:
|
# region:
|
||||||
|
|
Loading…
Reference in a new issue