{{- if .Values.chartmuseum.enabled }} apiVersion: v1 kind: ConfigMap metadata: name: "{{ template "harbor.chartmuseum" . }}" labels: {{ include "harbor.labels" . | indent 4 }} data: PORT: "9999" CACHE: "redis" CACHE_REDIS_ADDR: "{{ template "harbor.redis.host" . }}:{{ template "harbor.redis.port" . }}" CACHE_REDIS_DB: "{{ template "harbor.redis.chartmuseumDatabaseIndex" . }}" BASIC_AUTH_USER: "chart_controller" DEPTH: "1" {{- if eq .Values.logLevel "debug" }} DEBUG: "true" {{- else }} DEBUG: "false" {{- end }} LOG_JSON: "true" DISABLE_METRICS: "false" DISABLE_API: "false" DISABLE_STATEFILES: "false" ALLOW_OVERWRITE: "true" #CHART_URL: {{ .Values.externalURL }}/chartrepo AUTH_ANONYMOUS_GET: "false" TLS_CERT: TLS_KEY: CONTEXT_PATH: INDEX_LIMIT: "0" MAX_STORAGE_OBJECTS: "0" MAX_UPLOAD_SIZE: "20971520" CHART_POST_FORM_FIELD_NAME: "chart" PROV_POST_FORM_FIELD_NAME: "prov" {{- $storage := .Values.persistence.imageChartStorage }} {{- $storageType := $storage.type }} {{- if eq $storageType "filesystem" }} STORAGE: "local" STORAGE_LOCAL_ROOTDIR: "/chart_storage" {{- else if eq $storageType "azure" }} STORAGE: "microsoft" STORAGE_MICROSOFT_CONTAINER: {{ $storage.azure.container }} AZURE_STORAGE_ACCOUNT: {{ $storage.azure.accountname }} STORAGE_MICROSOFT_PREFIX: "/azure/harbor/charts" {{- else if eq $storageType "gcs" }} STORAGE: "google" STORAGE_GOOGLE_BUCKET: {{ $storage.gcs.bucket }} GOOGLE_APPLICATION_CREDENTIALS: /etc/chartmuseum/gcs-key.json {{- if $storage.gcs.rootdirectory }} STORAGE_GOOGLE_PREFIX: {{ $storage.gcs.rootdirectory }} {{- end }} {{- else if eq $storageType "s3" }} STORAGE: "amazon" STORAGE_AMAZON_BUCKET: {{ $storage.s3.bucket }} {{- if $storage.s3.rootdirectory }} STORAGE_AMAZON_PREFIX: {{ $storage.s3.rootdirectory }} {{- end }} STORAGE_AMAZON_REGION: {{ $storage.s3.region }} {{- if $storage.s3.regionendpoint }} STORAGE_AMAZON_ENDPOINT: {{ $storage.s3.regionendpoint }} {{- end }} {{- if $storage.s3.accesskey }} AWS_ACCESS_KEY_ID: {{ $storage.s3.accesskey }} {{- end }} {{- else if eq $storageType "swift" }} STORAGE: "openstack" STORAGE_OPENSTACK_CONTAINER: {{ $storage.swift.container }} {{- if $storage.swift.secretkey }} STORAGE_OPENSTACK_PREFIX: {{ $storage.swift.prefix }} {{- end }} {{- if $storage.swift.secretkey }} STORAGE_OPENSTACK_REGION: {{ $storage.swift.region }} {{- end }} OS_AUTH_URL: {{ $storage.swift.authurl }} OS_USERNAME: {{ $storage.swift.username }} {{- if $storage.swift.secretkey }} OS_PROJECT_ID: {{ $storage.swift.tenantid }} {{- end }} {{- if $storage.swift.secretkey }} OS_PROJECT_NAME: {{ $storage.swift.tenant }} {{- end }} {{- if $storage.swift.secretkey }} OS_DOMAIN_ID: {{ $storage.swift.domainid }} {{- end }} {{- if $storage.swift.secretkey }} OS_DOMAIN_NAME: {{ $storage.swift.domain }} {{- end }} {{- else if eq $storageType "oss" }} STORAGE: "alibaba" STORAGE_ALIBABA_BUCKET: {{ $storage.oss.bucket }} {{- if $storage.oss.secretkey }} STORAGE_ALIBABA_PREFIX: {{ $storage.oss.rootdirectory }} {{- end }} {{- if $storage.oss.secretkey }} STORAGE_ALIBABA_ENDPOINT: {{ $storage.oss.endpoint }} {{- end }} ALIBABA_CLOUD_ACCESS_KEY_ID: {{ $storage.oss.accesskeyid }} {{- end }} {{- end }}