Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,050 changes: 345 additions & 705 deletions README.md

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions templates/core/core-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ kind: Deployment
metadata:
name: {{ template "harbor.core" . }}
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.core.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: core
Expand Down
4 changes: 4 additions & 0 deletions templates/exporter/exporter-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ kind: Deployment
metadata:
name: {{ template "harbor.exporter" . }}
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.exporter.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: exporter
Expand Down
4 changes: 4 additions & 0 deletions templates/jobservice/jobservice-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ kind: Deployment
metadata:
name: "{{ template "harbor.jobservice" . }}"
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.jobservice.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: jobservice
Expand Down
4 changes: 4 additions & 0 deletions templates/nginx/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ kind: Deployment
metadata:
name: {{ template "harbor.nginx" . }}
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.nginx.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: nginx
Expand Down
4 changes: 4 additions & 0 deletions templates/portal/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ kind: Deployment
metadata:
name: "{{ template "harbor.portal" . }}"
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.portal.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: portal
Expand Down
4 changes: 4 additions & 0 deletions templates/registry/registry-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ kind: Deployment
metadata:
name: "{{ template "harbor.registry" . }}"
namespace: {{ .Release.Namespace | quote }}
{{- with .Values.registry.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
labels:
{{ include "harbor.labels" . | indent 4 }}
component: registry
Expand Down
10 changes: 10 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ nginx:
# mount the service account token
automountServiceAccountToken: false
replicas: 1
annotations: {}
revisionHistoryLimit: 10
# resources:
# requests:
Expand Down Expand Up @@ -535,6 +536,7 @@ portal:
serviceAccountName: ""
# mount the service account token
automountServiceAccountToken: false
annotations: {}
replicas: 1
revisionHistoryLimit: 10
# resources:
Expand Down Expand Up @@ -575,6 +577,11 @@ core:
serviceAccountName: ""
# mount the service account token
automountServiceAccountToken: false
# Annotations to add to the harbor-core deployment's. Optional.
#
# If you are using reloader use the following annotation with your HABROR_SECRET_NAME
annotations: {}
# secret.reloader.stakater.com/reload: "<HABROR_SECRET_NAME>"
replicas: 1
revisionHistoryLimit: 10
## Startup probe values
Expand Down Expand Up @@ -664,6 +671,7 @@ jobservice:
serviceAccountName: ""
# mount the service account token
automountServiceAccountToken: false
annotations: {}
replicas: 1
revisionHistoryLimit: 10
# resources:
Expand Down Expand Up @@ -741,6 +749,7 @@ registry:
serviceAccountName: ""
# mount the service account token
automountServiceAccountToken: false
annotations: {}
replicas: 1
revisionHistoryLimit: 10
nodeSelector: {}
Expand Down Expand Up @@ -1070,6 +1079,7 @@ exporter:
serviceAccountName: ""
# mount the service account token
automountServiceAccountToken: false
annotations: {}
replicas: 1
revisionHistoryLimit: 10
# resources:
Expand Down