├── .github ├── release.yml └── workflows │ ├── housekeeping-stale-issues-prs.yaml │ ├── integration.yaml │ ├── lint.yaml │ ├── publish_release.yaml │ └── unittest.yaml ├── .gitignore ├── .helmignore ├── CONTRIBUTING.md ├── Chart.yaml ├── LICENSE ├── README.md ├── docs ├── High Availability.md ├── Upgrade.md ├── _index.md └── img │ └── ha.png ├── templates ├── NOTES.txt ├── _helpers.tpl ├── core │ ├── core-cm.yaml │ ├── core-dpl.yaml │ ├── core-pre-upgrade-job.yaml │ ├── core-secret.yaml │ ├── core-svc.yaml │ └── core-tls.yaml ├── database │ ├── database-secret.yaml │ ├── database-ss.yaml │ └── database-svc.yaml ├── exporter │ ├── exporter-cm-env.yaml │ ├── exporter-dpl.yaml │ ├── exporter-secret.yaml │ └── exporter-svc.yaml ├── gateway-apis │ └── route.yaml ├── ingress │ ├── ingress.yaml │ └── secret.yaml ├── internal │ └── auto-tls.yaml ├── jobservice │ ├── jobservice-cm-env.yaml │ ├── jobservice-cm.yaml │ ├── jobservice-dpl.yaml │ ├── jobservice-pvc.yaml │ ├── jobservice-secrets.yaml │ ├── jobservice-svc.yaml │ └── jobservice-tls.yaml ├── metrics │ └── metrics-svcmon.yaml ├── nginx │ ├── configmap-http.yaml │ ├── configmap-https.yaml │ ├── deployment.yaml │ ├── secret.yaml │ └── service.yaml ├── portal │ ├── configmap.yaml │ ├── deployment.yaml │ ├── service.yaml │ └── tls.yaml ├── redis │ ├── service.yaml │ └── statefulset.yaml ├── registry │ ├── registry-cm.yaml │ ├── registry-dpl.yaml │ ├── registry-pvc.yaml │ ├── registry-secret.yaml │ ├── registry-svc.yaml │ ├── registry-tls.yaml │ ├── registryctl-cm.yaml │ └── registryctl-secret.yaml └── trivy │ ├── trivy-secret.yaml │ ├── trivy-sts.yaml │ ├── trivy-svc.yaml │ └── trivy-tls.yaml ├── test ├── e2e │ ├── Dockerfile │ └── Jenkinsfile ├── go.mod ├── go.sum ├── integration │ ├── base.go │ ├── ingress_test.go │ ├── kind-cluster.yaml │ └── node_port_test.go ├── test.go └── unittest │ ├── core │ ├── core_configmap_test.yaml │ ├── core_deployment_test.yaml │ ├── core_job_test.yaml │ ├── core_secret_test.yaml │ ├── core_svc_test.yaml │ └── core_tls_test.yaml │ ├── exporter │ ├── exporter_configmap_test.yaml │ ├── exporter_deployment_test.yaml │ ├── exporter_secret_test.yaml │ └── exporter_svc_test.yaml │ ├── gateway-apis │ └── route_test.yaml │ └── trivy │ └── trivy_statefulset_test.yaml └── values.yaml /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/housekeeping-stale-issues-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/workflows/housekeeping-stale-issues-prs.yaml -------------------------------------------------------------------------------- /.github/workflows/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/workflows/integration.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/workflows/publish_release.yaml -------------------------------------------------------------------------------- /.github/workflows/unittest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.github/workflows/unittest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | charts/* 2 | requirements.lock -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/.helmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/README.md -------------------------------------------------------------------------------- /docs/High Availability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/docs/High Availability.md -------------------------------------------------------------------------------- /docs/Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/docs/Upgrade.md -------------------------------------------------------------------------------- /docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/docs/_index.md -------------------------------------------------------------------------------- /docs/img/ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/docs/img/ha.png -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/core/core-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-cm.yaml -------------------------------------------------------------------------------- /templates/core/core-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-dpl.yaml -------------------------------------------------------------------------------- /templates/core/core-pre-upgrade-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-pre-upgrade-job.yaml -------------------------------------------------------------------------------- /templates/core/core-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-secret.yaml -------------------------------------------------------------------------------- /templates/core/core-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-svc.yaml -------------------------------------------------------------------------------- /templates/core/core-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/core/core-tls.yaml -------------------------------------------------------------------------------- /templates/database/database-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/database/database-secret.yaml -------------------------------------------------------------------------------- /templates/database/database-ss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/database/database-ss.yaml -------------------------------------------------------------------------------- /templates/database/database-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/database/database-svc.yaml -------------------------------------------------------------------------------- /templates/exporter/exporter-cm-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/exporter/exporter-cm-env.yaml -------------------------------------------------------------------------------- /templates/exporter/exporter-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/exporter/exporter-dpl.yaml -------------------------------------------------------------------------------- /templates/exporter/exporter-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/exporter/exporter-secret.yaml -------------------------------------------------------------------------------- /templates/exporter/exporter-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/exporter/exporter-svc.yaml -------------------------------------------------------------------------------- /templates/gateway-apis/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/gateway-apis/route.yaml -------------------------------------------------------------------------------- /templates/ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/ingress/ingress.yaml -------------------------------------------------------------------------------- /templates/ingress/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/ingress/secret.yaml -------------------------------------------------------------------------------- /templates/internal/auto-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/internal/auto-tls.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-cm-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-cm-env.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-cm.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-dpl.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-pvc.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-secrets.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-svc.yaml -------------------------------------------------------------------------------- /templates/jobservice/jobservice-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/jobservice/jobservice-tls.yaml -------------------------------------------------------------------------------- /templates/metrics/metrics-svcmon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/metrics/metrics-svcmon.yaml -------------------------------------------------------------------------------- /templates/nginx/configmap-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/nginx/configmap-http.yaml -------------------------------------------------------------------------------- /templates/nginx/configmap-https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/nginx/configmap-https.yaml -------------------------------------------------------------------------------- /templates/nginx/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/nginx/deployment.yaml -------------------------------------------------------------------------------- /templates/nginx/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/nginx/secret.yaml -------------------------------------------------------------------------------- /templates/nginx/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/nginx/service.yaml -------------------------------------------------------------------------------- /templates/portal/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/portal/configmap.yaml -------------------------------------------------------------------------------- /templates/portal/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/portal/deployment.yaml -------------------------------------------------------------------------------- /templates/portal/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/portal/service.yaml -------------------------------------------------------------------------------- /templates/portal/tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/portal/tls.yaml -------------------------------------------------------------------------------- /templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/redis/service.yaml -------------------------------------------------------------------------------- /templates/redis/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/redis/statefulset.yaml -------------------------------------------------------------------------------- /templates/registry/registry-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-cm.yaml -------------------------------------------------------------------------------- /templates/registry/registry-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-dpl.yaml -------------------------------------------------------------------------------- /templates/registry/registry-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-pvc.yaml -------------------------------------------------------------------------------- /templates/registry/registry-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-secret.yaml -------------------------------------------------------------------------------- /templates/registry/registry-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-svc.yaml -------------------------------------------------------------------------------- /templates/registry/registry-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registry-tls.yaml -------------------------------------------------------------------------------- /templates/registry/registryctl-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registryctl-cm.yaml -------------------------------------------------------------------------------- /templates/registry/registryctl-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/registry/registryctl-secret.yaml -------------------------------------------------------------------------------- /templates/trivy/trivy-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/trivy/trivy-secret.yaml -------------------------------------------------------------------------------- /templates/trivy/trivy-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/trivy/trivy-sts.yaml -------------------------------------------------------------------------------- /templates/trivy/trivy-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/trivy/trivy-svc.yaml -------------------------------------------------------------------------------- /templates/trivy/trivy-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/templates/trivy/trivy-tls.yaml -------------------------------------------------------------------------------- /test/e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/e2e/Dockerfile -------------------------------------------------------------------------------- /test/e2e/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/e2e/Jenkinsfile -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/go.sum -------------------------------------------------------------------------------- /test/integration/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/integration/base.go -------------------------------------------------------------------------------- /test/integration/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/integration/ingress_test.go -------------------------------------------------------------------------------- /test/integration/kind-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/integration/kind-cluster.yaml -------------------------------------------------------------------------------- /test/integration/node_port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/integration/node_port_test.go -------------------------------------------------------------------------------- /test/test.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /test/unittest/core/core_configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_configmap_test.yaml -------------------------------------------------------------------------------- /test/unittest/core/core_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_deployment_test.yaml -------------------------------------------------------------------------------- /test/unittest/core/core_job_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_job_test.yaml -------------------------------------------------------------------------------- /test/unittest/core/core_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_secret_test.yaml -------------------------------------------------------------------------------- /test/unittest/core/core_svc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_svc_test.yaml -------------------------------------------------------------------------------- /test/unittest/core/core_tls_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/core/core_tls_test.yaml -------------------------------------------------------------------------------- /test/unittest/exporter/exporter_configmap_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/exporter/exporter_configmap_test.yaml -------------------------------------------------------------------------------- /test/unittest/exporter/exporter_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/exporter/exporter_deployment_test.yaml -------------------------------------------------------------------------------- /test/unittest/exporter/exporter_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/exporter/exporter_secret_test.yaml -------------------------------------------------------------------------------- /test/unittest/exporter/exporter_svc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/exporter/exporter_svc_test.yaml -------------------------------------------------------------------------------- /test/unittest/gateway-apis/route_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/gateway-apis/route_test.yaml -------------------------------------------------------------------------------- /test/unittest/trivy/trivy_statefulset_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/test/unittest/trivy/trivy_statefulset_test.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-helm/HEAD/values.yaml --------------------------------------------------------------------------------