├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── issue.md │ └── proposal.md ├── auto-assignees.yaml ├── kind.yaml ├── kind_permission.yaml ├── scripts │ └── apidb_test.sh ├── stale.yml └── workflows │ ├── auto-assign-prs.yaml │ ├── build-dev.yml │ ├── chart-tests.yml │ ├── codeql-analysis.yml │ ├── contour-tests.yml │ ├── harbor-e2e-tests.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .hadolint.yaml ├── .markdownlint.json ├── CONTRIBUTING ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── PROJECT ├── README.md ├── apis ├── goharbor.io │ ├── v1alpha3 │ │ ├── chartmuseum_conversion.go │ │ ├── chartmuseum_types.go │ │ ├── core_conversion.go │ │ ├── core_types.go │ │ ├── errors.go │ │ ├── exporter_conversion.go │ │ ├── exporter_types.go │ │ ├── groupversion_info.go │ │ ├── harbor_conversion.go │ │ ├── harbor_types.go │ │ ├── harbor_types_test.go │ │ ├── harborcluster_conversion.go │ │ ├── harborcluster_types.go │ │ ├── jobservice_conversion.go │ │ ├── jobservice_types.go │ │ ├── metadata.go │ │ ├── notary_types.go │ │ ├── notaryserver_conversion.go │ │ ├── notaryserver_types.go │ │ ├── notarysigner_conversion.go │ │ ├── notarysigner_types.go │ │ ├── portal_conversion.go │ │ ├── portal_types.go │ │ ├── registry_conversion.go │ │ ├── registry_types.go │ │ ├── registryctl_conversion.go │ │ ├── registryctl_types.go │ │ ├── trivy_conversion.go │ │ ├── trivy_types.go │ │ ├── v1alpha3_suite_test.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── chartmuseum_conversion.go │ │ ├── chartmuseum_types.go │ │ ├── chartmuseum_webhook.go │ │ ├── core_conversion.go │ │ ├── core_types.go │ │ ├── core_webhook.go │ │ ├── errors.go │ │ ├── exporter_conversion.go │ │ ├── exporter_types.go │ │ ├── exporter_webhook.go │ │ ├── groupversion_info.go │ │ ├── harbor_configuration.go │ │ ├── harbor_conversion.go │ │ ├── harbor_types.go │ │ ├── harbor_webhook.go │ │ ├── harborcluster_conversion.go │ │ ├── harborcluster_types.go │ │ ├── harborcluster_webhook.go │ │ ├── harborproject_types.go │ │ ├── harborproject_webhook.go │ │ ├── harborserverconfiguration_types.go │ │ ├── jobservice_conversion.go │ │ ├── jobservice_types.go │ │ ├── jobservice_webhook.go │ │ ├── metadata.go │ │ ├── notary_types.go │ │ ├── notaryserver_conversion.go │ │ ├── notaryserver_types.go │ │ ├── notaryserver_webhook.go │ │ ├── notarysigner_conversion.go │ │ ├── notarysigner_types.go │ │ ├── notarysigner_webhook.go │ │ ├── portal_conversion.go │ │ ├── portal_types.go │ │ ├── portal_webhook.go │ │ ├── pullsecretbinding_types.go │ │ ├── registry_conversion.go │ │ ├── registry_types.go │ │ ├── registry_webhook.go │ │ ├── registrycontroller_webhook.go │ │ ├── registryctl_conversion.go │ │ ├── registryctl_types.go │ │ ├── trivy_conversion.go │ │ ├── trivy_types.go │ │ ├── trivy_webhook.go │ │ ├── v1beta1_suite_test.go │ │ └── zz_generated.deepcopy.go └── meta │ └── v1alpha1 │ ├── component.go │ ├── component_string.go │ ├── image_source.go │ ├── ingress_controller.go │ ├── logs.go │ ├── metric.go │ ├── network.go │ ├── network_policies.go │ ├── operator.go │ ├── ports.go │ ├── postgres.go │ ├── proxy.go │ ├── redis.go │ ├── secrets.go │ ├── tls.go │ ├── trace.go │ ├── trivy.go │ ├── v1alpha1.go │ └── zz_generated.deepcopy.go ├── charts └── harbor-operator │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── assets │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── issuer.yaml │ ├── mutatingwebhookconfiguration.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── validatingwebhookconfiguration.yaml │ └── values.yaml ├── config-dev.yml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── config │ ├── assets │ │ ├── chartmuseum-config.yaml.tmpl │ │ ├── core-config.conf.tmpl │ │ ├── jobservice-config.yaml.tmpl │ │ ├── notaryserver-config.json.tmpl │ │ ├── notarysigner-config.json.tmpl │ │ ├── portal-config.conf.tmpl │ │ ├── registry-config.yaml.tmpl │ │ └── registryctl-config.yaml.tmpl │ ├── config.yaml │ ├── controllers │ │ ├── chartmuseum-ctrl.yaml │ │ ├── core-ctrl.yaml │ │ ├── exporter-ctrl.yaml │ │ ├── harbor-ctrl.yaml │ │ ├── harborcluster-ctrl.yaml │ │ ├── harborconfiguration-ctrl.yaml │ │ ├── harborproject-ctrl.yaml │ │ ├── jobservice-ctrl.yaml │ │ ├── notaryserver-ctrl.yaml │ │ ├── notarysigner-ctrl.yaml │ │ ├── portal-ctrl.yaml │ │ ├── registry-ctrl.yaml │ │ ├── registryctl-ctrl.yaml │ │ └── trivy-ctrl.yaml │ └── kustomization.yaml ├── crd │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_chartmuseums.yaml │ │ ├── cainjection_in_cores.yaml │ │ ├── cainjection_in_exporters.yaml │ │ ├── cainjection_in_harborclusters.yaml │ │ ├── cainjection_in_harbors.yaml │ │ ├── cainjection_in_harborserverconfigurations.yaml │ │ ├── cainjection_in_jobservices.yaml │ │ ├── cainjection_in_notaryservers.yaml │ │ ├── cainjection_in_notarysigners.yaml │ │ ├── cainjection_in_portals.yaml │ │ ├── cainjection_in_pullsecretbindings.yaml │ │ ├── cainjection_in_registries.yaml │ │ ├── cainjection_in_registrycontrollers.yaml │ │ ├── cainjection_in_trivies.yaml │ │ ├── webhook_in_chartmuseums.yaml │ │ ├── webhook_in_cores.yaml │ │ ├── webhook_in_exporters.yaml │ │ ├── webhook_in_harborclusters.yaml │ │ ├── webhook_in_harbors.yaml │ │ ├── webhook_in_harborserverconfigurations.yaml │ │ ├── webhook_in_jobservices.yaml │ │ ├── webhook_in_notaryservers.yaml │ │ ├── webhook_in_notarysigners.yaml │ │ ├── webhook_in_portals.yaml │ │ ├── webhook_in_pullsecretbindings.yaml │ │ ├── webhook_in_registries.yaml │ │ ├── webhook_in_registrycontrollers.yaml │ │ └── webhook_in_trivies.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_prometheus_metrics_patch.yaml │ ├── manager_webhook_patch.yaml │ ├── webhook_namespaceselector_patch.yaml │ └── webhookcainjection_patch.yaml ├── helm │ ├── certificate │ │ ├── kustomization.yaml │ │ ├── patch_certificate_dns.yaml │ │ └── patch_certificate_secret.yaml │ ├── crds │ │ ├── kustomization.yaml │ │ └── patches │ │ │ ├── chartmuseums_service.yaml │ │ │ ├── cores_service.yaml │ │ │ ├── exporters_service.yaml │ │ │ ├── harborclusters_service.yaml │ │ │ ├── harbors_service.yaml │ │ │ ├── jobservices_service.yaml │ │ │ ├── notaryservers_service.yaml │ │ │ ├── notarysigners_service.yaml │ │ │ ├── portals_service.yaml │ │ │ ├── registries_service.yaml │ │ │ ├── registrycontrollers_service.yaml │ │ │ └── trivies_service.yaml │ ├── deployment │ │ ├── foot.yaml │ │ ├── kustomization.yaml │ │ ├── patch_deployment_config.yaml │ │ ├── patch_deployment_metadata.yaml │ │ ├── patch_deployment_resources.yaml │ │ ├── patch_deployment_security.yaml │ │ └── patch_deployment_webhook.yaml │ ├── rbac │ │ ├── kustomization.yaml │ │ ├── patch_leaderelection_binding.yaml │ │ └── patch_manager_binding.yaml │ └── webhook │ │ ├── kustomization.yaml │ │ ├── mutatingwebhook_endpoint_patch.yaml │ │ └── validatingwebhook_endpoint_patch.yaml ├── kustomizeconfig │ ├── certificate.yaml │ ├── chartmuseum.yaml │ ├── core.yaml │ ├── harbor.yaml │ ├── harborcluster.yaml │ ├── jobservice.yaml │ ├── kustomization.yaml │ ├── notaryserver.yaml │ ├── notarysigner.yaml │ ├── portal.yaml │ ├── registry.yaml │ ├── registryctl.yaml │ └── trivy.yaml ├── manager │ ├── kustomization.yaml │ ├── manager.yaml │ └── patches-configuration.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── harbor_editor_role.yaml │ ├── harbor_viewer_role.yaml │ ├── harborcluster_editor_role.yaml │ ├── harborcluster_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── portal_editor_role.yaml │ ├── portal_viewer_role.yaml │ └── role_binding.yaml ├── samples │ ├── database │ │ ├── init-db.sql │ │ └── kustomization.yaml │ ├── harborcluster-fullstack │ │ ├── certificate_patch.yaml │ │ ├── incluster_cache_patch.yaml │ │ ├── incluster_database_patch.yaml │ │ ├── incluster_storage_patch.yaml │ │ ├── kustomization.yaml │ │ ├── resources_patch.yaml │ │ └── spec_patch.yaml │ ├── harborcluster-minimal │ │ ├── goharbor_v1alpha3_harbor.yaml │ │ ├── https.yaml │ │ ├── images_patch.yaml │ │ ├── kustomization.yaml │ │ ├── service_token_issuer.yaml │ │ └── storage.yaml │ ├── harborcluster-standard │ │ ├── harbor_chartmuseum_patch.yaml │ │ ├── harbor_notary_patch.yaml │ │ ├── harbor_portal_patch.yaml │ │ ├── harbor_trivy_patch.yaml │ │ ├── kustomization.yaml │ │ └── storage.yaml │ └── redis │ │ └── kustomization.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── controller_string.go ├── controllers.go └── goharbor │ ├── chartmuseum │ ├── chartmuseum.go │ ├── chartmuseum_test.go │ ├── configs.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── resources.go │ ├── services.go │ └── suite_test.go │ ├── chartmuseum_test.go │ ├── configuration │ ├── cm_reconciler.go │ └── reconciler.go │ ├── controller_test.go │ ├── core │ ├── configs.go │ ├── core.go │ ├── core_test.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── resources.go │ ├── secrets.go │ ├── services.go │ └── suite_test.go │ ├── core_test.go │ ├── exporter │ ├── deployments.go │ ├── exporter.go │ ├── networkpolicies.go │ ├── resources.go │ └── services.go │ ├── exporter_test.go │ ├── harbor │ ├── chartmuseum.go │ ├── core.go │ ├── exporter.go │ ├── github.go │ ├── harbor.go │ ├── harbor_suite_test.go │ ├── harbor_test.go │ ├── ingresses.go │ ├── internaltls.go │ ├── jobservice.go │ ├── manifests │ │ ├── jobservice │ │ │ ├── default-expected.yaml │ │ │ ├── default.yaml │ │ │ ├── repository-and-tag-suffix-not-empty-expected.yaml │ │ │ ├── repository-and-tag-suffix-not-empty.yaml │ │ │ ├── repository-not-empty-expected.yaml │ │ │ ├── repository-not-empty.yaml │ │ │ ├── tag-suffix-not-empty-expected.yaml │ │ │ ├── tag-suffix-not-empty.yaml │ │ │ ├── version-and-repository-not-empty-expected.yaml │ │ │ ├── version-and-repository-not-empty.yaml │ │ │ ├── version-not-empty-expected.yaml │ │ │ └── version-not-empty.yaml │ │ └── trivy │ │ │ ├── default-expected.yaml │ │ │ ├── default.yaml │ │ │ ├── expose-core-with-tls-expected.yaml │ │ │ ├── expose-core-with-tls.yaml │ │ │ ├── github-token-expected.yaml │ │ │ └── github-token.yaml │ ├── networkpolicies.go │ ├── notary.go │ ├── notaryserver.go │ ├── notarysigner.go │ ├── portal.go │ ├── registry.go │ ├── registryctl.go │ ├── resources.go │ ├── storage.go │ ├── trivy.go │ └── trivy_test.go │ ├── harbor_test.go │ ├── harborcluster │ ├── ctrl_setup.go │ ├── harborcluster.go │ ├── service_mgr.go │ └── status.go │ ├── harborserverconfiguration │ ├── harborserverconfiguration.go │ └── resources.go │ ├── internal │ └── test │ │ ├── certificate │ │ └── certificate.go │ │ ├── client.go │ │ ├── context.go │ │ ├── controllers │ │ └── controllers.go │ │ ├── harbor-core │ │ └── mock.go │ │ ├── init.go │ │ ├── logger.go │ │ ├── manager.go │ │ ├── pods │ │ ├── logs.go │ │ └── pods.go │ │ ├── port-forward │ │ └── port-forward.go │ │ ├── postgresql │ │ └── postgres.go │ │ ├── random.go │ │ ├── redis │ │ └── redis.go │ │ ├── status.go │ │ └── utils.go │ ├── jobservice │ ├── configs.go │ ├── deployments.go │ ├── jobservice.go │ ├── jobservice_test.go │ ├── networkpolicies.go │ ├── resources.go │ ├── secrets.go │ ├── services.go │ └── suite_test.go │ ├── jobservice_test.go │ ├── namespace │ ├── namespace.go │ └── resources.go │ ├── notaryserver │ ├── configs.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── notaryserver.go │ ├── notaryserver_test.go │ ├── resources.go │ ├── services.go │ └── suite_test.go │ ├── notaryserver_test.go │ ├── notarysigner │ ├── configs.go │ ├── deployments.go │ ├── notarysigner.go │ ├── notarysigner_test.go │ ├── resources.go │ ├── services.go │ └── suite_test.go │ ├── notarysigner_test.go │ ├── portal │ ├── configs.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── portal.go │ ├── portal_test.go │ ├── resources.go │ ├── services.go │ └── suite_test.go │ ├── portal_test.go │ ├── project │ ├── ctrl_setup.go │ ├── harborproject.go │ ├── memberships.go │ └── quota.go │ ├── pullsecretbinding │ ├── pullsecretbinding.go │ └── resources.go │ ├── registry │ ├── configs.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── registry.go │ ├── registry_test.go │ ├── registryctl.go │ ├── resources.go │ ├── services.go │ ├── suite_test.go │ └── template.go │ ├── registry_test.go │ ├── suite_test.go │ ├── trivy │ ├── configs.go │ ├── deployments.go │ ├── networkpolicies.go │ ├── resources.go │ ├── secrets.go │ ├── services.go │ ├── suite_test.go │ ├── trivy.go │ └── trivy_test.go │ └── trivy_test.go ├── docker-compose.yml ├── docs ├── CRD │ └── custom-resource-definition.md ├── LCM │ ├── backup-data.md │ ├── backup-minio-data.md │ ├── backup-psql-data.md │ ├── backup-redis-data.md │ ├── cluster-controller.md │ ├── cluster-deletion.md │ ├── controllers.md │ ├── monitor-logs-with-grafana.md │ └── upgrade-cluster.md ├── arch │ ├── arch.md │ └── day2-op.md ├── certificates.md ├── configurations │ └── operator-configurations.md ├── customize-images.md ├── day2 │ ├── day2-configurations.md │ ├── day2-harborprojects.md │ └── day2-operations.md ├── development.md ├── feature-areas.md ├── images │ ├── arch │ │ ├── day1-operator-design.jpg │ │ └── day2-operator-design.jpg │ ├── console │ │ ├── dashboard.png │ │ └── login.png │ ├── internal-certificate-overview.pu │ ├── internal-certificate-overview.svg │ ├── public-certificate-overview.pu │ ├── public-certificate-overview.svg │ ├── webhook-certificate-overview.pu │ └── webhook-certificate-overview.svg ├── installation │ ├── by-helm-chart.md │ ├── customize-storage-db-redis.md │ ├── enable_minio_console.md │ ├── installation.md │ ├── kind-installation.md │ ├── kustomization-all-in-one.md │ └── kustomization-custom.md ├── makefile.md ├── manifests-reference.md ├── perf │ └── simple-perf-comprasion.md └── tutorial.md ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── main.go ├── manifests ├── README.md ├── cluster │ ├── README.md │ ├── deployment.yaml │ ├── kustomization.yaml │ └── patch │ │ ├── annotations.yaml │ │ ├── delete-duplicated-ns.yaml │ │ ├── delete-minio-console.yaml │ │ ├── github-token.yaml │ │ ├── image-source.yaml │ │ ├── namespace.yaml │ │ └── pg-configmap.yaml ├── commons │ ├── kustomization.yaml │ └── patches-image-source.yaml ├── harbor │ ├── README.md │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ └── patch │ │ └── image-source.yaml └── samples │ ├── full_stack.yaml │ ├── minimal_stack_fs.yaml │ ├── minimal_stack_incluster.yaml │ ├── standard_stack.yaml │ └── standard_stack_fs.yaml ├── pkg ├── builder │ └── builder.go ├── cluster │ ├── controllers │ │ ├── cache │ │ │ ├── constants.go │ │ │ ├── deploy.go │ │ │ ├── image.go │ │ │ ├── readiness.go │ │ │ ├── redis.go │ │ │ ├── redis_connect.go │ │ │ ├── resource_manager.go │ │ │ ├── update.go │ │ │ └── utils.go │ │ ├── common │ │ │ ├── equals.go │ │ │ └── utils.go │ │ ├── database │ │ │ ├── api │ │ │ │ ├── postgresql_type.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── constants.go │ │ │ ├── generate.go │ │ │ ├── image.go │ │ │ ├── postgresql.go │ │ │ ├── provision.go │ │ │ ├── readiness.go │ │ │ ├── status.go │ │ │ ├── update.go │ │ │ └── utils.go │ │ ├── harbor │ │ │ ├── cr_status.go │ │ │ ├── errors.go │ │ │ └── harbor.go │ │ └── storage │ │ │ ├── client.go │ │ │ ├── constants.go │ │ │ ├── image.go │ │ │ ├── ingress.go │ │ │ ├── job.go │ │ │ ├── minio.go │ │ │ ├── minio │ │ │ └── apis │ │ │ │ └── minio.min.io │ │ │ │ └── v2 │ │ │ │ ├── constants.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── tenant.go │ ├── gos │ │ └── group.go │ ├── k8s │ │ ├── dynamic.go │ │ ├── labels.go │ │ └── option.go │ └── lcm │ │ ├── cr_staus_collection.go │ │ ├── lcm.go │ │ ├── options.go │ │ ├── property.go │ │ └── property_test.go ├── config │ ├── config.go │ ├── config_test.go │ ├── errors.go │ ├── errors_test.go │ ├── harbor │ │ ├── env.go │ │ └── error.go │ ├── suite_test.go │ └── template │ │ ├── error.go │ │ └── template.go ├── controller │ ├── apply.go │ ├── common.go │ ├── config.go │ ├── context.go │ ├── errors.go │ ├── errors │ │ ├── retrylater.go │ │ ├── types.go │ │ └── unrecoverrable.go │ ├── garbagecollector.go │ ├── helpers.go │ ├── internal │ │ └── graph │ │ │ └── graph.go │ ├── mutation.go │ ├── mutation │ │ ├── annotations.go │ │ ├── annotations_test.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── meta.go │ │ ├── noop.go │ │ ├── owner.go │ │ ├── owner_test.go │ │ └── suite_test.go │ ├── opentracing.go │ ├── ready.go │ ├── resource.go │ ├── resource_test.go │ ├── secret-format.go │ ├── status.go │ ├── suite_test.go │ ├── template.go │ └── types.go ├── convert │ └── unstructed_conversion.go ├── event-filter │ └── class │ │ ├── class.go │ │ ├── class_test.go │ │ └── suite_test.go ├── exit │ └── exit.go ├── factories │ ├── application │ │ └── application.go │ ├── logger │ │ └── logger.go │ └── owner │ │ └── owner.go ├── graph │ ├── graph.go │ ├── graph_test.go │ ├── node.go │ ├── runner.go │ ├── runner_test.go │ ├── suite_test.go │ ├── types.go │ └── types_test.go ├── image │ ├── components.go │ ├── image.go │ ├── image_suite_test.go │ └── image_test.go ├── manager │ └── manager.go ├── registry │ └── secret │ │ └── object.go ├── resources │ ├── checksum │ │ ├── checksum.go │ │ ├── checksum_suite_test.go │ │ └── checksum_test.go │ ├── mutable.go │ ├── resources.go │ └── statuscheck │ │ ├── basic.go │ │ ├── basic_test.go │ │ ├── certificate.go │ │ ├── certificate_test.go │ │ ├── secret.go │ │ ├── suite_test.go │ │ ├── true.go │ │ ├── unstructured.go │ │ └── unstructured_test.go ├── rest │ ├── client.go │ ├── model │ │ └── harbor_server.go │ └── v2 │ │ ├── client.go │ │ └── project.go ├── rule │ ├── rule.go │ └── rule_test.go ├── scheme │ ├── scheme.go │ ├── scheme_test.go │ └── suite_test.go ├── setup │ ├── controllers.go │ ├── logger.go │ ├── setup.go │ └── webhooks.go ├── status │ ├── status.go │ ├── status_test.go │ └── suite_test.go ├── template │ ├── generic.go │ └── secret.go ├── tracing │ ├── suite_test.go │ ├── tracing.go │ └── tracing_test.go ├── utils │ ├── consts │ │ └── annotations.go │ └── strings │ │ ├── name.go │ │ └── strings.go └── version │ ├── version.go │ ├── version_suite_test.go │ └── version_test.go ├── pkged.go └── webhooks ├── harborserverconfiguration └── webhook.go └── pod ├── containers.go ├── containers_test.go └── mutate_image_path.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/ISSUE_TEMPLATE/proposal.md -------------------------------------------------------------------------------- /.github/auto-assignees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/auto-assignees.yaml -------------------------------------------------------------------------------- /.github/kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/kind.yaml -------------------------------------------------------------------------------- /.github/kind_permission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/kind_permission.yaml -------------------------------------------------------------------------------- /.github/scripts/apidb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/scripts/apidb_test.sh -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/auto-assign-prs.yaml -------------------------------------------------------------------------------- /.github/workflows/build-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/build-dev.yml -------------------------------------------------------------------------------- /.github/workflows/chart-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/chart-tests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/contour-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/contour-tests.yml -------------------------------------------------------------------------------- /.github/workflows/harbor-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/harbor-e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/README.md -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/chartmuseum_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/chartmuseum_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/chartmuseum_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/chartmuseum_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/core_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/core_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/core_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/core_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/errors.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/exporter_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/exporter_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/exporter_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/exporter_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/groupversion_info.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/harbor_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/harbor_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/harbor_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/harbor_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/harbor_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/harbor_types_test.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/harborcluster_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/harborcluster_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/harborcluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/harborcluster_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/jobservice_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/jobservice_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/jobservice_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/jobservice_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/metadata.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/notary_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/notary_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/notaryserver_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/notaryserver_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/notaryserver_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/notaryserver_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/notarysigner_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/notarysigner_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/notarysigner_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/notarysigner_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/portal_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/portal_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/portal_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/portal_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/registry_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/registry_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/registry_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/registry_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/registryctl_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/registryctl_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/registryctl_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/registryctl_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/trivy_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/trivy_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/trivy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/trivy_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/v1alpha3_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/v1alpha3_suite_test.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1alpha3/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1alpha3/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/chartmuseum_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/chartmuseum_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/chartmuseum_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/chartmuseum_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/chartmuseum_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/chartmuseum_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/core_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/core_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/core_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/core_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/core_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/core_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/errors.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/exporter_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/exporter_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/exporter_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/exporter_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/exporter_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/exporter_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harbor_configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harbor_configuration.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harbor_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harbor_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harbor_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harbor_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harbor_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harbor_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborcluster_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborcluster_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborcluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborcluster_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborcluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborcluster_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborproject_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborproject_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborproject_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborproject_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/harborserverconfiguration_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/harborserverconfiguration_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/jobservice_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/jobservice_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/jobservice_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/jobservice_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/jobservice_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/jobservice_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/metadata.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notary_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notary_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notaryserver_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notaryserver_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notaryserver_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notaryserver_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notaryserver_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notaryserver_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notarysigner_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notarysigner_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notarysigner_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notarysigner_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/notarysigner_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/notarysigner_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/portal_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/portal_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/portal_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/portal_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/portal_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/portal_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/pullsecretbinding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/pullsecretbinding_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registry_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registry_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registry_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registry_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registry_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registry_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registrycontroller_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registrycontroller_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registryctl_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registryctl_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/registryctl_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/registryctl_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/trivy_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/trivy_conversion.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/trivy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/trivy_types.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/trivy_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/trivy_webhook.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/v1beta1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/v1beta1_suite_test.go -------------------------------------------------------------------------------- /apis/goharbor.io/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/goharbor.io/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/component.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/component_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/component_string.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/image_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/image_source.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/ingress_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/ingress_controller.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/logs.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/metric.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/network.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/network_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/network_policies.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/operator.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/ports.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/postgres.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/proxy.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/redis.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/secrets.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/tls.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/trace.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/trivy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/trivy.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/v1alpha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/v1alpha1.go -------------------------------------------------------------------------------- /apis/meta/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/apis/meta/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /charts/harbor-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/.helmignore -------------------------------------------------------------------------------- /charts/harbor-operator/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/Chart.lock -------------------------------------------------------------------------------- /charts/harbor-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/Chart.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/README.md -------------------------------------------------------------------------------- /charts/harbor-operator/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/README.md.gotmpl -------------------------------------------------------------------------------- /charts/harbor-operator/assets: -------------------------------------------------------------------------------- 1 | ../../config/config/assets -------------------------------------------------------------------------------- /charts/harbor-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/harbor-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/harbor-operator/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/certificate.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/issuer.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/mutatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/mutatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/role.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/service.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/templates/validatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/templates/validatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /charts/harbor-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/charts/harbor-operator/values.yaml -------------------------------------------------------------------------------- /config-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config-dev.yml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/config/assets/chartmuseum-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/chartmuseum-config.yaml.tmpl -------------------------------------------------------------------------------- /config/config/assets/core-config.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/core-config.conf.tmpl -------------------------------------------------------------------------------- /config/config/assets/jobservice-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/jobservice-config.yaml.tmpl -------------------------------------------------------------------------------- /config/config/assets/notaryserver-config.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/notaryserver-config.json.tmpl -------------------------------------------------------------------------------- /config/config/assets/notarysigner-config.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/notarysigner-config.json.tmpl -------------------------------------------------------------------------------- /config/config/assets/portal-config.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/portal-config.conf.tmpl -------------------------------------------------------------------------------- /config/config/assets/registry-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/registry-config.yaml.tmpl -------------------------------------------------------------------------------- /config/config/assets/registryctl-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/assets/registryctl-config.yaml.tmpl -------------------------------------------------------------------------------- /config/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/config.yaml -------------------------------------------------------------------------------- /config/config/controllers/chartmuseum-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/chartmuseum-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/core-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/core-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/exporter-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/exporter-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/harbor-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/harbor-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/harborcluster-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/harborcluster-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/harborconfiguration-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/harborconfiguration-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/harborproject-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/harborproject-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/jobservice-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/jobservice-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/notaryserver-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/notaryserver-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/notarysigner-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/notarysigner-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/portal-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/portal-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/registry-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/registry-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/registryctl-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/registryctl-ctrl.yaml -------------------------------------------------------------------------------- /config/config/controllers/trivy-ctrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/controllers/trivy-ctrl.yaml -------------------------------------------------------------------------------- /config/config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/config/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_chartmuseums.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_chartmuseums.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_cores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_cores.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_exporters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_exporters.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_harborclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_harborclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_harbors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_harbors.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_harborserverconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_harborserverconfigurations.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_jobservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_jobservices.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_notaryservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_notaryservers.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_notarysigners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_notarysigners.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_portals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_portals.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_pullsecretbindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_pullsecretbindings.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_registries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_registries.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_registrycontrollers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_registrycontrollers.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_trivies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/cainjection_in_trivies.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_chartmuseums.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_chartmuseums.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_cores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_cores.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_exporters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_exporters.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_harborclusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_harborclusters.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_harbors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_harbors.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_harborserverconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_harborserverconfigurations.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_jobservices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_jobservices.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_notaryservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_notaryservers.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_notarysigners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_notarysigners.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_portals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_portals.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_pullsecretbindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_pullsecretbindings.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_registries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_registries.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_registrycontrollers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_registrycontrollers.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_trivies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/crd/patches/webhook_in_trivies.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_prometheus_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/manager_prometheus_metrics_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhook_namespaceselector_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/webhook_namespaceselector_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/helm/certificate/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/certificate/kustomization.yaml -------------------------------------------------------------------------------- /config/helm/certificate/patch_certificate_dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/certificate/patch_certificate_dns.yaml -------------------------------------------------------------------------------- /config/helm/certificate/patch_certificate_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/certificate/patch_certificate_secret.yaml -------------------------------------------------------------------------------- /config/helm/crds/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/kustomization.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/chartmuseums_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/chartmuseums_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/cores_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/cores_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/exporters_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/exporters_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/harborclusters_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/harborclusters_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/harbors_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/harbors_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/jobservices_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/jobservices_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/notaryservers_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/notaryservers_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/notarysigners_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/notarysigners_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/portals_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/portals_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/registries_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/registries_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/registrycontrollers_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/registrycontrollers_service.yaml -------------------------------------------------------------------------------- /config/helm/crds/patches/trivies_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/crds/patches/trivies_service.yaml -------------------------------------------------------------------------------- /config/helm/deployment/foot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/foot.yaml -------------------------------------------------------------------------------- /config/helm/deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/kustomization.yaml -------------------------------------------------------------------------------- /config/helm/deployment/patch_deployment_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/patch_deployment_config.yaml -------------------------------------------------------------------------------- /config/helm/deployment/patch_deployment_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/patch_deployment_metadata.yaml -------------------------------------------------------------------------------- /config/helm/deployment/patch_deployment_resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/patch_deployment_resources.yaml -------------------------------------------------------------------------------- /config/helm/deployment/patch_deployment_security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/patch_deployment_security.yaml -------------------------------------------------------------------------------- /config/helm/deployment/patch_deployment_webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/deployment/patch_deployment_webhook.yaml -------------------------------------------------------------------------------- /config/helm/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/helm/rbac/patch_leaderelection_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/rbac/patch_leaderelection_binding.yaml -------------------------------------------------------------------------------- /config/helm/rbac/patch_manager_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/rbac/patch_manager_binding.yaml -------------------------------------------------------------------------------- /config/helm/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/helm/webhook/mutatingwebhook_endpoint_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/webhook/mutatingwebhook_endpoint_patch.yaml -------------------------------------------------------------------------------- /config/helm/webhook/validatingwebhook_endpoint_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/helm/webhook/validatingwebhook_endpoint_patch.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/certificate.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/chartmuseum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/chartmuseum.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/core.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/harbor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/harbor.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/harborcluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/harborcluster.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/jobservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/jobservice.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/kustomization.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/notaryserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/notaryserver.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/notarysigner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/notarysigner.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/portal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/portal.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/registry.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/registryctl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/registryctl.yaml -------------------------------------------------------------------------------- /config/kustomizeconfig/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/kustomizeconfig/trivy.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manager/patches-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/manager/patches-configuration.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/harbor_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/harbor_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/harbor_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/harbor_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/harborcluster_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/harborcluster_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/harborcluster_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/harborcluster_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/portal_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/portal_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/portal_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/portal_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/samples/database/init-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/database/init-db.sql -------------------------------------------------------------------------------- /config/samples/database/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/database/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/certificate_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/certificate_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/incluster_cache_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/incluster_cache_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/incluster_database_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/incluster_database_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/incluster_storage_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/incluster_storage_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/resources_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/resources_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-fullstack/spec_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-fullstack/spec_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/goharbor_v1alpha3_harbor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/goharbor_v1alpha3_harbor.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/https.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/https.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/images_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/images_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/service_token_issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/service_token_issuer.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-minimal/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-minimal/storage.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/harbor_chartmuseum_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/harbor_chartmuseum_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/harbor_notary_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/harbor_notary_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/harbor_portal_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/harbor_portal_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/harbor_trivy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/harbor_trivy_patch.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/harborcluster-standard/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/harborcluster-standard/storage.yaml -------------------------------------------------------------------------------- /config/samples/redis/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/samples/redis/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/controller_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/controller_string.go -------------------------------------------------------------------------------- /controllers/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/controllers.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/chartmuseum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/chartmuseum.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/chartmuseum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/chartmuseum_test.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/services.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/chartmuseum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/chartmuseum_test.go -------------------------------------------------------------------------------- /controllers/goharbor/configuration/cm_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/configuration/cm_reconciler.go -------------------------------------------------------------------------------- /controllers/goharbor/configuration/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/configuration/reconciler.go -------------------------------------------------------------------------------- /controllers/goharbor/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/controller_test.go -------------------------------------------------------------------------------- /controllers/goharbor/core/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/core.go -------------------------------------------------------------------------------- /controllers/goharbor/core/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/core_test.go -------------------------------------------------------------------------------- /controllers/goharbor/core/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/core/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/core/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/core/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/secrets.go -------------------------------------------------------------------------------- /controllers/goharbor/core/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/services.go -------------------------------------------------------------------------------- /controllers/goharbor/core/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/core_test.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter/exporter.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter/services.go -------------------------------------------------------------------------------- /controllers/goharbor/exporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/exporter_test.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/chartmuseum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/chartmuseum.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/core.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/exporter.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/github.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/harbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/harbor.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/harbor_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/harbor_suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/harbor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/harbor_test.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/ingresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/ingresses.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/internaltls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/internaltls.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/jobservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/jobservice.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/default-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/default-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/default.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/repository-and-tag-suffix-not-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/repository-and-tag-suffix-not-empty-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/repository-and-tag-suffix-not-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/repository-and-tag-suffix-not-empty.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/repository-not-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/repository-not-empty-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/repository-not-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/repository-not-empty.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/tag-suffix-not-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/tag-suffix-not-empty-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/tag-suffix-not-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/tag-suffix-not-empty.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/version-and-repository-not-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/version-and-repository-not-empty-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/version-and-repository-not-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/version-and-repository-not-empty.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/version-not-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/version-not-empty-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/jobservice/version-not-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/jobservice/version-not-empty.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/default-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/default-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/default.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/expose-core-with-tls-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/expose-core-with-tls-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/expose-core-with-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/expose-core-with-tls.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/github-token-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/github-token-expected.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/manifests/trivy/github-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/manifests/trivy/github-token.yaml -------------------------------------------------------------------------------- /controllers/goharbor/harbor/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/notary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/notary.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/notaryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/notaryserver.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/notarysigner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/notarysigner.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/portal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/portal.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/registry.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/registryctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/registryctl.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/storage.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/trivy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/trivy.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor/trivy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor/trivy_test.go -------------------------------------------------------------------------------- /controllers/goharbor/harbor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harbor_test.go -------------------------------------------------------------------------------- /controllers/goharbor/harborcluster/ctrl_setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborcluster/ctrl_setup.go -------------------------------------------------------------------------------- /controllers/goharbor/harborcluster/harborcluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborcluster/harborcluster.go -------------------------------------------------------------------------------- /controllers/goharbor/harborcluster/service_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborcluster/service_mgr.go -------------------------------------------------------------------------------- /controllers/goharbor/harborcluster/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborcluster/status.go -------------------------------------------------------------------------------- /controllers/goharbor/harborserverconfiguration/harborserverconfiguration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborserverconfiguration/harborserverconfiguration.go -------------------------------------------------------------------------------- /controllers/goharbor/harborserverconfiguration/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/harborserverconfiguration/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/certificate/certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/certificate/certificate.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/client.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/context.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/controllers/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/controllers/controllers.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/harbor-core/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/harbor-core/mock.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/init.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/logger.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/manager.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/pods/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/pods/logs.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/pods/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/pods/pods.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/port-forward/port-forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/port-forward/port-forward.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/postgresql/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/postgresql/postgres.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/random.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/redis/redis.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/status.go -------------------------------------------------------------------------------- /controllers/goharbor/internal/test/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/internal/test/utils.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/jobservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/jobservice.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/jobservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/jobservice_test.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/secrets.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/services.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/jobservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/jobservice_test.go -------------------------------------------------------------------------------- /controllers/goharbor/namespace/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/namespace/namespace.go -------------------------------------------------------------------------------- /controllers/goharbor/namespace/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/namespace/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/notaryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/notaryserver.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/notaryserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/notaryserver_test.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/services.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/notaryserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notaryserver_test.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/notarysigner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/notarysigner.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/notarysigner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/notarysigner_test.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/services.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/notarysigner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/notarysigner_test.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/portal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/portal.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/portal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/portal_test.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/services.go -------------------------------------------------------------------------------- /controllers/goharbor/portal/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/portal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/portal_test.go -------------------------------------------------------------------------------- /controllers/goharbor/project/ctrl_setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/project/ctrl_setup.go -------------------------------------------------------------------------------- /controllers/goharbor/project/harborproject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/project/harborproject.go -------------------------------------------------------------------------------- /controllers/goharbor/project/memberships.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/project/memberships.go -------------------------------------------------------------------------------- /controllers/goharbor/project/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/project/quota.go -------------------------------------------------------------------------------- /controllers/goharbor/pullsecretbinding/pullsecretbinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/pullsecretbinding/pullsecretbinding.go -------------------------------------------------------------------------------- /controllers/goharbor/pullsecretbinding/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/pullsecretbinding/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/registry.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/registry_test.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/registryctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/registryctl.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/services.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/registry/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry/template.go -------------------------------------------------------------------------------- /controllers/goharbor/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/registry_test.go -------------------------------------------------------------------------------- /controllers/goharbor/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/configs.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/deployments.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/networkpolicies.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/resources.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/secrets.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/services.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/suite_test.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/trivy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/trivy.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy/trivy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy/trivy_test.go -------------------------------------------------------------------------------- /controllers/goharbor/trivy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/controllers/goharbor/trivy_test.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CRD/custom-resource-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/CRD/custom-resource-definition.md -------------------------------------------------------------------------------- /docs/LCM/backup-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/backup-data.md -------------------------------------------------------------------------------- /docs/LCM/backup-minio-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/backup-minio-data.md -------------------------------------------------------------------------------- /docs/LCM/backup-psql-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/backup-psql-data.md -------------------------------------------------------------------------------- /docs/LCM/backup-redis-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/backup-redis-data.md -------------------------------------------------------------------------------- /docs/LCM/cluster-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/cluster-controller.md -------------------------------------------------------------------------------- /docs/LCM/cluster-deletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/cluster-deletion.md -------------------------------------------------------------------------------- /docs/LCM/controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/controllers.md -------------------------------------------------------------------------------- /docs/LCM/monitor-logs-with-grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/monitor-logs-with-grafana.md -------------------------------------------------------------------------------- /docs/LCM/upgrade-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/LCM/upgrade-cluster.md -------------------------------------------------------------------------------- /docs/arch/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/arch/arch.md -------------------------------------------------------------------------------- /docs/arch/day2-op.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/arch/day2-op.md -------------------------------------------------------------------------------- /docs/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/certificates.md -------------------------------------------------------------------------------- /docs/configurations/operator-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/configurations/operator-configurations.md -------------------------------------------------------------------------------- /docs/customize-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/customize-images.md -------------------------------------------------------------------------------- /docs/day2/day2-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/day2/day2-configurations.md -------------------------------------------------------------------------------- /docs/day2/day2-harborprojects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/day2/day2-harborprojects.md -------------------------------------------------------------------------------- /docs/day2/day2-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/day2/day2-operations.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/feature-areas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/feature-areas.md -------------------------------------------------------------------------------- /docs/images/arch/day1-operator-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/arch/day1-operator-design.jpg -------------------------------------------------------------------------------- /docs/images/arch/day2-operator-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/arch/day2-operator-design.jpg -------------------------------------------------------------------------------- /docs/images/console/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/console/dashboard.png -------------------------------------------------------------------------------- /docs/images/console/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/console/login.png -------------------------------------------------------------------------------- /docs/images/internal-certificate-overview.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/internal-certificate-overview.pu -------------------------------------------------------------------------------- /docs/images/internal-certificate-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/internal-certificate-overview.svg -------------------------------------------------------------------------------- /docs/images/public-certificate-overview.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/public-certificate-overview.pu -------------------------------------------------------------------------------- /docs/images/public-certificate-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/public-certificate-overview.svg -------------------------------------------------------------------------------- /docs/images/webhook-certificate-overview.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/webhook-certificate-overview.pu -------------------------------------------------------------------------------- /docs/images/webhook-certificate-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/images/webhook-certificate-overview.svg -------------------------------------------------------------------------------- /docs/installation/by-helm-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/by-helm-chart.md -------------------------------------------------------------------------------- /docs/installation/customize-storage-db-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/customize-storage-db-redis.md -------------------------------------------------------------------------------- /docs/installation/enable_minio_console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/enable_minio_console.md -------------------------------------------------------------------------------- /docs/installation/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/installation.md -------------------------------------------------------------------------------- /docs/installation/kind-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/kind-installation.md -------------------------------------------------------------------------------- /docs/installation/kustomization-all-in-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/kustomization-all-in-one.md -------------------------------------------------------------------------------- /docs/installation/kustomization-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/installation/kustomization-custom.md -------------------------------------------------------------------------------- /docs/makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/makefile.md -------------------------------------------------------------------------------- /docs/manifests-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/manifests-reference.md -------------------------------------------------------------------------------- /docs/perf/simple-perf-comprasion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/perf/simple-perf-comprasion.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/main.go -------------------------------------------------------------------------------- /manifests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/README.md -------------------------------------------------------------------------------- /manifests/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/README.md -------------------------------------------------------------------------------- /manifests/cluster/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/deployment.yaml -------------------------------------------------------------------------------- /manifests/cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/kustomization.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/annotations.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/delete-duplicated-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/delete-duplicated-ns.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/delete-minio-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/delete-minio-console.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/github-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/github-token.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/image-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/image-source.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/namespace.yaml -------------------------------------------------------------------------------- /manifests/cluster/patch/pg-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/cluster/patch/pg-configmap.yaml -------------------------------------------------------------------------------- /manifests/commons/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/commons/kustomization.yaml -------------------------------------------------------------------------------- /manifests/commons/patches-image-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/commons/patches-image-source.yaml -------------------------------------------------------------------------------- /manifests/harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/harbor/README.md -------------------------------------------------------------------------------- /manifests/harbor/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/harbor/deployment.yaml -------------------------------------------------------------------------------- /manifests/harbor/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/harbor/kustomization.yaml -------------------------------------------------------------------------------- /manifests/harbor/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/harbor/namespace.yaml -------------------------------------------------------------------------------- /manifests/harbor/patch/image-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/harbor/patch/image-source.yaml -------------------------------------------------------------------------------- /manifests/samples/full_stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/samples/full_stack.yaml -------------------------------------------------------------------------------- /manifests/samples/minimal_stack_fs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/samples/minimal_stack_fs.yaml -------------------------------------------------------------------------------- /manifests/samples/minimal_stack_incluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/samples/minimal_stack_incluster.yaml -------------------------------------------------------------------------------- /manifests/samples/standard_stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/samples/standard_stack.yaml -------------------------------------------------------------------------------- /manifests/samples/standard_stack_fs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/manifests/samples/standard_stack_fs.yaml -------------------------------------------------------------------------------- /pkg/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/builder/builder.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/constants.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/deploy.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/image.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/readiness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/readiness.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/redis.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/redis_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/redis_connect.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/resource_manager.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/update.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/cache/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/cache/utils.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/common/equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/common/equals.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/common/utils.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/api/postgresql_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/api/postgresql_type.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/api/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/api/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/constants.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/generate.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/image.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/postgresql.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/provision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/provision.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/readiness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/readiness.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/status.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/update.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/database/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/database/utils.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/harbor/cr_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/harbor/cr_status.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/harbor/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/harbor/errors.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/harbor/harbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/harbor/harbor.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/client.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/constants.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/image.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/ingress.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/job.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/minio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/minio.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/constants.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/register.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/types.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/minio/apis/minio.min.io/v2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/cluster/controllers/storage/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/controllers/storage/tenant.go -------------------------------------------------------------------------------- /pkg/cluster/gos/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/gos/group.go -------------------------------------------------------------------------------- /pkg/cluster/k8s/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/k8s/dynamic.go -------------------------------------------------------------------------------- /pkg/cluster/k8s/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/k8s/labels.go -------------------------------------------------------------------------------- /pkg/cluster/k8s/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/k8s/option.go -------------------------------------------------------------------------------- /pkg/cluster/lcm/cr_staus_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/lcm/cr_staus_collection.go -------------------------------------------------------------------------------- /pkg/cluster/lcm/lcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/lcm/lcm.go -------------------------------------------------------------------------------- /pkg/cluster/lcm/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/lcm/options.go -------------------------------------------------------------------------------- /pkg/cluster/lcm/property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/lcm/property.go -------------------------------------------------------------------------------- /pkg/cluster/lcm/property_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/cluster/lcm/property_test.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/config_test.go -------------------------------------------------------------------------------- /pkg/config/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/errors.go -------------------------------------------------------------------------------- /pkg/config/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/errors_test.go -------------------------------------------------------------------------------- /pkg/config/harbor/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/harbor/env.go -------------------------------------------------------------------------------- /pkg/config/harbor/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/harbor/error.go -------------------------------------------------------------------------------- /pkg/config/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/suite_test.go -------------------------------------------------------------------------------- /pkg/config/template/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/template/error.go -------------------------------------------------------------------------------- /pkg/config/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/config/template/template.go -------------------------------------------------------------------------------- /pkg/controller/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/apply.go -------------------------------------------------------------------------------- /pkg/controller/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/common.go -------------------------------------------------------------------------------- /pkg/controller/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/config.go -------------------------------------------------------------------------------- /pkg/controller/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/context.go -------------------------------------------------------------------------------- /pkg/controller/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/errors.go -------------------------------------------------------------------------------- /pkg/controller/errors/retrylater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/errors/retrylater.go -------------------------------------------------------------------------------- /pkg/controller/errors/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/errors/types.go -------------------------------------------------------------------------------- /pkg/controller/errors/unrecoverrable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/errors/unrecoverrable.go -------------------------------------------------------------------------------- /pkg/controller/garbagecollector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/garbagecollector.go -------------------------------------------------------------------------------- /pkg/controller/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/helpers.go -------------------------------------------------------------------------------- /pkg/controller/internal/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/internal/graph/graph.go -------------------------------------------------------------------------------- /pkg/controller/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation.go -------------------------------------------------------------------------------- /pkg/controller/mutation/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/annotations.go -------------------------------------------------------------------------------- /pkg/controller/mutation/annotations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/annotations_test.go -------------------------------------------------------------------------------- /pkg/controller/mutation/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/labels.go -------------------------------------------------------------------------------- /pkg/controller/mutation/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/labels_test.go -------------------------------------------------------------------------------- /pkg/controller/mutation/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/meta.go -------------------------------------------------------------------------------- /pkg/controller/mutation/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/noop.go -------------------------------------------------------------------------------- /pkg/controller/mutation/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/owner.go -------------------------------------------------------------------------------- /pkg/controller/mutation/owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/owner_test.go -------------------------------------------------------------------------------- /pkg/controller/mutation/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/mutation/suite_test.go -------------------------------------------------------------------------------- /pkg/controller/opentracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/opentracing.go -------------------------------------------------------------------------------- /pkg/controller/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/ready.go -------------------------------------------------------------------------------- /pkg/controller/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/resource.go -------------------------------------------------------------------------------- /pkg/controller/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/resource_test.go -------------------------------------------------------------------------------- /pkg/controller/secret-format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/secret-format.go -------------------------------------------------------------------------------- /pkg/controller/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/status.go -------------------------------------------------------------------------------- /pkg/controller/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/suite_test.go -------------------------------------------------------------------------------- /pkg/controller/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/template.go -------------------------------------------------------------------------------- /pkg/controller/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/controller/types.go -------------------------------------------------------------------------------- /pkg/convert/unstructed_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/convert/unstructed_conversion.go -------------------------------------------------------------------------------- /pkg/event-filter/class/class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/event-filter/class/class.go -------------------------------------------------------------------------------- /pkg/event-filter/class/class_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/event-filter/class/class_test.go -------------------------------------------------------------------------------- /pkg/event-filter/class/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/event-filter/class/suite_test.go -------------------------------------------------------------------------------- /pkg/exit/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/exit/exit.go -------------------------------------------------------------------------------- /pkg/factories/application/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/factories/application/application.go -------------------------------------------------------------------------------- /pkg/factories/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/factories/logger/logger.go -------------------------------------------------------------------------------- /pkg/factories/owner/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/factories/owner/owner.go -------------------------------------------------------------------------------- /pkg/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/graph.go -------------------------------------------------------------------------------- /pkg/graph/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/graph_test.go -------------------------------------------------------------------------------- /pkg/graph/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/node.go -------------------------------------------------------------------------------- /pkg/graph/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/runner.go -------------------------------------------------------------------------------- /pkg/graph/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/runner_test.go -------------------------------------------------------------------------------- /pkg/graph/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/suite_test.go -------------------------------------------------------------------------------- /pkg/graph/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/types.go -------------------------------------------------------------------------------- /pkg/graph/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/graph/types_test.go -------------------------------------------------------------------------------- /pkg/image/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/image/components.go -------------------------------------------------------------------------------- /pkg/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/image/image.go -------------------------------------------------------------------------------- /pkg/image/image_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/image/image_suite_test.go -------------------------------------------------------------------------------- /pkg/image/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/image/image_test.go -------------------------------------------------------------------------------- /pkg/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/manager/manager.go -------------------------------------------------------------------------------- /pkg/registry/secret/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/registry/secret/object.go -------------------------------------------------------------------------------- /pkg/resources/checksum/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/checksum/checksum.go -------------------------------------------------------------------------------- /pkg/resources/checksum/checksum_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/checksum/checksum_suite_test.go -------------------------------------------------------------------------------- /pkg/resources/checksum/checksum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/checksum/checksum_test.go -------------------------------------------------------------------------------- /pkg/resources/mutable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/mutable.go -------------------------------------------------------------------------------- /pkg/resources/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/resources.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/basic.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/basic_test.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/certificate.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/certificate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/certificate_test.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/secret.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/suite_test.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/true.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/true.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/unstructured.go -------------------------------------------------------------------------------- /pkg/resources/statuscheck/unstructured_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/resources/statuscheck/unstructured_test.go -------------------------------------------------------------------------------- /pkg/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rest/client.go -------------------------------------------------------------------------------- /pkg/rest/model/harbor_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rest/model/harbor_server.go -------------------------------------------------------------------------------- /pkg/rest/v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rest/v2/client.go -------------------------------------------------------------------------------- /pkg/rest/v2/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rest/v2/project.go -------------------------------------------------------------------------------- /pkg/rule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rule/rule.go -------------------------------------------------------------------------------- /pkg/rule/rule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/rule/rule_test.go -------------------------------------------------------------------------------- /pkg/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/scheme/scheme.go -------------------------------------------------------------------------------- /pkg/scheme/scheme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/scheme/scheme_test.go -------------------------------------------------------------------------------- /pkg/scheme/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/scheme/suite_test.go -------------------------------------------------------------------------------- /pkg/setup/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/setup/controllers.go -------------------------------------------------------------------------------- /pkg/setup/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/setup/logger.go -------------------------------------------------------------------------------- /pkg/setup/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/setup/setup.go -------------------------------------------------------------------------------- /pkg/setup/webhooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/setup/webhooks.go -------------------------------------------------------------------------------- /pkg/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/status/status.go -------------------------------------------------------------------------------- /pkg/status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/status/status_test.go -------------------------------------------------------------------------------- /pkg/status/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/status/suite_test.go -------------------------------------------------------------------------------- /pkg/template/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/template/generic.go -------------------------------------------------------------------------------- /pkg/template/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/template/secret.go -------------------------------------------------------------------------------- /pkg/tracing/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/tracing/suite_test.go -------------------------------------------------------------------------------- /pkg/tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/tracing/tracing.go -------------------------------------------------------------------------------- /pkg/tracing/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/tracing/tracing_test.go -------------------------------------------------------------------------------- /pkg/utils/consts/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/utils/consts/annotations.go -------------------------------------------------------------------------------- /pkg/utils/strings/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/utils/strings/name.go -------------------------------------------------------------------------------- /pkg/utils/strings/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/utils/strings/strings.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/version/version_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/version/version_suite_test.go -------------------------------------------------------------------------------- /pkg/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkg/version/version_test.go -------------------------------------------------------------------------------- /pkged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/pkged.go -------------------------------------------------------------------------------- /webhooks/harborserverconfiguration/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/webhooks/harborserverconfiguration/webhook.go -------------------------------------------------------------------------------- /webhooks/pod/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/webhooks/pod/containers.go -------------------------------------------------------------------------------- /webhooks/pod/containers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/webhooks/pod/containers_test.go -------------------------------------------------------------------------------- /webhooks/pod/mutate_image_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goharbor/harbor-operator/HEAD/webhooks/pod/mutate_image_path.go --------------------------------------------------------------------------------