├── .circleci └── config.yml ├── .codeclimate.yml ├── .dockerignore ├── .github ├── CODEOWNERS └── workflows │ ├── fast-forward-branch.yaml │ ├── lint.yml │ └── tagRelease.yml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── NOTICE ├── PROJECT ├── README.md ├── apis ├── apps │ ├── common.go │ └── v1alpha1 │ │ ├── apimanager_types.go │ │ ├── apimanager_types_test.go │ │ ├── apimanagerbackup_types.go │ │ ├── apimanagerrestore_types.go │ │ ├── groupversion_info.go │ │ └── zz_generated.deepcopy.go └── capabilities │ ├── v1alpha1 │ ├── groupversion_info.go │ ├── tenant_types.go │ └── zz_generated.deepcopy.go │ └── v1beta1 │ ├── activedoc_types.go │ ├── application_types.go │ ├── applicationauth_types.go │ ├── backend_types.go │ ├── custompolicydefinition_types.go │ ├── developeraccount_types.go │ ├── developeruser_types.go │ ├── groupversion_info.go │ ├── openapi_types.go │ ├── product_types.go │ ├── product_types_test.go │ ├── proxyconfigpromote_types.go │ └── zz_generated.deepcopy.go ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── 3scale-operator.clusterserviceversion.yaml │ ├── apps.3scale.net_apimanagerbackups.yaml │ ├── apps.3scale.net_apimanagerrestores.yaml │ ├── apps.3scale.net_apimanagers.yaml │ ├── capabilities.3scale.net_activedocs.yaml │ ├── capabilities.3scale.net_applicationauths.yaml │ ├── capabilities.3scale.net_applications.yaml │ ├── capabilities.3scale.net_backends.yaml │ ├── capabilities.3scale.net_custompolicydefinitions.yaml │ ├── capabilities.3scale.net_developeraccounts.yaml │ ├── capabilities.3scale.net_developerusers.yaml │ ├── capabilities.3scale.net_openapis.yaml │ ├── capabilities.3scale.net_products.yaml │ ├── capabilities.3scale.net_proxyconfigpromotes.yaml │ ├── capabilities.3scale.net_tenants.yaml │ ├── threescale-operator-controller-manager-metrics-monitor_monitoring.coreos.com_v1_servicemonitor.yaml │ └── threescale-operator-controller-manager-metrics-service_v1_service.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── apps.3scale.net_apimanagerbackups.yaml │ │ ├── apps.3scale.net_apimanagerrestores.yaml │ │ ├── apps.3scale.net_apimanagers.yaml │ │ ├── capabilities.3scale.net_activedocs.yaml │ │ ├── capabilities.3scale.net_applicationauths.yaml │ │ ├── capabilities.3scale.net_applications.yaml │ │ ├── capabilities.3scale.net_backends.yaml │ │ ├── capabilities.3scale.net_custompolicydefinitions.yaml │ │ ├── capabilities.3scale.net_developeraccounts.yaml │ │ ├── capabilities.3scale.net_developerusers.yaml │ │ ├── capabilities.3scale.net_openapis.yaml │ │ ├── capabilities.3scale.net_products.yaml │ │ ├── capabilities.3scale.net_proxyconfigpromotes.yaml │ │ └── capabilities.3scale.net_tenants.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── activedocopenapiref_openapi_validation_in_activedocs.yaml │ │ ├── cainjection_in_activedocs.yaml │ │ ├── cainjection_in_apimanagerbackups.yaml │ │ ├── cainjection_in_apimanagerrestores.yaml │ │ ├── cainjection_in_apimanagers.yaml │ │ ├── cainjection_in_applicationauths.yaml │ │ ├── cainjection_in_applications.yaml │ │ ├── cainjection_in_backends.yaml │ │ ├── cainjection_in_custompolicydefinitions.yaml │ │ ├── cainjection_in_developeraccounts.yaml │ │ ├── cainjection_in_developerusers.yaml │ │ ├── cainjection_in_openapis.yaml │ │ ├── cainjection_in_products.yaml │ │ ├── cainjection_in_proxyconfigpromotes.yaml │ │ ├── cainjection_in_tenants.yaml │ │ ├── openapiref_openapi_validation_in_openapis.yaml │ │ ├── product_authentication_openapi_validation_in_products.yaml │ │ ├── product_deployment_openapi_validation_in_products.yaml │ │ ├── webhook_in_activedocs.yaml │ │ ├── webhook_in_apimanagerbackups.yaml │ │ ├── webhook_in_apimanagerrestores.yaml │ │ ├── webhook_in_apimanagers.yaml │ │ ├── webhook_in_applicationauths.yaml │ │ ├── webhook_in_applications.yaml │ │ ├── webhook_in_backends.yaml │ │ ├── webhook_in_custompolicydefinitions.yaml │ │ ├── webhook_in_developeraccounts.yaml │ │ ├── webhook_in_developerusers.yaml │ │ ├── webhook_in_openapis.yaml │ │ ├── webhook_in_products.yaml │ │ ├── webhook_in_proxyconfigpromotes.yaml │ │ └── webhook_in_tenants.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_metrics_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── dev-databases │ ├── backend-redis │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ ├── system-mysql │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ ├── system-postgresql │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── system-redis │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml ├── jaeger │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml ├── manager │ ├── kustomization.yaml │ ├── manager.yaml │ ├── metrics_service.yaml │ └── service_account.yaml ├── manifests │ ├── bases │ │ └── 3scale-operator.clusterserviceversion.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── activedoc_editor_role.yaml │ ├── activedoc_viewer_role.yaml │ ├── apimanager_editor_role.yaml │ ├── apimanager_viewer_role.yaml │ ├── apimanagerbackup_editor_role.yaml │ ├── apimanagerbackup_viewer_role.yaml │ ├── apimanagerrestore_editor_role.yaml │ ├── apimanagerrestore_viewer_role.yaml │ ├── application_editor_role.yaml │ ├── application_viewer_role.yaml │ ├── applicationauth_editor_role.yaml │ ├── applicationauth_viewer_role.yaml │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── backend_editor_role.yaml │ ├── backend_viewer_role.yaml │ ├── clusterrole_binding.yaml │ ├── custompolicydefinition_editor_role.yaml │ ├── custompolicydefinition_viewer_role.yaml │ ├── developeraccount_editor_role.yaml │ ├── developeraccount_viewer_role.yaml │ ├── developeruser_editor_role.yaml │ ├── developeruser_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── openapi_editor_role.yaml │ ├── openapi_viewer_role.yaml │ ├── product_editor_role.yaml │ ├── product_viewer_role.yaml │ ├── proxyconfigpromote_editor_role.yaml │ ├── proxyconfigpromote_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ ├── tenant_editor_role.yaml │ └── tenant_viewer_role.yaml ├── requirements │ └── operator-requirements.yaml ├── samples │ ├── apps_v1alpha1_apimanager_simple.yaml │ ├── apps_v1alpha1_apimanagerbackup.yaml │ ├── apps_v1alpha1_apimanagerrestore.yaml │ ├── capabilities_v1alpha1_tenant.yaml │ ├── capabilities_v1beta1_activedoc_url.yaml │ ├── capabilities_v1beta1_application.yaml │ ├── capabilities_v1beta1_applicationauth.yaml │ ├── capabilities_v1beta1_backend.yaml │ ├── capabilities_v1beta1_custompolicydefinition.yaml │ ├── capabilities_v1beta1_developeraccount.yaml │ ├── capabilities_v1beta1_developeruser_admin.yaml │ ├── capabilities_v1beta1_openapi_url.yaml │ ├── capabilities_v1beta1_product.yaml │ ├── capabilities_v1beta1_proxyconfigpromote.yaml │ └── kustomization.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── service.yaml ├── controllers ├── apps │ ├── apimanager_controller.go │ ├── apimanager_controller_test.go │ ├── apimanager_status_reconciler.go │ ├── apimanager_suite_test.go │ ├── apimanagerbackup_controller.go │ ├── apimanagerbackup_logic_reconciler.go │ ├── apimanagerrestore_controller.go │ ├── apimanagerrestore_logic_reconciler.go │ ├── config_map_requirements_to_apimanager_event_mapper.go │ ├── secret_to_apimanager_event_mapper.go │ └── webconsole_controller.go ├── capabilities │ ├── activedoc_controller.go │ ├── activedoc_status_reconciler.go │ ├── activedoc_threescale_reconciler.go │ ├── application_controller.go │ ├── application_controller_test.go │ ├── application_plan_reconciler.go │ ├── application_plans.go │ ├── application_status_reconciler.go │ ├── application_status_reconciler_test.go │ ├── application_threescale_reconciler.go │ ├── application_threescale_reconciler_test.go │ ├── applicationauth_controller.go │ ├── applicationauth_controller_test.go │ ├── applicationauth_status_reconciler.go │ ├── applicationauth_status_reconciler_test.go │ ├── backend_controller.go │ ├── backend_status_reconciler.go │ ├── backend_threescale_reconciler.go │ ├── backend_usages.go │ ├── custompolicydefinition_controller.go │ ├── custompolicydefinition_status_reconciler.go │ ├── custompolicydefinition_threescale_reconciler.go │ ├── developeraccount_controller.go │ ├── developeraccount_status_reconciler.go │ ├── developeraccount_threescale_reconciler.go │ ├── developeruser_controller.go │ ├── developeruser_status_reconciler.go │ ├── developeruser_threescale_reconciler.go │ ├── mapping_rules.go │ ├── methods.go │ ├── metrics.go │ ├── mocks │ │ ├── application_api_handler.go │ │ └── error.go │ ├── openapi_backend_reconciler.go │ ├── openapi_controller.go │ ├── openapi_controller_test.go │ ├── openapi_product_reconciler.go │ ├── openapi_product_reconciler_test.go │ ├── openapi_status_reconciler.go │ ├── product.go │ ├── product_controller.go │ ├── product_oidc.go │ ├── product_policies.go │ ├── product_policies_test.go │ ├── product_status_reconciler.go │ ├── product_threescale_reconciler.go │ ├── proxy.go │ ├── proxyconfigpromote_controller.go │ ├── proxyconfigpromote_controller_test.go │ ├── proxyconfigpromote_status_reconciler.go │ ├── proxyconfigpromote_status_reconciler_test.go │ ├── secret_to_openapi_event_mapper.go │ ├── tenant_controller.go │ ├── tenant_status_reconciler.go │ └── tenant_threescale_reconciler.go └── subscription │ ├── csvlocator │ └── csvlocator.go │ └── subscription_controller.go ├── doc ├── 3scale-diagram.dia ├── 3scale-diagram.png ├── activedoc-reference.md ├── adding-apicast-custom-environments.md ├── adding-custom-policies.md ├── apicast-enabling-tls-at-pod-level.md ├── apimanager-reference.md ├── apimanagerbackup-reference.md ├── apimanagerrestore-reference.md ├── application-reference.md ├── applicationauth-reference.md ├── backend-reference.md ├── capabilities-diagram.dia ├── capabilities-diagram.png ├── community-release-build.md ├── cr_samples │ ├── activedoc │ │ └── capabilities_v1beta1_activedoc_secret.yaml │ ├── apimanager │ │ ├── apps_v1alpha1_apimanager_apicast_custom_environment.yaml │ │ ├── apps_v1alpha1_apimanager_apicast_custom_policy.yaml │ │ ├── apps_v1alpha1_apimanager_devlatest.yaml │ │ ├── apps_v1alpha1_apimanager_external_components.yaml │ │ ├── apps_v1alpha1_apimanager_monitoring.yaml │ │ ├── apps_v1alpha1_apimanager_pdb.yaml │ │ └── apps_v1alpha1_apimanager_s3.yaml │ ├── developeruser │ │ └── capabilities_v1beta1_developeruser_member.yaml │ ├── openapi │ │ └── capabilities_v1beta1_openapi_secret.yaml │ └── product │ │ ├── capabilities_v1beta1_product_apicast_hosted.yaml │ │ ├── capabilities_v1beta1_product_apicast_selfmanaged.yaml │ │ ├── capabilities_v1beta1_product_gateway_response.yaml │ │ ├── capabilities_v1beta1_product_mappingrules.yaml │ │ ├── capabilities_v1beta1_product_oidc.yaml │ │ ├── capabilities_v1beta1_product_plan_limits.yaml │ │ ├── capabilities_v1beta1_product_plan_pricingrules.yaml │ │ └── capabilities_v1beta1_product_policies.yaml ├── custompolicydefinition-reference.md ├── dependency_decisions.yml ├── developeraccount-reference.md ├── developeruser-reference.md ├── development.md ├── gateway-instrumentation.md ├── monitoring-stack-deployment │ ├── 3scale-scrape-configs.yaml │ ├── README.md │ ├── datasource-v4.yaml │ ├── datasource-v5.yaml │ ├── grafana-v4.yaml │ ├── grafana-v5.yaml │ └── prometheus.yaml ├── openapi-3scale-extensions.md ├── openapi-reference.md ├── openapi-user-guide.md ├── operator-application-capabilities.md ├── operator-backup-and-restore.md ├── operator-monitoring-resources.md ├── operator-user-guide.md ├── product-reference.md ├── prometheusrules │ ├── README.md │ ├── apicast.yaml │ ├── backend-listener.yaml │ ├── backend-worker.yaml │ ├── system-app.yaml │ ├── system-sidekiq.yaml │ ├── threescale-kube-state-metrics-pre49.yaml │ ├── threescale-kube-state-metrics.yaml │ ├── zync-que.yaml │ └── zync.yaml ├── proxyConfigPromote-reference.md ├── quickstart-guide.md ├── redis-sentinel-tls.md └── tenant-reference.md ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── licenses.xml ├── main.go ├── make └── jaeger.mk ├── pkg ├── 3scale │ └── amp │ │ ├── .gitignore │ │ ├── cmd │ │ ├── prometheusrules.go │ │ └── root.go │ │ ├── component │ │ ├── ampimages.go │ │ ├── ampimages_options.go │ │ ├── apicast.go │ │ ├── apicast_monitoring.go │ │ ├── apicast_options.go │ │ ├── backend.go │ │ ├── backend_monitoring.go │ │ ├── backend_options.go │ │ ├── deployment_annotations.go │ │ ├── deployments_lister.go │ │ ├── generic_monitoring.go │ │ ├── hash_secret.go │ │ ├── highavailability.go │ │ ├── highavailability_options.go │ │ ├── hpa.go │ │ ├── images.go │ │ ├── memcached.go │ │ ├── memcached_options.go │ │ ├── pod_disruption_budget.go │ │ ├── system.go │ │ ├── system_monitoring.go │ │ ├── system_options.go │ │ ├── system_searchd.go │ │ ├── system_searchd_options.go │ │ ├── zync.go │ │ ├── zync_monitoring.go │ │ └── zync_options.go │ │ ├── main.go │ │ ├── operator │ │ ├── ampimages_options_provider.go │ │ ├── ampimages_options_provider_test.go │ │ ├── ampimages_reconciler.go │ │ ├── ampimages_reconciler_test.go │ │ ├── apicast_options_provider.go │ │ ├── apicast_options_provider_test.go │ │ ├── apicast_reconciler.go │ │ ├── apicast_reconciler_test.go │ │ ├── apimanager_utils.go │ │ ├── backend_options_provider.go │ │ ├── backend_options_provider_test.go │ │ ├── backend_reconciler.go │ │ ├── backend_reconciler_test.go │ │ ├── base_apimanager_logic_reconciler.go │ │ ├── base_apimanager_logic_reconciler_test.go │ │ ├── dependency_reconciler.go │ │ ├── generic_monitoring_reconciler.go │ │ ├── helper_test.go │ │ ├── highavailability_options_provider.go │ │ ├── highavailability_options_provider_test.go │ │ ├── highavailability_reconciler.go │ │ ├── highavailability_reconciler_test.go │ │ ├── images.go │ │ ├── images_test.go │ │ ├── memcached_options_provider.go │ │ ├── memcached_options_provider_test.go │ │ ├── memcached_reconciler.go │ │ ├── memcached_reconciler_test.go │ │ ├── system_options_provider.go │ │ ├── system_options_provider_test.go │ │ ├── system_reconciler.go │ │ ├── system_reconciler_test.go │ │ ├── system_searchd_options_provider.go │ │ ├── system_searchd_options_provider_test.go │ │ ├── system_searchd_reconciler.go │ │ ├── system_searchd_reconciler_test.go │ │ ├── zync_options_provider.go │ │ ├── zync_options_provider_test.go │ │ ├── zync_reconciler.go │ │ └── zync_reconciler_test.go │ │ └── prometheusrules │ │ ├── apicast_rules.go │ │ ├── backend_listener_rules.go │ │ ├── backend_worker_rules.go │ │ ├── factory.go │ │ ├── kube_state_metrics_rules.go │ │ ├── system_app_rules.go │ │ ├── system_sidekiq_rules.go │ │ ├── zync_que_rules.go │ │ └── zync_rules.go ├── apispkg │ ├── common │ │ ├── status_conditions.go │ │ ├── version_compare.go │ │ └── version_compare_test.go │ └── helper │ │ └── email.go ├── assets │ ├── assets.go │ ├── assets │ │ └── monitoring │ │ │ ├── apicast-grafana-dashboard-1.json.tpl │ │ │ ├── apicast-grafana-dashboard-2.json.tpl │ │ │ ├── backend-grafana-dashboard-1.json.tpl │ │ │ ├── kubernetes-resources-by-namespace-grafana-dashboard-1.json.tpl │ │ │ ├── kubernetes-resources-by-pod-grafana-dashboard-1.json.tpl │ │ │ ├── system-grafana-dashboard-1.json.tpl │ │ │ └── zync-grafana-dashboard-1.json.tpl │ └── bindata.go ├── backup │ ├── apimanager_backup.go │ ├── apimanager_backup_options.go │ ├── apimanager_backup_options_provider.go │ └── apimanager_backup_pvc_options.go ├── controller │ └── helper │ │ ├── application_entity.go │ │ ├── application_plan_entity.go │ │ ├── application_plan_entity_test.go │ │ ├── backend_list.go │ │ ├── backend_list_test.go │ │ ├── backendapi_entity.go │ │ ├── backendapi_entity_test.go │ │ ├── backendapi_remote_index.go │ │ ├── backendapi_remote_index_test.go │ │ ├── developeruser.go │ │ ├── developeruser_test.go │ │ ├── helper_test.go │ │ ├── lookup_provider_account.go │ │ ├── lookup_provider_account_test.go │ │ ├── product_entity.go │ │ ├── product_entity_test.go │ │ ├── product_list.go │ │ ├── product_list_test.go │ │ ├── shared.go │ │ ├── tenant.go │ │ ├── threescale_api.go │ │ ├── threescale_api_test.go │ │ ├── url.go │ │ └── url_test.go ├── crypto │ └── rand │ │ └── rand.go ├── handlers │ ├── apimanager_managed_routes_event_mapper.go │ └── apimanager_managed_routes_event_mapper_test.go ├── helper │ ├── annotations.go │ ├── boolean_utils.go │ ├── cache.go │ ├── container_port_utils.go │ ├── deployment.go │ ├── envvarutils.go │ ├── envvarutils_test.go │ ├── errors.go │ ├── helper.go │ ├── job.go │ ├── k8s.go │ ├── kubernetes_types.go │ ├── labels.go │ ├── loghttp.go │ ├── maputils.go │ ├── object_meta_merger.go │ ├── openapi_utils.go │ ├── openshift.go │ ├── podHelper.go │ ├── pointer_utils.go │ ├── reconcile_error_handler.go │ ├── redis_database_version.go │ ├── redis_database_version_helper.go │ ├── redis_database_version_test.go │ ├── requirements_common_helper.go │ ├── requirements_common_helper_test.go │ ├── route.go │ ├── runtime_object.go │ ├── secretutils.go │ ├── secretutils_test.go │ ├── slice_string_utils.go │ ├── slice_string_utils_test.go │ ├── system_database_helper.go │ ├── system_database_versions.go │ ├── task_runner.go │ ├── volume_utils.go │ ├── volumemount_utils.go │ └── webconsole.go ├── reconcilers │ ├── base_reconciler.go │ ├── base_reconciler_test.go │ ├── configmap.go │ ├── configmap_test.go │ ├── deployment.go │ ├── deployment_test.go │ ├── grafanadashboards.go │ ├── grafanadashboards_test.go │ ├── hpa.go │ ├── hpa_test.go │ ├── pod_disruption_budget.go │ ├── pod_disruption_budget_test.go │ ├── pod_monitors.go │ ├── pod_monitors_test.go │ ├── prometheus_rules.go │ ├── prometheus_rules_test.go │ ├── role.go │ ├── role_test.go │ ├── secret.go │ ├── secret_test.go │ ├── service.go │ ├── serviceaccount.go │ └── serviceaccount_test.go └── restore │ ├── apimanager_restore.go │ ├── apimanager_restore_options.go │ ├── apimanager_restore_options_provider.go │ ├── apimanager_restore_pvc_options.go │ └── runtime_apimanager_restore_info.go ├── test ├── crds │ └── crd_validation_test.go ├── manifests-version │ └── deployment_version_test.go └── unitcontrollers │ └── apimanager_controller_test.go └── version └── version.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/fast-forward-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.github/workflows/fast-forward-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tagRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.github/workflows/tagRelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/NOTICE -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/README.md -------------------------------------------------------------------------------- /apis/apps/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/common.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/apimanager_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/apimanager_types.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/apimanager_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/apimanager_types_test.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/apimanagerbackup_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/apimanagerbackup_types.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/apimanagerrestore_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/apimanagerrestore_types.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /apis/apps/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/apps/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/capabilities/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /apis/capabilities/v1alpha1/tenant_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1alpha1/tenant_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/activedoc_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/activedoc_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/application_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/application_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/applicationauth_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/applicationauth_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/backend_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/backend_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/custompolicydefinition_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/custompolicydefinition_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/developeraccount_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/developeraccount_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/developeruser_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/developeruser_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/openapi_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/openapi_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/product_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/product_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/product_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/product_types_test.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/proxyconfigpromote_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/proxyconfigpromote_types.go -------------------------------------------------------------------------------- /apis/capabilities/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/apis/capabilities/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/3scale-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/3scale-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/apps.3scale.net_apimanagerbackups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/apps.3scale.net_apimanagerbackups.yaml -------------------------------------------------------------------------------- /bundle/manifests/apps.3scale.net_apimanagerrestores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/apps.3scale.net_apimanagerrestores.yaml -------------------------------------------------------------------------------- /bundle/manifests/apps.3scale.net_apimanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/apps.3scale.net_apimanagers.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_activedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_activedocs.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_applicationauths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_applicationauths.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_applications.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_backends.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_custompolicydefinitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_custompolicydefinitions.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_developeraccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_developeraccounts.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_developerusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_developerusers.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_openapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_openapis.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_products.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_proxyconfigpromotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_proxyconfigpromotes.yaml -------------------------------------------------------------------------------- /bundle/manifests/capabilities.3scale.net_tenants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/capabilities.3scale.net_tenants.yaml -------------------------------------------------------------------------------- /bundle/manifests/threescale-operator-controller-manager-metrics-monitor_monitoring.coreos.com_v1_servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/threescale-operator-controller-manager-metrics-monitor_monitoring.coreos.com_v1_servicemonitor.yaml -------------------------------------------------------------------------------- /bundle/manifests/threescale-operator-controller-manager-metrics-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/manifests/threescale-operator-controller-manager-metrics-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/apps.3scale.net_apimanagerbackups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/apps.3scale.net_apimanagerbackups.yaml -------------------------------------------------------------------------------- /config/crd/bases/apps.3scale.net_apimanagerrestores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/apps.3scale.net_apimanagerrestores.yaml -------------------------------------------------------------------------------- /config/crd/bases/apps.3scale.net_apimanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/apps.3scale.net_apimanagers.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_activedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_activedocs.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_applicationauths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_applicationauths.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_applications.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_backends.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_custompolicydefinitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_custompolicydefinitions.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_developeraccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_developeraccounts.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_developerusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_developerusers.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_openapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_openapis.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_products.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_proxyconfigpromotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_proxyconfigpromotes.yaml -------------------------------------------------------------------------------- /config/crd/bases/capabilities.3scale.net_tenants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/bases/capabilities.3scale.net_tenants.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/activedocopenapiref_openapi_validation_in_activedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/activedocopenapiref_openapi_validation_in_activedocs.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_activedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_activedocs.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_apimanagerbackups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_apimanagerbackups.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_apimanagerrestores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_apimanagerrestores.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_apimanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_apimanagers.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_applicationauths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_applicationauths.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_applications.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_backends.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_custompolicydefinitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_custompolicydefinitions.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_developeraccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_developeraccounts.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_developerusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_developerusers.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_openapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_openapis.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_products.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_proxyconfigpromotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_proxyconfigpromotes.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_tenants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/cainjection_in_tenants.yaml -------------------------------------------------------------------------------- /config/crd/patches/openapiref_openapi_validation_in_openapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/openapiref_openapi_validation_in_openapis.yaml -------------------------------------------------------------------------------- /config/crd/patches/product_authentication_openapi_validation_in_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/product_authentication_openapi_validation_in_products.yaml -------------------------------------------------------------------------------- /config/crd/patches/product_deployment_openapi_validation_in_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/product_deployment_openapi_validation_in_products.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_activedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_activedocs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_apimanagerbackups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_apimanagerbackups.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_apimanagerrestores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_apimanagerrestores.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_apimanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_apimanagers.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_applicationauths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_applicationauths.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_applications.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_backends.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_custompolicydefinitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_custompolicydefinitions.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_developeraccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_developeraccounts.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_developerusers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_developerusers.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_openapis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_openapis.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_products.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_proxyconfigpromotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_proxyconfigpromotes.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_tenants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/crd/patches/webhook_in_tenants.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/default/manager_metrics_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/dev-databases/backend-redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/backend-redis/deployment.yaml -------------------------------------------------------------------------------- /config/dev-databases/backend-redis/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/backend-redis/kustomization.yaml -------------------------------------------------------------------------------- /config/dev-databases/backend-redis/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/backend-redis/pvc.yaml -------------------------------------------------------------------------------- /config/dev-databases/backend-redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/backend-redis/secret.yaml -------------------------------------------------------------------------------- /config/dev-databases/backend-redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/backend-redis/service.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-mysql/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-mysql/deployment.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-mysql/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-mysql/kustomization.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-mysql/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-mysql/pvc.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-mysql/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-mysql/secret.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-mysql/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-mysql/service.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-postgresql/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-postgresql/deployment.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-postgresql/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-postgresql/kustomization.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-postgresql/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-postgresql/pvc.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-postgresql/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-postgresql/secret.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-postgresql/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-postgresql/service.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-redis/deployment.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-redis/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-redis/kustomization.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-redis/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-redis/pvc.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-redis/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-redis/secret.yaml -------------------------------------------------------------------------------- /config/dev-databases/system-redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/dev-databases/system-redis/service.yaml -------------------------------------------------------------------------------- /config/jaeger/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/jaeger/deployment.yaml -------------------------------------------------------------------------------- /config/jaeger/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/jaeger/kustomization.yaml -------------------------------------------------------------------------------- /config/jaeger/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/jaeger/service.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manager/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manager/metrics_service.yaml -------------------------------------------------------------------------------- /config/manager/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manager/service_account.yaml -------------------------------------------------------------------------------- /config/manifests/bases/3scale-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manifests/bases/3scale-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/activedoc_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/activedoc_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/activedoc_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/activedoc_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanager_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanager_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanager_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanager_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanagerbackup_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanagerbackup_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanagerbackup_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanagerbackup_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanagerrestore_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanagerrestore_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/apimanagerrestore_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/apimanagerrestore_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/application_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/application_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/application_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/application_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/applicationauth_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/applicationauth_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/applicationauth_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/applicationauth_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/backend_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/backend_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/backend_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/backend_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/clusterrole_binding.yaml -------------------------------------------------------------------------------- /config/rbac/custompolicydefinition_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/custompolicydefinition_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/custompolicydefinition_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/custompolicydefinition_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/developeraccount_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/developeraccount_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/developeraccount_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/developeraccount_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/developeruser_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/developeruser_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/developeruser_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/developeruser_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/openapi_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/openapi_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/openapi_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/openapi_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/product_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/product_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/product_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/product_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/proxyconfigpromote_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/proxyconfigpromote_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/proxyconfigpromote_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/proxyconfigpromote_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/tenant_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/tenant_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/tenant_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/rbac/tenant_viewer_role.yaml -------------------------------------------------------------------------------- /config/requirements/operator-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/requirements/operator-requirements.yaml -------------------------------------------------------------------------------- /config/samples/apps_v1alpha1_apimanager_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/apps_v1alpha1_apimanager_simple.yaml -------------------------------------------------------------------------------- /config/samples/apps_v1alpha1_apimanagerbackup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/apps_v1alpha1_apimanagerbackup.yaml -------------------------------------------------------------------------------- /config/samples/apps_v1alpha1_apimanagerrestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/apps_v1alpha1_apimanagerrestore.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1alpha1_tenant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1alpha1_tenant.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_activedoc_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_activedoc_url.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_application.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_applicationauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_applicationauth.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_backend.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_custompolicydefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_custompolicydefinition.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_developeraccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_developeraccount.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_developeruser_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_developeruser_admin.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_openapi_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_openapi_url.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_product.yaml -------------------------------------------------------------------------------- /config/samples/capabilities_v1beta1_proxyconfigpromote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/capabilities_v1beta1_proxyconfigpromote.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/apps/apimanager_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanager_controller.go -------------------------------------------------------------------------------- /controllers/apps/apimanager_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanager_controller_test.go -------------------------------------------------------------------------------- /controllers/apps/apimanager_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanager_status_reconciler.go -------------------------------------------------------------------------------- /controllers/apps/apimanager_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanager_suite_test.go -------------------------------------------------------------------------------- /controllers/apps/apimanagerbackup_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanagerbackup_controller.go -------------------------------------------------------------------------------- /controllers/apps/apimanagerbackup_logic_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanagerbackup_logic_reconciler.go -------------------------------------------------------------------------------- /controllers/apps/apimanagerrestore_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanagerrestore_controller.go -------------------------------------------------------------------------------- /controllers/apps/apimanagerrestore_logic_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/apimanagerrestore_logic_reconciler.go -------------------------------------------------------------------------------- /controllers/apps/config_map_requirements_to_apimanager_event_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/config_map_requirements_to_apimanager_event_mapper.go -------------------------------------------------------------------------------- /controllers/apps/secret_to_apimanager_event_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/secret_to_apimanager_event_mapper.go -------------------------------------------------------------------------------- /controllers/apps/webconsole_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/apps/webconsole_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/activedoc_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/activedoc_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/activedoc_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/activedoc_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/activedoc_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/activedoc_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/application_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/application_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_controller_test.go -------------------------------------------------------------------------------- /controllers/capabilities/application_plan_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_plan_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/application_plans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_plans.go -------------------------------------------------------------------------------- /controllers/capabilities/application_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/application_status_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_status_reconciler_test.go -------------------------------------------------------------------------------- /controllers/capabilities/application_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/application_threescale_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/application_threescale_reconciler_test.go -------------------------------------------------------------------------------- /controllers/capabilities/applicationauth_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/applicationauth_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/applicationauth_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/applicationauth_controller_test.go -------------------------------------------------------------------------------- /controllers/capabilities/applicationauth_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/applicationauth_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/applicationauth_status_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/applicationauth_status_reconciler_test.go -------------------------------------------------------------------------------- /controllers/capabilities/backend_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/backend_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/backend_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/backend_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/backend_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/backend_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/backend_usages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/backend_usages.go -------------------------------------------------------------------------------- /controllers/capabilities/custompolicydefinition_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/custompolicydefinition_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/custompolicydefinition_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/custompolicydefinition_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/custompolicydefinition_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/custompolicydefinition_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/developeraccount_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeraccount_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/developeraccount_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeraccount_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/developeraccount_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeraccount_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/developeruser_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeruser_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/developeruser_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeruser_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/developeruser_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/developeruser_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/mapping_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/mapping_rules.go -------------------------------------------------------------------------------- /controllers/capabilities/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/methods.go -------------------------------------------------------------------------------- /controllers/capabilities/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/metrics.go -------------------------------------------------------------------------------- /controllers/capabilities/mocks/application_api_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/mocks/application_api_handler.go -------------------------------------------------------------------------------- /controllers/capabilities/mocks/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/mocks/error.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_backend_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_backend_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_controller_test.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_product_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_product_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_product_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_product_reconciler_test.go -------------------------------------------------------------------------------- /controllers/capabilities/openapi_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/openapi_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product.go -------------------------------------------------------------------------------- /controllers/capabilities/product_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/product_oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_oidc.go -------------------------------------------------------------------------------- /controllers/capabilities/product_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_policies.go -------------------------------------------------------------------------------- /controllers/capabilities/product_policies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_policies_test.go -------------------------------------------------------------------------------- /controllers/capabilities/product_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/product_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/product_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/proxy.go -------------------------------------------------------------------------------- /controllers/capabilities/proxyconfigpromote_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/proxyconfigpromote_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/proxyconfigpromote_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/proxyconfigpromote_controller_test.go -------------------------------------------------------------------------------- /controllers/capabilities/proxyconfigpromote_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/proxyconfigpromote_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/proxyconfigpromote_status_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/proxyconfigpromote_status_reconciler_test.go -------------------------------------------------------------------------------- /controllers/capabilities/secret_to_openapi_event_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/secret_to_openapi_event_mapper.go -------------------------------------------------------------------------------- /controllers/capabilities/tenant_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/tenant_controller.go -------------------------------------------------------------------------------- /controllers/capabilities/tenant_status_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/tenant_status_reconciler.go -------------------------------------------------------------------------------- /controllers/capabilities/tenant_threescale_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/capabilities/tenant_threescale_reconciler.go -------------------------------------------------------------------------------- /controllers/subscription/csvlocator/csvlocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/subscription/csvlocator/csvlocator.go -------------------------------------------------------------------------------- /controllers/subscription/subscription_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/controllers/subscription/subscription_controller.go -------------------------------------------------------------------------------- /doc/3scale-diagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/3scale-diagram.dia -------------------------------------------------------------------------------- /doc/3scale-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/3scale-diagram.png -------------------------------------------------------------------------------- /doc/activedoc-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/activedoc-reference.md -------------------------------------------------------------------------------- /doc/adding-apicast-custom-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/adding-apicast-custom-environments.md -------------------------------------------------------------------------------- /doc/adding-custom-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/adding-custom-policies.md -------------------------------------------------------------------------------- /doc/apicast-enabling-tls-at-pod-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/apicast-enabling-tls-at-pod-level.md -------------------------------------------------------------------------------- /doc/apimanager-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/apimanager-reference.md -------------------------------------------------------------------------------- /doc/apimanagerbackup-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/apimanagerbackup-reference.md -------------------------------------------------------------------------------- /doc/apimanagerrestore-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/apimanagerrestore-reference.md -------------------------------------------------------------------------------- /doc/application-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/application-reference.md -------------------------------------------------------------------------------- /doc/applicationauth-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/applicationauth-reference.md -------------------------------------------------------------------------------- /doc/backend-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/backend-reference.md -------------------------------------------------------------------------------- /doc/capabilities-diagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/capabilities-diagram.dia -------------------------------------------------------------------------------- /doc/capabilities-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/capabilities-diagram.png -------------------------------------------------------------------------------- /doc/community-release-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/community-release-build.md -------------------------------------------------------------------------------- /doc/cr_samples/activedoc/capabilities_v1beta1_activedoc_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/activedoc/capabilities_v1beta1_activedoc_secret.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_apicast_custom_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_apicast_custom_environment.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_apicast_custom_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_apicast_custom_policy.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_devlatest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_devlatest.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_external_components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_external_components.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_monitoring.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_pdb.yaml -------------------------------------------------------------------------------- /doc/cr_samples/apimanager/apps_v1alpha1_apimanager_s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/apimanager/apps_v1alpha1_apimanager_s3.yaml -------------------------------------------------------------------------------- /doc/cr_samples/developeruser/capabilities_v1beta1_developeruser_member.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/developeruser/capabilities_v1beta1_developeruser_member.yaml -------------------------------------------------------------------------------- /doc/cr_samples/openapi/capabilities_v1beta1_openapi_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/openapi/capabilities_v1beta1_openapi_secret.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_apicast_hosted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_apicast_hosted.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_apicast_selfmanaged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_apicast_selfmanaged.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_gateway_response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_gateway_response.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_mappingrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_mappingrules.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_oidc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_oidc.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_plan_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_plan_limits.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_plan_pricingrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_plan_pricingrules.yaml -------------------------------------------------------------------------------- /doc/cr_samples/product/capabilities_v1beta1_product_policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/cr_samples/product/capabilities_v1beta1_product_policies.yaml -------------------------------------------------------------------------------- /doc/custompolicydefinition-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/custompolicydefinition-reference.md -------------------------------------------------------------------------------- /doc/dependency_decisions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/dependency_decisions.yml -------------------------------------------------------------------------------- /doc/developeraccount-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/developeraccount-reference.md -------------------------------------------------------------------------------- /doc/developeruser-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/developeruser-reference.md -------------------------------------------------------------------------------- /doc/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/development.md -------------------------------------------------------------------------------- /doc/gateway-instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/gateway-instrumentation.md -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/3scale-scrape-configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/3scale-scrape-configs.yaml -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/README.md -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/datasource-v4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/datasource-v4.yaml -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/datasource-v5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/datasource-v5.yaml -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/grafana-v4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/grafana-v4.yaml -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/grafana-v5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/grafana-v5.yaml -------------------------------------------------------------------------------- /doc/monitoring-stack-deployment/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/monitoring-stack-deployment/prometheus.yaml -------------------------------------------------------------------------------- /doc/openapi-3scale-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/openapi-3scale-extensions.md -------------------------------------------------------------------------------- /doc/openapi-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/openapi-reference.md -------------------------------------------------------------------------------- /doc/openapi-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/openapi-user-guide.md -------------------------------------------------------------------------------- /doc/operator-application-capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/operator-application-capabilities.md -------------------------------------------------------------------------------- /doc/operator-backup-and-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/operator-backup-and-restore.md -------------------------------------------------------------------------------- /doc/operator-monitoring-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/operator-monitoring-resources.md -------------------------------------------------------------------------------- /doc/operator-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/operator-user-guide.md -------------------------------------------------------------------------------- /doc/product-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/product-reference.md -------------------------------------------------------------------------------- /doc/prometheusrules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/README.md -------------------------------------------------------------------------------- /doc/prometheusrules/apicast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/apicast.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/backend-listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/backend-listener.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/backend-worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/backend-worker.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/system-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/system-app.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/system-sidekiq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/system-sidekiq.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/threescale-kube-state-metrics-pre49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/threescale-kube-state-metrics-pre49.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/threescale-kube-state-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/threescale-kube-state-metrics.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/zync-que.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/zync-que.yaml -------------------------------------------------------------------------------- /doc/prometheusrules/zync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/prometheusrules/zync.yaml -------------------------------------------------------------------------------- /doc/proxyConfigPromote-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/proxyConfigPromote-reference.md -------------------------------------------------------------------------------- /doc/quickstart-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/quickstart-guide.md -------------------------------------------------------------------------------- /doc/redis-sentinel-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/redis-sentinel-tls.md -------------------------------------------------------------------------------- /doc/tenant-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/doc/tenant-reference.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/licenses.xml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/main.go -------------------------------------------------------------------------------- /make/jaeger.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/make/jaeger.mk -------------------------------------------------------------------------------- /pkg/3scale/amp/.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | /vendor 3 | -------------------------------------------------------------------------------- /pkg/3scale/amp/cmd/prometheusrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/cmd/prometheusrules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/cmd/root.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/ampimages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/ampimages.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/ampimages_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/ampimages_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/apicast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/apicast.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/apicast_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/apicast_monitoring.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/apicast_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/apicast_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/backend.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/backend_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/backend_monitoring.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/backend_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/backend_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/deployment_annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/deployment_annotations.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/deployments_lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/deployments_lister.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/generic_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/generic_monitoring.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/hash_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/hash_secret.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/highavailability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/highavailability.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/highavailability_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/highavailability_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/hpa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/hpa.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/images.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/memcached.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/memcached.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/memcached_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/memcached_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/pod_disruption_budget.go: -------------------------------------------------------------------------------- 1 | package component 2 | 3 | const ( 4 | PDB_MAX_UNAVAILABLE_POD_NUMBER = 1 5 | ) 6 | -------------------------------------------------------------------------------- /pkg/3scale/amp/component/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/system.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/system_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/system_monitoring.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/system_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/system_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/system_searchd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/system_searchd.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/system_searchd_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/system_searchd_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/zync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/zync.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/zync_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/zync_monitoring.go -------------------------------------------------------------------------------- /pkg/3scale/amp/component/zync_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/component/zync_options.go -------------------------------------------------------------------------------- /pkg/3scale/amp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/main.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/ampimages_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/ampimages_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/ampimages_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/ampimages_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/ampimages_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/ampimages_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/ampimages_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/ampimages_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/apicast_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/apicast_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/apicast_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/apicast_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/apicast_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/apicast_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/apicast_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/apicast_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/apimanager_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/apimanager_utils.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/backend_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/backend_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/backend_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/backend_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/backend_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/backend_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/backend_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/backend_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/base_apimanager_logic_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/base_apimanager_logic_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/base_apimanager_logic_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/base_apimanager_logic_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/dependency_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/dependency_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/generic_monitoring_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/generic_monitoring_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/helper_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/highavailability_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/highavailability_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/highavailability_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/highavailability_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/highavailability_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/highavailability_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/highavailability_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/highavailability_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/images.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/images_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/memcached_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/memcached_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/memcached_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/memcached_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/memcached_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/memcached_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/memcached_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/memcached_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_searchd_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_searchd_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_searchd_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_searchd_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_searchd_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_searchd_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/system_searchd_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/system_searchd_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/zync_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/zync_options_provider.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/zync_options_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/zync_options_provider_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/zync_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/zync_reconciler.go -------------------------------------------------------------------------------- /pkg/3scale/amp/operator/zync_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/operator/zync_reconciler_test.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/apicast_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/apicast_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/backend_listener_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/backend_listener_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/backend_worker_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/backend_worker_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/factory.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/kube_state_metrics_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/kube_state_metrics_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/system_app_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/system_app_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/system_sidekiq_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/system_sidekiq_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/zync_que_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/zync_que_rules.go -------------------------------------------------------------------------------- /pkg/3scale/amp/prometheusrules/zync_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/3scale/amp/prometheusrules/zync_rules.go -------------------------------------------------------------------------------- /pkg/apispkg/common/status_conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/apispkg/common/status_conditions.go -------------------------------------------------------------------------------- /pkg/apispkg/common/version_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/apispkg/common/version_compare.go -------------------------------------------------------------------------------- /pkg/apispkg/common/version_compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/apispkg/common/version_compare_test.go -------------------------------------------------------------------------------- /pkg/apispkg/helper/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/apispkg/helper/email.go -------------------------------------------------------------------------------- /pkg/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets.go -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/apicast-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/apicast-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/apicast-grafana-dashboard-2.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/apicast-grafana-dashboard-2.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/backend-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/backend-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/kubernetes-resources-by-namespace-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/kubernetes-resources-by-namespace-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/kubernetes-resources-by-pod-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/kubernetes-resources-by-pod-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/system-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/system-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/assets/monitoring/zync-grafana-dashboard-1.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/assets/monitoring/zync-grafana-dashboard-1.json.tpl -------------------------------------------------------------------------------- /pkg/assets/bindata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/assets/bindata.go -------------------------------------------------------------------------------- /pkg/backup/apimanager_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/backup/apimanager_backup.go -------------------------------------------------------------------------------- /pkg/backup/apimanager_backup_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/backup/apimanager_backup_options.go -------------------------------------------------------------------------------- /pkg/backup/apimanager_backup_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/backup/apimanager_backup_options_provider.go -------------------------------------------------------------------------------- /pkg/backup/apimanager_backup_pvc_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/backup/apimanager_backup_pvc_options.go -------------------------------------------------------------------------------- /pkg/controller/helper/application_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/application_entity.go -------------------------------------------------------------------------------- /pkg/controller/helper/application_plan_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/application_plan_entity.go -------------------------------------------------------------------------------- /pkg/controller/helper/application_plan_entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/application_plan_entity_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/backend_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backend_list.go -------------------------------------------------------------------------------- /pkg/controller/helper/backend_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backend_list_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/backendapi_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backendapi_entity.go -------------------------------------------------------------------------------- /pkg/controller/helper/backendapi_entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backendapi_entity_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/backendapi_remote_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backendapi_remote_index.go -------------------------------------------------------------------------------- /pkg/controller/helper/backendapi_remote_index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/backendapi_remote_index_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/developeruser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/developeruser.go -------------------------------------------------------------------------------- /pkg/controller/helper/developeruser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/developeruser_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/helper_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/lookup_provider_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/lookup_provider_account.go -------------------------------------------------------------------------------- /pkg/controller/helper/lookup_provider_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/lookup_provider_account_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/product_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/product_entity.go -------------------------------------------------------------------------------- /pkg/controller/helper/product_entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/product_entity_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/product_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/product_list.go -------------------------------------------------------------------------------- /pkg/controller/helper/product_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/product_list_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/shared.go -------------------------------------------------------------------------------- /pkg/controller/helper/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/tenant.go -------------------------------------------------------------------------------- /pkg/controller/helper/threescale_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/threescale_api.go -------------------------------------------------------------------------------- /pkg/controller/helper/threescale_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/threescale_api_test.go -------------------------------------------------------------------------------- /pkg/controller/helper/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/url.go -------------------------------------------------------------------------------- /pkg/controller/helper/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/controller/helper/url_test.go -------------------------------------------------------------------------------- /pkg/crypto/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/crypto/rand/rand.go -------------------------------------------------------------------------------- /pkg/handlers/apimanager_managed_routes_event_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/handlers/apimanager_managed_routes_event_mapper.go -------------------------------------------------------------------------------- /pkg/handlers/apimanager_managed_routes_event_mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/handlers/apimanager_managed_routes_event_mapper_test.go -------------------------------------------------------------------------------- /pkg/helper/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/annotations.go -------------------------------------------------------------------------------- /pkg/helper/boolean_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/boolean_utils.go -------------------------------------------------------------------------------- /pkg/helper/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/cache.go -------------------------------------------------------------------------------- /pkg/helper/container_port_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/container_port_utils.go -------------------------------------------------------------------------------- /pkg/helper/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/deployment.go -------------------------------------------------------------------------------- /pkg/helper/envvarutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/envvarutils.go -------------------------------------------------------------------------------- /pkg/helper/envvarutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/envvarutils_test.go -------------------------------------------------------------------------------- /pkg/helper/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/errors.go -------------------------------------------------------------------------------- /pkg/helper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/helper.go -------------------------------------------------------------------------------- /pkg/helper/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/job.go -------------------------------------------------------------------------------- /pkg/helper/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/k8s.go -------------------------------------------------------------------------------- /pkg/helper/kubernetes_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/kubernetes_types.go -------------------------------------------------------------------------------- /pkg/helper/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/labels.go -------------------------------------------------------------------------------- /pkg/helper/loghttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/loghttp.go -------------------------------------------------------------------------------- /pkg/helper/maputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/maputils.go -------------------------------------------------------------------------------- /pkg/helper/object_meta_merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/object_meta_merger.go -------------------------------------------------------------------------------- /pkg/helper/openapi_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/openapi_utils.go -------------------------------------------------------------------------------- /pkg/helper/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/openshift.go -------------------------------------------------------------------------------- /pkg/helper/podHelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/podHelper.go -------------------------------------------------------------------------------- /pkg/helper/pointer_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/pointer_utils.go -------------------------------------------------------------------------------- /pkg/helper/reconcile_error_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/reconcile_error_handler.go -------------------------------------------------------------------------------- /pkg/helper/redis_database_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/redis_database_version.go -------------------------------------------------------------------------------- /pkg/helper/redis_database_version_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/redis_database_version_helper.go -------------------------------------------------------------------------------- /pkg/helper/redis_database_version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/redis_database_version_test.go -------------------------------------------------------------------------------- /pkg/helper/requirements_common_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/requirements_common_helper.go -------------------------------------------------------------------------------- /pkg/helper/requirements_common_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/requirements_common_helper_test.go -------------------------------------------------------------------------------- /pkg/helper/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/route.go -------------------------------------------------------------------------------- /pkg/helper/runtime_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/runtime_object.go -------------------------------------------------------------------------------- /pkg/helper/secretutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/secretutils.go -------------------------------------------------------------------------------- /pkg/helper/secretutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/secretutils_test.go -------------------------------------------------------------------------------- /pkg/helper/slice_string_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/slice_string_utils.go -------------------------------------------------------------------------------- /pkg/helper/slice_string_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/slice_string_utils_test.go -------------------------------------------------------------------------------- /pkg/helper/system_database_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/system_database_helper.go -------------------------------------------------------------------------------- /pkg/helper/system_database_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/system_database_versions.go -------------------------------------------------------------------------------- /pkg/helper/task_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/task_runner.go -------------------------------------------------------------------------------- /pkg/helper/volume_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/volume_utils.go -------------------------------------------------------------------------------- /pkg/helper/volumemount_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/volumemount_utils.go -------------------------------------------------------------------------------- /pkg/helper/webconsole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/helper/webconsole.go -------------------------------------------------------------------------------- /pkg/reconcilers/base_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/base_reconciler.go -------------------------------------------------------------------------------- /pkg/reconcilers/base_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/base_reconciler_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/configmap.go -------------------------------------------------------------------------------- /pkg/reconcilers/configmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/configmap_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/deployment.go -------------------------------------------------------------------------------- /pkg/reconcilers/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/deployment_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/grafanadashboards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/grafanadashboards.go -------------------------------------------------------------------------------- /pkg/reconcilers/grafanadashboards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/grafanadashboards_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/hpa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/hpa.go -------------------------------------------------------------------------------- /pkg/reconcilers/hpa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/hpa_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/pod_disruption_budget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/pod_disruption_budget.go -------------------------------------------------------------------------------- /pkg/reconcilers/pod_disruption_budget_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/pod_disruption_budget_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/pod_monitors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/pod_monitors.go -------------------------------------------------------------------------------- /pkg/reconcilers/pod_monitors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/pod_monitors_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/prometheus_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/prometheus_rules.go -------------------------------------------------------------------------------- /pkg/reconcilers/prometheus_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/prometheus_rules_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/role.go -------------------------------------------------------------------------------- /pkg/reconcilers/role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/role_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/secret.go -------------------------------------------------------------------------------- /pkg/reconcilers/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/secret_test.go -------------------------------------------------------------------------------- /pkg/reconcilers/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/service.go -------------------------------------------------------------------------------- /pkg/reconcilers/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/serviceaccount.go -------------------------------------------------------------------------------- /pkg/reconcilers/serviceaccount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/reconcilers/serviceaccount_test.go -------------------------------------------------------------------------------- /pkg/restore/apimanager_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/restore/apimanager_restore.go -------------------------------------------------------------------------------- /pkg/restore/apimanager_restore_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/restore/apimanager_restore_options.go -------------------------------------------------------------------------------- /pkg/restore/apimanager_restore_options_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/restore/apimanager_restore_options_provider.go -------------------------------------------------------------------------------- /pkg/restore/apimanager_restore_pvc_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/restore/apimanager_restore_pvc_options.go -------------------------------------------------------------------------------- /pkg/restore/runtime_apimanager_restore_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/pkg/restore/runtime_apimanager_restore_info.go -------------------------------------------------------------------------------- /test/crds/crd_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/test/crds/crd_validation_test.go -------------------------------------------------------------------------------- /test/manifests-version/deployment_version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/test/manifests-version/deployment_version_test.go -------------------------------------------------------------------------------- /test/unitcontrollers/apimanager_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/test/unitcontrollers/apimanager_controller_test.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3scale/3scale-operator/HEAD/version/version.go --------------------------------------------------------------------------------