Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
e2167b6923 | |
|
ac65d7b4d6 | |
|
ba600bc14f |
|
@ -15,6 +15,8 @@ data:
|
|||
JOBSERVICE_WEBHOOK_JOB_MAX_RETRY: "{{ .Values.jobservice.notification.webhook_job_max_retry }}"
|
||||
JOBSERVICE_WEBHOOK_JOB_HTTP_CLIENT_TIMEOUT: "{{ .Values.jobservice.notification.webhook_job_http_client_timeout }}"
|
||||
|
||||
LOG_LEVEL: "{{ .Values.logLevel }}"
|
||||
|
||||
{{- if has "jobservice" .Values.proxy.components }}
|
||||
HTTP_PROXY: "{{ .Values.proxy.httpProxy }}"
|
||||
HTTPS_PROXY: "{{ .Values.proxy.httpsProxy }}"
|
||||
|
|
|
@ -138,6 +138,8 @@ data:
|
|||
proxy_set_header X-Forwarded-Proto $x_forwarded_proto;
|
||||
proxy_buffering off;
|
||||
proxy_request_buffering off;
|
||||
proxy_send_timeout 900;
|
||||
proxy_read_timeout 900;
|
||||
}
|
||||
|
||||
location /service/ {
|
||||
|
|
|
@ -270,7 +270,7 @@ persistence:
|
|||
# The initial password of Harbor admin. Change it from portal after launching Harbor
|
||||
# or give an existing secret for it
|
||||
# key in secret is given via (default to HARBOR_ADMIN_PASSWORD)
|
||||
# existingSecretAdminPassword:
|
||||
existingSecretAdminPassword: ""
|
||||
existingSecretAdminPasswordKey: HARBOR_ADMIN_PASSWORD
|
||||
harborAdminPassword: "Harbor12345"
|
||||
|
||||
|
@ -626,7 +626,7 @@ core:
|
|||
tokenCert: |
|
||||
# The XSRF key. Will be generated automatically if it isn't specified
|
||||
# While you specified, Please make sure it is 32 characters, otherwise would have validation issue at the harbor-core runtime
|
||||
# https://github.com/goharbor/harbor/pull/21154
|
||||
# https://github.com/goharbor/harbor/pull/21154
|
||||
xsrfKey: ""
|
||||
# If using existingSecret, the key is defined by core.existingXsrfSecretKey
|
||||
existingXsrfSecret: ""
|
||||
|
|
Loading…
Reference in New Issue