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
|
||||
|
|
|
@ -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 }}"
|
||||
|
|
20
values.yaml
20
values.yaml
|
@ -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
|
||||
|
@ -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