mirror of
https://github.com/bitnami/charts.git
synced 2026-03-29 16:27:11 +08:00
* [bitnami/harbor] Major change: Add Trivy and * Update gitignore * Remove .vscode * Add common * Final changes * Remove notifier from clair.yaml * Update trivy to use bitnami image * Apply changes * Update image * Remove useless stuff * Add Internal TLS * Update Chart.yaml * Update values.yaml * Update configmap-https.yaml * Update core-secret-envvars.yaml * [bitnami/harbor] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
21 lines
547 B
JSON
21 lines
547 B
JSON
{
|
|
"server": {
|
|
"grpc_addr": ":7899",
|
|
{{- if not .Values.notary.secretName }}
|
|
"tls_cert_file": "/etc/notary/notary-signer.crt",
|
|
"tls_key_file": "/etc/notary/notary-signer.key"
|
|
{{- else }}
|
|
"tls_cert_file": "/etc/ssl/notary/cert/notary-signer.crt",
|
|
"tls_key_file": "/etc/ssl/notary/cert/notary-signer.key"
|
|
{{- end }}
|
|
},
|
|
"logging": {
|
|
"level": "{{ .Values.logLevel }}"
|
|
},
|
|
"storage": {
|
|
"backend": "postgres",
|
|
"db_url": "{{ template "harbor.database.notarySigner" . }}",
|
|
"default_alias": "defaultalias"
|
|
}
|
|
}
|