├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml ├── kind-config.yaml ├── pull_request_template.md ├── release.yml └── workflows │ ├── build-ci.yml │ ├── dependent-issues.yml │ ├── semantic-pr.yml │ ├── test-ci-command.yml │ ├── test-ci-push.yml │ └── test-ci-reusable.yml ├── .gitignore ├── .mergify.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── api ├── v1beta1 │ ├── cryostat_conversion.go │ ├── cryostat_conversion_test.go │ ├── cryostat_suite_test.go │ ├── cryostat_types.go │ ├── groupversion_info.go │ └── zz_generated.deepcopy.go └── v1beta2 │ ├── cryostat_conversion.go │ ├── cryostat_types.go │ ├── groupversion_info.go │ └── zz_generated.deepcopy.go ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── cryostat-operator-cryostat-namespaced_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── cryostat-operator-cryostat_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── cryostat-operator-manager-config_v1_configmap.yaml │ ├── cryostat-operator-oauth-client_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── cryostat-operator-webhook-service_v1_service.yaml │ ├── cryostat-operator.clusterserviceversion.yaml │ └── operator.cryostat.io_cryostats.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── config ├── certmanager │ ├── certificate.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ └── operator.cryostat.io_cryostats.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_cryostats.yaml │ │ └── webhook_in_cryostats.yaml ├── default │ ├── image_pull_patch.yaml │ ├── image_tag_patch.yaml │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ ├── manager_config_patch.yaml │ ├── manager_webhook_patch.yaml │ ├── webhook_object_selector_patch.yaml │ └── webhookcainjection_patch.yaml ├── insights │ ├── deployment.yaml │ ├── insights_image_pull_patch.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ ├── manager.yaml │ └── patches │ │ └── force_openshift_patch.yaml ├── manifests │ ├── bases │ │ └── cryostat-operator.clusterserviceversion.yaml │ ├── kustomization.yaml │ └── targetNamespaces_patch.yaml ├── openshift │ ├── console-plugin │ │ ├── clusterrole-cryostat-plugin-patcher.yaml │ │ ├── clusterrole-cryostat-plugin.yaml │ │ ├── clusterrolebinding-cryostat-plugin-patcher.yaml │ │ ├── clusterrolebinding-cryostat-plugin.yaml │ │ ├── deployment-cryostat-plugin.yaml │ │ ├── service-cryostat-plugin.yaml │ │ └── serviceaccount-cryostat-plugin.yaml │ ├── cryostat-quickstart-autoconfig.yaml │ ├── cryostat-quickstart-jmx.yaml │ ├── kustomization.yaml │ └── plugin_image_pull_patch.yaml ├── overlays │ ├── insights │ │ ├── insights_manager_patch.yaml │ │ ├── insights_patch.yaml │ │ └── kustomization.yaml │ └── openshift │ │ ├── console_plugin_patch.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 │ ├── cluster_role_binding.yaml │ ├── cryostat_editor_role.yaml │ ├── cryostat_namespaced_role.yaml │ ├── cryostat_role.yaml │ ├── cryostat_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── oauth_client.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── kustomization.yaml │ ├── operator_v1beta1_cryostat.yaml │ ├── operator_v1beta2_cryostat.yaml │ ├── sample-app-agent-injected.yaml │ ├── sample-app-agent-tls-proxy.yaml │ ├── sample-app-agent.yaml │ └── sample-app.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ ├── custom.config.yaml │ │ └── olm.config.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manifests.yaml │ └── service.yaml ├── docs ├── config.md └── images │ ├── cryostat-icon-reverse.svg │ └── cryostat-icon.svg ├── go-license.yml ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── custom.config.yaml.in ├── image_pull_patch.yaml.in ├── image_tag_patch.yaml.in ├── insights_image_pull_patch.yaml.in ├── insights_patch.yaml.in └── plugin_image_pull_patch.yaml.in └── internal ├── console ├── console_suite_test.go ├── plugin.go ├── plugin_test.go └── test │ └── resources.go ├── controllers ├── certmanager.go ├── common │ ├── builder.go │ ├── common_utils.go │ ├── finalizer_utils.go │ ├── naming.go │ ├── resource_definitions │ │ ├── certificates.go │ │ └── resource_definitions.go │ └── tls.go ├── configmaps.go ├── constants │ ├── const_generated.go │ └── constants.go ├── cryostat_controller.go ├── cryostat_controller_test.go ├── ingresses.go ├── model │ └── instance.go ├── networkpolicy.go ├── openshift.go ├── pvc.go ├── rbac.go ├── reconciler.go ├── reconciler_test.go ├── routes.go ├── secrets.go ├── services.go └── suite_test.go ├── fips ├── fips.go ├── fips_suite_test.go ├── fips_test.go └── test │ └── resources.go ├── images └── custom-scorecard-tests │ ├── .gitignore │ ├── Dockerfile │ ├── bin │ ├── entrypoint │ └── user_setup │ ├── main.go │ └── rbac │ ├── kustomization.yaml │ ├── scorecard_role.yaml │ ├── scorecard_role_binding.yaml │ └── scorecard_service_account.yaml ├── main.go ├── test ├── builder.go ├── clients.go ├── conversion.go ├── expect.go ├── reconciler.go ├── resources.go └── scorecard │ ├── clients.go │ ├── common_utils.go │ ├── logger.go │ ├── openshift.go │ ├── tests.go │ └── types.go ├── tools └── const_generator.go └── webhooks ├── agent ├── agent_suite_test.go ├── pod_defaulter.go ├── pod_defaulter_test.go ├── pod_webhook.go └── test │ └── resources.go ├── cryostat_webhook.go ├── defaulter.go ├── defaulter_test.go ├── test └── resources.go ├── validator.go ├── validator_test.go └── webhook_suite_test.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/kind-config.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/build-ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependent-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/dependent-issues.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/semantic-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test-ci-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/test-ci-command.yml -------------------------------------------------------------------------------- /.github/workflows/test-ci-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/test-ci-push.yml -------------------------------------------------------------------------------- /.github/workflows/test-ci-reusable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.github/workflows/test-ci-reusable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/.mergify.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1beta1/cryostat_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/cryostat_conversion.go -------------------------------------------------------------------------------- /api/v1beta1/cryostat_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/cryostat_conversion_test.go -------------------------------------------------------------------------------- /api/v1beta1/cryostat_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/cryostat_suite_test.go -------------------------------------------------------------------------------- /api/v1beta1/cryostat_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/cryostat_types.go -------------------------------------------------------------------------------- /api/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /api/v1beta2/cryostat_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta2/cryostat_conversion.go -------------------------------------------------------------------------------- /api/v1beta2/cryostat_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta2/cryostat_types.go -------------------------------------------------------------------------------- /api/v1beta2/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta2/groupversion_info.go -------------------------------------------------------------------------------- /api/v1beta2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/api/v1beta2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator-cryostat-namespaced_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator-cryostat-namespaced_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator-cryostat_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator-cryostat_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator-manager-config_v1_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator-manager-config_v1_configmap.yaml -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator-oauth-client_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator-oauth-client_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator-webhook-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator-webhook-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/manifests/cryostat-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/cryostat-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/operator.cryostat.io_cryostats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/manifests/operator.cryostat.io_cryostats.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/operator.cryostat.io_cryostats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/crd/bases/operator.cryostat.io_cryostats.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_cryostats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/crd/patches/cainjection_in_cryostats.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_cryostats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/crd/patches/webhook_in_cryostats.yaml -------------------------------------------------------------------------------- /config/default/image_pull_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/image_pull_patch.yaml -------------------------------------------------------------------------------- /config/default/image_tag_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/image_tag_patch.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/webhook_object_selector_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/webhook_object_selector_patch.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/insights/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/deployment.yaml -------------------------------------------------------------------------------- /config/insights/insights_image_pull_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/insights_image_pull_patch.yaml -------------------------------------------------------------------------------- /config/insights/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/kustomization.yaml -------------------------------------------------------------------------------- /config/insights/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/leader_election_role.yaml -------------------------------------------------------------------------------- /config/insights/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/insights/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/role.yaml -------------------------------------------------------------------------------- /config/insights/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/insights/role_binding.yaml -------------------------------------------------------------------------------- /config/insights/service_account.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ServiceAccount 3 | apiVersion: v1 4 | metadata: 5 | name: insights 6 | -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manager/patches/force_openshift_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manager/patches/force_openshift_patch.yaml -------------------------------------------------------------------------------- /config/manifests/bases/cryostat-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manifests/bases/cryostat-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/manifests/targetNamespaces_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/manifests/targetNamespaces_patch.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/clusterrole-cryostat-plugin-patcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/clusterrole-cryostat-plugin-patcher.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/clusterrole-cryostat-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/clusterrole-cryostat-plugin.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/clusterrolebinding-cryostat-plugin-patcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/clusterrolebinding-cryostat-plugin-patcher.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/clusterrolebinding-cryostat-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/clusterrolebinding-cryostat-plugin.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/deployment-cryostat-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/deployment-cryostat-plugin.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/service-cryostat-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/service-cryostat-plugin.yaml -------------------------------------------------------------------------------- /config/openshift/console-plugin/serviceaccount-cryostat-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/console-plugin/serviceaccount-cryostat-plugin.yaml -------------------------------------------------------------------------------- /config/openshift/cryostat-quickstart-autoconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/cryostat-quickstart-autoconfig.yaml -------------------------------------------------------------------------------- /config/openshift/cryostat-quickstart-jmx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/cryostat-quickstart-jmx.yaml -------------------------------------------------------------------------------- /config/openshift/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/kustomization.yaml -------------------------------------------------------------------------------- /config/openshift/plugin_image_pull_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/openshift/plugin_image_pull_patch.yaml -------------------------------------------------------------------------------- /config/overlays/insights/insights_manager_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/overlays/insights/insights_manager_patch.yaml -------------------------------------------------------------------------------- /config/overlays/insights/insights_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/overlays/insights/insights_patch.yaml -------------------------------------------------------------------------------- /config/overlays/insights/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/overlays/insights/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/openshift/console_plugin_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/overlays/openshift/console_plugin_patch.yaml -------------------------------------------------------------------------------- /config/overlays/openshift/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/overlays/openshift/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/cluster_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/cryostat_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/cryostat_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/cryostat_namespaced_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/cryostat_namespaced_role.yaml -------------------------------------------------------------------------------- /config/rbac/cryostat_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/cryostat_role.yaml -------------------------------------------------------------------------------- /config/rbac/cryostat_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/cryostat_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/oauth_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/oauth_client.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1beta1_cryostat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/operator_v1beta1_cryostat.yaml -------------------------------------------------------------------------------- /config/samples/operator_v1beta2_cryostat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/operator_v1beta2_cryostat.yaml -------------------------------------------------------------------------------- /config/samples/sample-app-agent-injected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/sample-app-agent-injected.yaml -------------------------------------------------------------------------------- /config/samples/sample-app-agent-tls-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/sample-app-agent-tls-proxy.yaml -------------------------------------------------------------------------------- /config/samples/sample-app-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/sample-app-agent.yaml -------------------------------------------------------------------------------- /config/samples/sample-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/samples/sample-app.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/custom.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/scorecard/patches/custom.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/images/cryostat-icon-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/docs/images/cryostat-icon-reverse.svg -------------------------------------------------------------------------------- /docs/images/cryostat-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/docs/images/cryostat-icon.svg -------------------------------------------------------------------------------- /go-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/go-license.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/custom.config.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/custom.config.yaml.in -------------------------------------------------------------------------------- /hack/image_pull_patch.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/image_pull_patch.yaml.in -------------------------------------------------------------------------------- /hack/image_tag_patch.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/image_tag_patch.yaml.in -------------------------------------------------------------------------------- /hack/insights_image_pull_patch.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/insights_image_pull_patch.yaml.in -------------------------------------------------------------------------------- /hack/insights_patch.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/insights_patch.yaml.in -------------------------------------------------------------------------------- /hack/plugin_image_pull_patch.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/hack/plugin_image_pull_patch.yaml.in -------------------------------------------------------------------------------- /internal/console/console_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/console/console_suite_test.go -------------------------------------------------------------------------------- /internal/console/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/console/plugin.go -------------------------------------------------------------------------------- /internal/console/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/console/plugin_test.go -------------------------------------------------------------------------------- /internal/console/test/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/console/test/resources.go -------------------------------------------------------------------------------- /internal/controllers/certmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/certmanager.go -------------------------------------------------------------------------------- /internal/controllers/common/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/builder.go -------------------------------------------------------------------------------- /internal/controllers/common/common_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/common_utils.go -------------------------------------------------------------------------------- /internal/controllers/common/finalizer_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/finalizer_utils.go -------------------------------------------------------------------------------- /internal/controllers/common/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/naming.go -------------------------------------------------------------------------------- /internal/controllers/common/resource_definitions/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/resource_definitions/certificates.go -------------------------------------------------------------------------------- /internal/controllers/common/resource_definitions/resource_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/resource_definitions/resource_definitions.go -------------------------------------------------------------------------------- /internal/controllers/common/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/common/tls.go -------------------------------------------------------------------------------- /internal/controllers/configmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/configmaps.go -------------------------------------------------------------------------------- /internal/controllers/constants/const_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/constants/const_generated.go -------------------------------------------------------------------------------- /internal/controllers/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/constants/constants.go -------------------------------------------------------------------------------- /internal/controllers/cryostat_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/cryostat_controller.go -------------------------------------------------------------------------------- /internal/controllers/cryostat_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/cryostat_controller_test.go -------------------------------------------------------------------------------- /internal/controllers/ingresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/ingresses.go -------------------------------------------------------------------------------- /internal/controllers/model/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/model/instance.go -------------------------------------------------------------------------------- /internal/controllers/networkpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/networkpolicy.go -------------------------------------------------------------------------------- /internal/controllers/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/openshift.go -------------------------------------------------------------------------------- /internal/controllers/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/pvc.go -------------------------------------------------------------------------------- /internal/controllers/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/rbac.go -------------------------------------------------------------------------------- /internal/controllers/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/reconciler.go -------------------------------------------------------------------------------- /internal/controllers/reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/reconciler_test.go -------------------------------------------------------------------------------- /internal/controllers/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/routes.go -------------------------------------------------------------------------------- /internal/controllers/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/secrets.go -------------------------------------------------------------------------------- /internal/controllers/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/services.go -------------------------------------------------------------------------------- /internal/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/controllers/suite_test.go -------------------------------------------------------------------------------- /internal/fips/fips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/fips/fips.go -------------------------------------------------------------------------------- /internal/fips/fips_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/fips/fips_suite_test.go -------------------------------------------------------------------------------- /internal/fips/fips_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/fips/fips_test.go -------------------------------------------------------------------------------- /internal/fips/test/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/fips/test/resources.go -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/.gitignore -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/Dockerfile -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/bin/entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | exec ${TEST} $@ 4 | -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/bin/user_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/bin/user_setup -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/main.go -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/rbac/kustomization.yaml -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/rbac/scorecard_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/rbac/scorecard_role.yaml -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/rbac/scorecard_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/rbac/scorecard_role_binding.yaml -------------------------------------------------------------------------------- /internal/images/custom-scorecard-tests/rbac/scorecard_service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/images/custom-scorecard-tests/rbac/scorecard_service_account.yaml -------------------------------------------------------------------------------- /internal/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/main.go -------------------------------------------------------------------------------- /internal/test/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/builder.go -------------------------------------------------------------------------------- /internal/test/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/clients.go -------------------------------------------------------------------------------- /internal/test/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/conversion.go -------------------------------------------------------------------------------- /internal/test/expect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/expect.go -------------------------------------------------------------------------------- /internal/test/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/reconciler.go -------------------------------------------------------------------------------- /internal/test/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/resources.go -------------------------------------------------------------------------------- /internal/test/scorecard/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/clients.go -------------------------------------------------------------------------------- /internal/test/scorecard/common_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/common_utils.go -------------------------------------------------------------------------------- /internal/test/scorecard/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/logger.go -------------------------------------------------------------------------------- /internal/test/scorecard/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/openshift.go -------------------------------------------------------------------------------- /internal/test/scorecard/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/tests.go -------------------------------------------------------------------------------- /internal/test/scorecard/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/test/scorecard/types.go -------------------------------------------------------------------------------- /internal/tools/const_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/tools/const_generator.go -------------------------------------------------------------------------------- /internal/webhooks/agent/agent_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/agent/agent_suite_test.go -------------------------------------------------------------------------------- /internal/webhooks/agent/pod_defaulter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/agent/pod_defaulter.go -------------------------------------------------------------------------------- /internal/webhooks/agent/pod_defaulter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/agent/pod_defaulter_test.go -------------------------------------------------------------------------------- /internal/webhooks/agent/pod_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/agent/pod_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/agent/test/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/agent/test/resources.go -------------------------------------------------------------------------------- /internal/webhooks/cryostat_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/cryostat_webhook.go -------------------------------------------------------------------------------- /internal/webhooks/defaulter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/defaulter.go -------------------------------------------------------------------------------- /internal/webhooks/defaulter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/defaulter_test.go -------------------------------------------------------------------------------- /internal/webhooks/test/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/test/resources.go -------------------------------------------------------------------------------- /internal/webhooks/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/validator.go -------------------------------------------------------------------------------- /internal/webhooks/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/validator_test.go -------------------------------------------------------------------------------- /internal/webhooks/webhook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryostatio/cryostat-operator/HEAD/internal/webhooks/webhook_suite_test.go --------------------------------------------------------------------------------