├── .gitignore ├── .gitleaks.toml ├── .golangci.yml ├── .vscode ├── configurationCache.log ├── dryrun.log ├── settings.json └── targets.log ├── COMPONENT_NAME ├── Dockerfile ├── Makefile ├── Makefile.prow ├── OWNERS ├── PROJECT ├── README.md ├── api └── v1alpha1 │ ├── clustertemplate_types.go │ ├── clustertemplateinstance_conditions.go │ ├── clustertemplateinstance_conditions_test.go │ ├── clustertemplateinstance_types.go │ ├── clustertemplateinstance_utils.go │ ├── clustertemplateinstance_utils_test.go │ ├── clustertemplateinstance_webhook.go │ ├── clustertemplateinstance_webhook_test.go │ ├── clustertemplatequota_types.go │ ├── clustertemplatequota_webhook.go │ ├── clustertemplatesetup_types.go │ ├── config_types.go │ ├── groupversion_info.go │ ├── suite_test.go │ └── zz_generated.deepcopy.go ├── argocd ├── application_health.go ├── application_health_test.go └── suite_test.go ├── bridge ├── router.go ├── router_test.go ├── server.go ├── suite_test.go └── userclient.go ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── argo_cd_cluser_rb.yaml │ ├── argo_cd_cluster_role.yaml │ ├── cluster-aas-operator-controller-manager-metrics-service_v1_service.yaml │ ├── cluster-aas-operator-manager-config_v1_configmap.yaml │ ├── cluster-aas-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── cluster-aas-operator-repo-bridge.yaml │ ├── cluster-aas-operator-webhook-service_v1_service.yaml │ ├── cluster-aas-operator.clusterserviceversion.yaml │ ├── cluster_templates_user_ct_role.yaml │ ├── cluster_templates_user_role.yaml │ ├── clustertemplate.openshift.io_clustertemplateinstances.yaml │ ├── clustertemplate.openshift.io_clustertemplatequotas.yaml │ ├── clustertemplate.openshift.io_clustertemplates.yaml │ ├── clustertemplate.openshift.io_clustertemplatesetup.yaml │ └── clustertemplate.openshift.io_config.yaml ├── metadata │ ├── annotations.yaml │ └── dependencies.yaml └── tests │ └── scorecard │ └── config.yaml ├── cli ├── cmd │ ├── credentials.go │ ├── describe.go │ ├── install.go │ ├── instances.go │ ├── kubeconfig.go │ ├── root.go │ ├── templates.go │ └── uninstall.go ├── installresources │ └── resources.go └── kubectl-cluster.go ├── clusterprovider ├── hive_provider.go ├── hypershift_provider.go ├── provider.go ├── provider_test.go └── suite_test.go ├── clustersetup ├── clustersetup.go ├── clustersetup_test.go └── suite_test.go ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── clustertemplate.openshift.io_clustertemplateinstances.yaml │ │ ├── clustertemplate.openshift.io_clustertemplatequotas.yaml │ │ ├── clustertemplate.openshift.io_clustertemplates.yaml │ │ ├── clustertemplate.openshift.io_clustertemplatesetup.yaml │ │ └── clustertemplate.openshift.io_config.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_clustertemplateinstances.yaml │ │ ├── cainjection_in_clustertemplatequotas.yaml │ │ ├── cainjection_in_clustertemplates.yaml │ │ ├── webhook_in_clustertemplateinstances.yaml │ │ ├── webhook_in_clustertemplatequotas.yaml │ │ └── webhook_in_clustertemplates.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_config_patch.yaml │ ├── manager_webhook_patch.yaml │ └── webhookcainjection_patch.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── cluster-aas-operator.clusterserviceversion.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── clustertemplate_editor_role.yaml │ ├── clustertemplate_viewer_role.yaml │ ├── clustertemplateinstance_editor_role.yaml │ ├── clustertemplateinstance_viewer_role.yaml │ ├── clustertemplatequota_editor_role.yaml │ ├── clustertemplatequota_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── clustertemplate_v1alpha1_clustertemplate.yaml │ ├── clustertemplate_v1alpha1_clustertemplateinstance.yaml │ ├── clustertemplate_v1alpha1_clustertemplatequota.yaml │ └── kustomization.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manifests.yaml │ └── service.yaml ├── controllers ├── argocd_controller.go ├── argocd_controller_test.go ├── claas_controller.go ├── claas_controller_test.go ├── clustertemplate_controller.go ├── clustertemplate_controller_test.go ├── clustertemplateinstance_controller.go ├── clustertemplateinstance_controller_test.go ├── clustertemplatequota_controller.go ├── clustertemplatequota_controller_test.go ├── config_controller.go ├── config_controller_test.go ├── consoleplugin_controller.go ├── consoleplugin_controller_test.go ├── hypershifttemplate_controller.go ├── hypershifttemplate_controller_test.go └── suite_test.go ├── docs ├── api-reference.md ├── argo.md ├── caas-big.jpg ├── cluster-template-instance.md ├── cluster-template-quota.md ├── cluster-template.md ├── custom-config.md ├── dev-guide.md └── permissions-and-env.md ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── main.go ├── ocm ├── klusterlet.go ├── klusterlet_test.go ├── managedcluster.go ├── managedcluster_test.go └── suite_test.go ├── quickstarts ├── quota_quickstart.go ├── share_template_quickstart.go └── template_quickstart.go ├── repository ├── chart.go ├── chart_test.go ├── client.go ├── client_test.go ├── git.go ├── git_test.go ├── repo.go └── suite_test.go ├── sonar-project.properties ├── templates ├── hypershift-agent-cluster-description.md ├── hypershift-agent-cluster.go ├── hypershift-cluster-description.md ├── hypershift-cluster.go ├── hypershift-kubevirt-cluster-description.md └── hypershift-kubevirt-cluster.go ├── testutils ├── git │ └── base ├── helm │ ├── ca.crt │ ├── ca.key │ ├── client.crt │ ├── client.key │ ├── hypershift-template-0.0.2.tgz │ ├── hypershift-template-no-schema-0.0.2.tgz │ ├── hypershift-template-no-val-0.0.2.tgz │ ├── hypershift-template-no-val-schema-0.0.2.tgz │ ├── index.yaml │ ├── server.crt │ ├── server.go │ └── server.key ├── kubeconfig_mock.yaml ├── resources.go └── testcrds │ ├── optional │ ├── acm │ │ └── klusterlet_crd.yaml │ ├── console │ │ └── consoleplugin_crd.yaml │ ├── consoleV1 │ │ └── consolequickstart_crd.yaml │ ├── hive │ │ ├── clusterclaim_crd.yaml │ │ └── clusterdeployment_crd.yaml │ ├── hypershift │ │ ├── hostedcluster_crd.yaml │ │ └── nodepool_crd.yaml │ └── ocm │ │ └── managedcluster_crd.yaml │ └── required │ ├── app_crd.yaml │ ├── appset_crd.yaml │ ├── argoproj_crd.yaml │ └── subscription_crd.yaml └── utils ├── resource.go ├── resource_test.go └── suite_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.vscode/configurationCache.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.vscode/configurationCache.log -------------------------------------------------------------------------------- /.vscode/dryrun.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.vscode/dryrun.log -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.extensionOutputFolder": "./.vscode" 3 | } -------------------------------------------------------------------------------- /.vscode/targets.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/.vscode/targets.log -------------------------------------------------------------------------------- /COMPONENT_NAME: -------------------------------------------------------------------------------- 1 | cluster-templates-operator -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.prow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/Makefile.prow -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplate_types.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_conditions.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_conditions_test.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_types.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_utils.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_utils_test.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_webhook.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplateinstance_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplateinstance_webhook_test.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplatequota_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplatequota_types.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplatequota_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplatequota_webhook.go -------------------------------------------------------------------------------- /api/v1alpha1/clustertemplatesetup_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/clustertemplatesetup_types.go -------------------------------------------------------------------------------- /api/v1alpha1/config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/config_types.go -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/suite_test.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /argocd/application_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/argocd/application_health.go -------------------------------------------------------------------------------- /argocd/application_health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/argocd/application_health_test.go -------------------------------------------------------------------------------- /argocd/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/argocd/suite_test.go -------------------------------------------------------------------------------- /bridge/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bridge/router.go -------------------------------------------------------------------------------- /bridge/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bridge/router_test.go -------------------------------------------------------------------------------- /bridge/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bridge/server.go -------------------------------------------------------------------------------- /bridge/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bridge/suite_test.go -------------------------------------------------------------------------------- /bridge/userclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bridge/userclient.go -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/argo_cd_cluser_rb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/argo_cd_cluser_rb.yaml -------------------------------------------------------------------------------- /bundle/manifests/argo_cd_cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/argo_cd_cluster_role.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator-controller-manager-metrics-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator-controller-manager-metrics-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator-manager-config_v1_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator-manager-config_v1_configmap.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator-repo-bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator-repo-bridge.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator-webhook-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator-webhook-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster-aas-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster-aas-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster_templates_user_ct_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster_templates_user_ct_role.yaml -------------------------------------------------------------------------------- /bundle/manifests/cluster_templates_user_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/cluster_templates_user_role.yaml -------------------------------------------------------------------------------- /bundle/manifests/clustertemplate.openshift.io_clustertemplateinstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/clustertemplate.openshift.io_clustertemplateinstances.yaml -------------------------------------------------------------------------------- /bundle/manifests/clustertemplate.openshift.io_clustertemplatequotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/clustertemplate.openshift.io_clustertemplatequotas.yaml -------------------------------------------------------------------------------- /bundle/manifests/clustertemplate.openshift.io_clustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/clustertemplate.openshift.io_clustertemplates.yaml -------------------------------------------------------------------------------- /bundle/manifests/clustertemplate.openshift.io_clustertemplatesetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/clustertemplate.openshift.io_clustertemplatesetup.yaml -------------------------------------------------------------------------------- /bundle/manifests/clustertemplate.openshift.io_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/manifests/clustertemplate.openshift.io_config.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/metadata/dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/metadata/dependencies.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /cli/cmd/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/credentials.go -------------------------------------------------------------------------------- /cli/cmd/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/describe.go -------------------------------------------------------------------------------- /cli/cmd/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/install.go -------------------------------------------------------------------------------- /cli/cmd/instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/instances.go -------------------------------------------------------------------------------- /cli/cmd/kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/kubeconfig.go -------------------------------------------------------------------------------- /cli/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/root.go -------------------------------------------------------------------------------- /cli/cmd/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/templates.go -------------------------------------------------------------------------------- /cli/cmd/uninstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/cmd/uninstall.go -------------------------------------------------------------------------------- /cli/installresources/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/installresources/resources.go -------------------------------------------------------------------------------- /cli/kubectl-cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/cli/kubectl-cluster.go -------------------------------------------------------------------------------- /clusterprovider/hive_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clusterprovider/hive_provider.go -------------------------------------------------------------------------------- /clusterprovider/hypershift_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clusterprovider/hypershift_provider.go -------------------------------------------------------------------------------- /clusterprovider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clusterprovider/provider.go -------------------------------------------------------------------------------- /clusterprovider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clusterprovider/provider_test.go -------------------------------------------------------------------------------- /clusterprovider/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clusterprovider/suite_test.go -------------------------------------------------------------------------------- /clustersetup/clustersetup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clustersetup/clustersetup.go -------------------------------------------------------------------------------- /clustersetup/clustersetup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clustersetup/clustersetup_test.go -------------------------------------------------------------------------------- /clustersetup/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/clustersetup/suite_test.go -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/clustertemplate.openshift.io_clustertemplateinstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/bases/clustertemplate.openshift.io_clustertemplateinstances.yaml -------------------------------------------------------------------------------- /config/crd/bases/clustertemplate.openshift.io_clustertemplatequotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/bases/clustertemplate.openshift.io_clustertemplatequotas.yaml -------------------------------------------------------------------------------- /config/crd/bases/clustertemplate.openshift.io_clustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/bases/clustertemplate.openshift.io_clustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/bases/clustertemplate.openshift.io_clustertemplatesetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/bases/clustertemplate.openshift.io_clustertemplatesetup.yaml -------------------------------------------------------------------------------- /config/crd/bases/clustertemplate.openshift.io_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/bases/clustertemplate.openshift.io_config.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_clustertemplateinstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/cainjection_in_clustertemplateinstances.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_clustertemplatequotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/cainjection_in_clustertemplatequotas.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_clustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/cainjection_in_clustertemplates.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_clustertemplateinstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/webhook_in_clustertemplateinstances.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_clustertemplatequotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/webhook_in_clustertemplatequotas.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_clustertemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/crd/patches/webhook_in_clustertemplates.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/bases/cluster-aas-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/manifests/bases/cluster-aas-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplate_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplate_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplate_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplate_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplateinstance_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplateinstance_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplateinstance_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplateinstance_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplatequota_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplatequota_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/clustertemplatequota_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/clustertemplatequota_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/clustertemplate_v1alpha1_clustertemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/samples/clustertemplate_v1alpha1_clustertemplate.yaml -------------------------------------------------------------------------------- /config/samples/clustertemplate_v1alpha1_clustertemplateinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/samples/clustertemplate_v1alpha1_clustertemplateinstance.yaml -------------------------------------------------------------------------------- /config/samples/clustertemplate_v1alpha1_clustertemplatequota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/samples/clustertemplate_v1alpha1_clustertemplatequota.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /controllers/argocd_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/argocd_controller.go -------------------------------------------------------------------------------- /controllers/argocd_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/argocd_controller_test.go -------------------------------------------------------------------------------- /controllers/claas_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/claas_controller.go -------------------------------------------------------------------------------- /controllers/claas_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/claas_controller_test.go -------------------------------------------------------------------------------- /controllers/clustertemplate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplate_controller.go -------------------------------------------------------------------------------- /controllers/clustertemplate_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplate_controller_test.go -------------------------------------------------------------------------------- /controllers/clustertemplateinstance_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplateinstance_controller.go -------------------------------------------------------------------------------- /controllers/clustertemplateinstance_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplateinstance_controller_test.go -------------------------------------------------------------------------------- /controllers/clustertemplatequota_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplatequota_controller.go -------------------------------------------------------------------------------- /controllers/clustertemplatequota_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/clustertemplatequota_controller_test.go -------------------------------------------------------------------------------- /controllers/config_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/config_controller.go -------------------------------------------------------------------------------- /controllers/config_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/config_controller_test.go -------------------------------------------------------------------------------- /controllers/consoleplugin_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/consoleplugin_controller.go -------------------------------------------------------------------------------- /controllers/consoleplugin_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/consoleplugin_controller_test.go -------------------------------------------------------------------------------- /controllers/hypershifttemplate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/hypershifttemplate_controller.go -------------------------------------------------------------------------------- /controllers/hypershifttemplate_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/hypershifttemplate_controller_test.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/api-reference.md -------------------------------------------------------------------------------- /docs/argo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/argo.md -------------------------------------------------------------------------------- /docs/caas-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/caas-big.jpg -------------------------------------------------------------------------------- /docs/cluster-template-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/cluster-template-instance.md -------------------------------------------------------------------------------- /docs/cluster-template-quota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/cluster-template-quota.md -------------------------------------------------------------------------------- /docs/cluster-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/cluster-template.md -------------------------------------------------------------------------------- /docs/custom-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/custom-config.md -------------------------------------------------------------------------------- /docs/dev-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/dev-guide.md -------------------------------------------------------------------------------- /docs/permissions-and-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/docs/permissions-and-env.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/main.go -------------------------------------------------------------------------------- /ocm/klusterlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/ocm/klusterlet.go -------------------------------------------------------------------------------- /ocm/klusterlet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/ocm/klusterlet_test.go -------------------------------------------------------------------------------- /ocm/managedcluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/ocm/managedcluster.go -------------------------------------------------------------------------------- /ocm/managedcluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/ocm/managedcluster_test.go -------------------------------------------------------------------------------- /ocm/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/ocm/suite_test.go -------------------------------------------------------------------------------- /quickstarts/quota_quickstart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/quickstarts/quota_quickstart.go -------------------------------------------------------------------------------- /quickstarts/share_template_quickstart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/quickstarts/share_template_quickstart.go -------------------------------------------------------------------------------- /quickstarts/template_quickstart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/quickstarts/template_quickstart.go -------------------------------------------------------------------------------- /repository/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/chart.go -------------------------------------------------------------------------------- /repository/chart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/chart_test.go -------------------------------------------------------------------------------- /repository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/client.go -------------------------------------------------------------------------------- /repository/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/client_test.go -------------------------------------------------------------------------------- /repository/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/git.go -------------------------------------------------------------------------------- /repository/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/git_test.go -------------------------------------------------------------------------------- /repository/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/repo.go -------------------------------------------------------------------------------- /repository/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/repository/suite_test.go -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /templates/hypershift-agent-cluster-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-agent-cluster-description.md -------------------------------------------------------------------------------- /templates/hypershift-agent-cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-agent-cluster.go -------------------------------------------------------------------------------- /templates/hypershift-cluster-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-cluster-description.md -------------------------------------------------------------------------------- /templates/hypershift-cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-cluster.go -------------------------------------------------------------------------------- /templates/hypershift-kubevirt-cluster-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-kubevirt-cluster-description.md -------------------------------------------------------------------------------- /templates/hypershift-kubevirt-cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/templates/hypershift-kubevirt-cluster.go -------------------------------------------------------------------------------- /testutils/git/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/git/base -------------------------------------------------------------------------------- /testutils/helm/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/ca.crt -------------------------------------------------------------------------------- /testutils/helm/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/ca.key -------------------------------------------------------------------------------- /testutils/helm/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/client.crt -------------------------------------------------------------------------------- /testutils/helm/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/client.key -------------------------------------------------------------------------------- /testutils/helm/hypershift-template-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/hypershift-template-0.0.2.tgz -------------------------------------------------------------------------------- /testutils/helm/hypershift-template-no-schema-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/hypershift-template-no-schema-0.0.2.tgz -------------------------------------------------------------------------------- /testutils/helm/hypershift-template-no-val-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/hypershift-template-no-val-0.0.2.tgz -------------------------------------------------------------------------------- /testutils/helm/hypershift-template-no-val-schema-0.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/hypershift-template-no-val-schema-0.0.2.tgz -------------------------------------------------------------------------------- /testutils/helm/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/index.yaml -------------------------------------------------------------------------------- /testutils/helm/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/server.crt -------------------------------------------------------------------------------- /testutils/helm/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/server.go -------------------------------------------------------------------------------- /testutils/helm/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/helm/server.key -------------------------------------------------------------------------------- /testutils/kubeconfig_mock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/kubeconfig_mock.yaml -------------------------------------------------------------------------------- /testutils/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/resources.go -------------------------------------------------------------------------------- /testutils/testcrds/optional/acm/klusterlet_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/acm/klusterlet_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/console/consoleplugin_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/console/consoleplugin_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/consoleV1/consolequickstart_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/consoleV1/consolequickstart_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/hive/clusterclaim_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/hive/clusterclaim_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/hive/clusterdeployment_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/hive/clusterdeployment_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/hypershift/hostedcluster_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/hypershift/hostedcluster_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/hypershift/nodepool_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/hypershift/nodepool_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/optional/ocm/managedcluster_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/optional/ocm/managedcluster_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/required/app_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/required/app_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/required/appset_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/required/appset_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/required/argoproj_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/required/argoproj_crd.yaml -------------------------------------------------------------------------------- /testutils/testcrds/required/subscription_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/testutils/testcrds/required/subscription_crd.yaml -------------------------------------------------------------------------------- /utils/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/utils/resource.go -------------------------------------------------------------------------------- /utils/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/utils/resource_test.go -------------------------------------------------------------------------------- /utils/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stolostron/cluster-templates-operator/HEAD/utils/suite_test.go --------------------------------------------------------------------------------