mirror of
https://github.com/bitnami/charts.git
synced 2026-03-05 14:57:31 +08:00
[bitnami/harbor]Add missing 'skipverify' s3 storage driver option (#6577)
* [bitnami/harbor]Add missing 'skipverify' s3 storage driver option * add to template * add to values.yaml (with ref to storage driver docs) * add to readme * Update bitnami/harbor/Chart.yaml Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com> Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>
This commit is contained in:
@@ -34,4 +34,4 @@ sources:
|
||||
- https://github.com/bitnami/bitnami-docker-harbor-registry
|
||||
- https://github.com/bitnami/bitnami-docker-harbor-registryctl
|
||||
- https://goharbor.io/
|
||||
version: 10.0.6
|
||||
version: 10.1.0
|
||||
|
||||
@@ -164,6 +164,7 @@ The following tables list the configurable parameters of the Harbor chart and th
|
||||
| `persistence.imageChartStorage.s3.keyid` | S3 storage type setting: Key ID | `nil` |
|
||||
| `persistence.imageChartStorage.s3.region` | S3 storage type setting: Region | `nil` |
|
||||
| `persistence.imageChartStorage.s3.secure` | S3 storage type setting: Secure | `nil` |
|
||||
| `persistence.imageChartStorage.s3.skipverify` | S3 storage type setting: TLS skip verification | `nil` |
|
||||
| `persistence.imageChartStorage.s3.v4auth` | S3 storage type setting: V4 authorization | `nil` |
|
||||
| `persistence.imageChartStorage.s3.chunksize` | S3 storage type setting: V4 authorization | `nil` |
|
||||
| `persistence.imageChartStorage.s3.bucket` | S3 storage type setting: Bucket name | `nil` |
|
||||
|
||||
@@ -60,6 +60,9 @@ data:
|
||||
{{- if .Values.persistence.imageChartStorage.s3.secure }}
|
||||
secure: {{ .Values.persistence.imageChartStorage.s3.secure }}
|
||||
{{- end }}
|
||||
{{- if .Values.persistence.imageChartStorage.s3.skipverify }}
|
||||
skipverify: {{ .Values.persistence.imageChartStorage.s3.skipverify }}
|
||||
{{- end }}
|
||||
{{- if .Values.persistence.imageChartStorage.s3.v4auth }}
|
||||
v4auth: {{ .Values.persistence.imageChartStorage.s3.v4auth }}
|
||||
{{- end }}
|
||||
|
||||
@@ -573,6 +573,7 @@ persistence:
|
||||
rootdirectory:
|
||||
chunksize:
|
||||
## Images/charts storage parameters when type is "s3"
|
||||
## ref: https://docs.docker.com/registry/storage-drivers/s3/
|
||||
##
|
||||
s3:
|
||||
region: us-west-1
|
||||
@@ -583,6 +584,7 @@ persistence:
|
||||
encrypt:
|
||||
keyid:
|
||||
secure:
|
||||
skipverify:
|
||||
v4auth:
|
||||
chunksize:
|
||||
rootdirectory:
|
||||
|
||||
Reference in New Issue
Block a user