Skip to content

Commit a5d4de6

Browse files
committed
apps: upgrade harbor helm chart to v1.16.1 with appversion v2.12.1
1 parent e3b815f commit a5d4de6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+94
-88
lines changed
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 2.11.0
2+
appVersion: 2.12.1
33
description: An open source trusted cloud native registry that stores, signs, and
44
scans content
55
home: https://goharbor.io
@@ -11,14 +11,12 @@ keywords:
1111
maintainers:
1212
1313
name: Yan Wang
14-
- email: wenkai.yin@broadcom.com
15-
name: Wenkai Yin
14+
- email: stone.zhang@broadcom.com
15+
name: Stone Zhang
1616
1717
name: Miner Yang
18-
19-
name: Shengwen Yu
2018
name: harbor
2119
sources:
2220
- https://github.com/goharbor/harbor
2321
- https://github.com/goharbor/harbor-helm
24-
version: 1.15.0
22+
version: 1.16.1

helmfile.d/upstream/goharbor/harbor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ The following table lists the configurable parameters of the Harbor chart and th
307307
| `trivy.skipUpdate` | The flag to disable [Trivy DB][trivy-db] downloads from GitHub | `false` |
308308
| `trivy.skipJavaDBUpdate` | If the flag is enabled you have to manually download the `trivy-java.db` file [Trivy Java DB][trivy-java-db] and mount it in the `/home/scanner/.cache/trivy/java-db/trivy-java.db` path | `false` |
309309
| `trivy.offlineScan` | The flag prevents Trivy from sending API requests to identify dependencies. | `false` |
310-
| `trivy.securityCheck` | Comma-separated list of what security issues to detect. Possible values are `vuln`, `config` and `secret`. | `vuln` |
310+
| `trivy.securityCheck` | Comma-separated list of what security issues to detect. | `vuln` |
311311
| `trivy.timeout` | The duration to wait for scan completion | `5m0s` |
312312
| `trivy.gitHubToken` | The GitHub access token to download [Trivy DB][trivy-db] (see [GitHub rate limiting][trivy-rate-limiting]) | |
313313
| `trivy.priorityClassName` | The priority class to run the pod as | |

helmfile.d/upstream/goharbor/harbor/templates/core/core-cm.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: v1
22
kind: ConfigMap
33
metadata:
44
name: {{ template "harbor.core" . }}
5+
namespace: {{ .Release.Namespace | quote }}
56
labels:
67
{{ include "harbor.labels" . | indent 4 }}
78
data:
@@ -87,4 +88,4 @@ data:
8788

8889
{{- if .Values.core.quotaUpdateProvider }}
8990
QUOTA_UPDATE_PROVIDER: "{{ .Values.core.quotaUpdateProvider }}"
90-
{{- end }}
91+
{{- end }}

helmfile.d/upstream/goharbor/harbor/templates/core/core-dpl.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: {{ template "harbor.core" . }}
5+
namespace: {{ .Release.Namespace | quote }}
56
labels:
67
{{ include "harbor.labels" . | indent 4 }}
78
component: core

helmfile.d/upstream/goharbor/harbor/templates/core/core-pre-upgrade-job.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: batch/v1
33
kind: Job
44
metadata:
55
name: migration-job
6+
namespace: {{ .Release.Namespace | quote }}
67
labels:
78
{{ include "harbor.labels" . | indent 4 }}
89
component: migrator
@@ -74,4 +75,4 @@ spec:
7475
tolerations:
7576
{{ toYaml . | indent 8 }}
7677
{{- end }}
77-
{{- end }}
78+
{{- end }}

helmfile.d/upstream/goharbor/harbor/templates/core/core-secret.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: v1
33
kind: Secret
44
metadata:
55
name: {{ template "harbor.core" . }}
6+
namespace: {{ .Release.Namespace | quote }}
67
labels:
78
{{ include "harbor.labels" . | indent 4 }}
89
type: Opaque

helmfile.d/upstream/goharbor/harbor/templates/core/core-svc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: v1
22
kind: Service
33
metadata:
44
name: {{ template "harbor.core" . }}
5+
namespace: {{ .Release.Namespace | quote }}
56
labels:
67
{{ include "harbor.labels" . | indent 4 }}
78
{{- with .Values.core.serviceAnnotations }}

helmfile.d/upstream/goharbor/harbor/templates/core/core-tls.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: v1
44
kind: Secret
55
metadata:
66
name: "{{ template "harbor.internalTLS.core.secretName" . }}"
7+
namespace: {{ .Release.Namespace | quote }}
78
labels:
89
{{ include "harbor.labels" . | indent 4 }}
910
type: kubernetes.io/tls
@@ -12,4 +13,4 @@ data:
1213
tls.crt: {{ (required "The \"internalTLS.core.crt\" is required!" .Values.internalTLS.core.crt) | b64enc | quote }}
1314
tls.key: {{ (required "The \"internalTLS.core.key\" is required!" .Values.internalTLS.core.key) | b64enc | quote }}
1415
{{- end }}
15-
{{- end }}
16+
{{- end }}

helmfile.d/upstream/goharbor/harbor/templates/database/database-secret.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ apiVersion: v1
33
kind: Secret
44
metadata:
55
name: "{{ template "harbor.database" . }}"
6+
namespace: {{ .Release.Namespace | quote }}
67
labels:
78
{{ include "harbor.labels" . | indent 4 }}
89
type: Opaque

helmfile.d/upstream/goharbor/harbor/templates/database/database-ss.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: apps/v1
44
kind: StatefulSet
55
metadata:
66
name: "{{ template "harbor.database" . }}"
7+
namespace: {{ .Release.Namespace | quote }}
78
labels:
89
{{ include "harbor.labels" . | indent 4 }}
910
component: database

0 commit comments

Comments
 (0)