mirror of
https://github.com/goharbor/harbor
synced 2025-04-09 08:54:02 +00:00

This commit integrates the chartmuseum to Harbor chart to enable the feature for storing chart in Harbor
15 lines
337 B
YAML
15 lines
337 B
YAML
{{- if .Values.chartmuseum.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: "{{ template "harbor.fullname" . }}-chartmuseum"
|
|
labels:
|
|
{{ include "harbor.labels" . | indent 4 }}
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
targetPort: 9999
|
|
selector:
|
|
{{ include "harbor.matchLabels" . | indent 4 }}
|
|
component: chartmuseum
|
|
{{- end }} |