Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
05e02cf497 | |
|
544be23008 | |
|
90d5ea60f7 |
|
@ -55,6 +55,7 @@ jobs:
|
|||
df -h
|
||||
free -m
|
||||
mkdir -p /tmp/harbor
|
||||
kubectl get pod -n default
|
||||
for name in core jobservice registry registryctl trivy portal redis database; do \
|
||||
kubectl -n default logs -l "component=$name" --all-containers > /tmp/harbor/$name.log ; \
|
||||
done
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v1
|
||||
name: harbor
|
||||
version: 1.4.0-dev
|
||||
appVersion: dev
|
||||
version: 1.17.1
|
||||
appVersion: 2.13.1
|
||||
description: An open source trusted cloud native registry that stores, signs, and scans content
|
||||
keywords:
|
||||
- docker
|
||||
|
|
|
@ -138,8 +138,6 @@ 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/ {
|
||||
|
|
24
values.yaml
24
values.yaml
|
@ -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"
|
||||
|
||||
|
@ -483,7 +483,7 @@ containerSecurityContext:
|
|||
nginx:
|
||||
image:
|
||||
repository: goharbor/nginx-photon
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -514,7 +514,7 @@ nginx:
|
|||
portal:
|
||||
image:
|
||||
repository: goharbor/harbor-portal
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -554,7 +554,7 @@ portal:
|
|||
core:
|
||||
image:
|
||||
repository: goharbor/harbor-core
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -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: ""
|
||||
|
@ -643,7 +643,7 @@ core:
|
|||
jobservice:
|
||||
image:
|
||||
repository: goharbor/harbor-jobservice
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -706,7 +706,7 @@ registry:
|
|||
registry:
|
||||
image:
|
||||
repository: goharbor/registry-photon
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# resources:
|
||||
# requests:
|
||||
# memory: 256Mi
|
||||
|
@ -715,7 +715,7 @@ registry:
|
|||
controller:
|
||||
image:
|
||||
repository: goharbor/harbor-registryctl
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# resources:
|
||||
# requests:
|
||||
# memory: 256Mi
|
||||
|
@ -796,7 +796,7 @@ trivy:
|
|||
# repository the repository for Trivy adapter image
|
||||
repository: goharbor/trivy-adapter-photon
|
||||
# tag the tag for Trivy adapter image
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -889,7 +889,7 @@ database:
|
|||
internal:
|
||||
image:
|
||||
repository: goharbor/harbor-db
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -969,7 +969,7 @@ redis:
|
|||
internal:
|
||||
image:
|
||||
repository: goharbor/redis-photon
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
# set the service account to be used, default if left empty
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
|
@ -1039,7 +1039,7 @@ redis:
|
|||
exporter:
|
||||
image:
|
||||
repository: goharbor/harbor-exporter
|
||||
tag: dev
|
||||
tag: v2.13.1
|
||||
serviceAccountName: ""
|
||||
# mount the service account token
|
||||
automountServiceAccountToken: false
|
||||
|
|
Loading…
Reference in New Issue