├── .generate └── gen-all.sh ├── .gitignore ├── LICENSE ├── README.md ├── ansible ├── .generate │ ├── defaults_main.yml │ ├── gen-ansible-memcached.sh │ ├── role_main.yml │ ├── size_podcount_test.yml │ └── test-molecule.sh ├── README.md └── memcached-operator │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── PROJECT │ ├── README.md │ ├── bundle.Dockerfile │ ├── bundle │ ├── manifests │ │ ├── cache.example.com_memcacheds.yaml │ │ ├── memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml │ │ └── memcached-operator.clusterserviceversion.yaml │ ├── metadata │ │ └── annotations.yaml │ └── tests │ │ └── scorecard │ │ └── config.yaml │ ├── config │ ├── crd │ │ ├── bases │ │ │ └── cache.example.com_memcacheds.yaml │ │ └── kustomization.yaml │ ├── default │ │ ├── kustomization.yaml │ │ └── manager_auth_proxy_patch.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── manifests │ │ ├── bases │ │ │ └── memcached-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 │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── memcached_editor_role.yaml │ │ ├── memcached_viewer_role.yaml │ │ ├── role.yaml │ │ └── role_binding.yaml │ ├── samples │ │ ├── cache_v1alpha1_memcached.yaml │ │ └── kustomization.yaml │ ├── scorecard │ │ ├── bases │ │ │ └── config.yaml │ │ ├── kustomization.yaml │ │ └── patches │ │ │ ├── basic.config.yaml │ │ │ └── olm.config.yaml │ └── testing │ │ ├── debug_logs_patch.yaml │ │ ├── kustomization.yaml │ │ ├── manager_image.yaml │ │ └── pull_policy │ │ ├── Always.yaml │ │ ├── IfNotPresent.yaml │ │ └── Never.yaml │ ├── molecule │ ├── default │ │ ├── converge.yml │ │ ├── create.yml │ │ ├── destroy.yml │ │ ├── kustomize.yml │ │ ├── molecule.yml │ │ ├── prepare.yml │ │ ├── tasks │ │ │ ├── memcached_test.yml │ │ │ └── size_podcount_test.yml │ │ └── verify.yml │ └── kind │ │ ├── converge.yml │ │ ├── create.yml │ │ ├── destroy.yml │ │ └── molecule.yml │ ├── playbooks │ └── .placeholder │ ├── requirements.yml │ ├── roles │ ├── .placeholder │ └── memcached │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ └── .placeholder │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── templates │ │ └── .placeholder │ │ └── vars │ │ └── main.yml │ └── watches.yaml ├── go ├── .generate │ └── gen-go-sample.sh ├── .gitignore ├── README.md ├── doc │ └── README.md └── memcached-operator │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── PROJECT │ ├── api │ └── v1alpha1 │ │ ├── groupversion_info.go │ │ ├── memcached_types.go │ │ ├── memcached_webhook.go │ │ └── zz_generated.deepcopy.go │ ├── bundle.Dockerfile │ ├── bundle │ ├── manifests │ │ ├── cache.example.com_memcacheds.yaml │ │ ├── memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml │ │ └── memcached-operator.clusterserviceversion.yaml │ ├── metadata │ │ └── annotations.yaml │ └── tests │ │ └── scorecard │ │ └── config.yaml │ ├── config │ ├── certmanager │ │ ├── certificate.yaml │ │ ├── kustomization.yaml │ │ └── kustomizeconfig.yaml │ ├── crd │ │ ├── bases │ │ │ └── cache.example.com_memcacheds.yaml │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ └── patches │ │ │ ├── cainjection_in_memcacheds.yaml │ │ │ └── webhook_in_memcacheds.yaml │ ├── default │ │ ├── kustomization.yaml │ │ ├── manager_auth_proxy_patch.yaml │ │ ├── manager_webhook_patch.yaml │ │ └── webhookcainjection_patch.yaml │ ├── manager │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── manifests │ │ ├── bases │ │ │ └── memcached-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 │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── memcached_editor_role.yaml │ │ ├── memcached_viewer_role.yaml │ │ ├── role.yaml │ │ └── role_binding.yaml │ ├── samples │ │ ├── cache_v1alpha1_memcached.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 │ ├── memcached_controller.go │ └── suite_test.go │ ├── go.mod │ ├── go.sum │ ├── hack │ └── boilerplate.go.txt │ ├── main.go │ └── packagemanifests │ ├── 0.0.1 │ ├── cache.example.com_memcacheds.yaml │ ├── memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml │ └── memcached-operator.clusterserviceversion.yaml │ └── memcached-operator.package.yaml └── helm ├── .generate ├── gen-helm-memcached.sh └── policy-role.yaml ├── README.md └── memcached-operator ├── .gitignore ├── Dockerfile ├── Makefile ├── PROJECT ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── cache.example.com_memcacheds.yaml │ ├── memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml │ └── memcached-operator.clusterserviceversion.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── config ├── crd │ ├── bases │ │ └── cache.example.com_memcacheds.yaml │ └── kustomization.yaml ├── default │ ├── kustomization.yaml │ └── manager_auth_proxy_patch.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── memcached-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 │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── memcached_editor_role.yaml │ ├── memcached_viewer_role.yaml │ ├── role.yaml │ └── role_binding.yaml ├── samples │ ├── cache_v1alpha1_memcached.yaml │ └── kustomization.yaml └── scorecard │ ├── bases │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ ├── basic.config.yaml │ └── olm.config.yaml ├── helm-charts └── memcached │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── pdb.yaml │ ├── servicemonitor.yaml │ ├── statefulset.yaml │ └── svc.yaml │ └── values.yaml └── watches.yaml /.generate/gen-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/.generate/gen-all.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/README.md -------------------------------------------------------------------------------- /ansible/.generate/defaults_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/.generate/defaults_main.yml -------------------------------------------------------------------------------- /ansible/.generate/gen-ansible-memcached.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/.generate/gen-ansible-memcached.sh -------------------------------------------------------------------------------- /ansible/.generate/role_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/.generate/role_main.yml -------------------------------------------------------------------------------- /ansible/.generate/size_podcount_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/.generate/size_podcount_test.yml -------------------------------------------------------------------------------- /ansible/.generate/test-molecule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/.generate/test-molecule.sh -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/memcached-operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/.gitignore -------------------------------------------------------------------------------- /ansible/memcached-operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/Dockerfile -------------------------------------------------------------------------------- /ansible/memcached-operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/Makefile -------------------------------------------------------------------------------- /ansible/memcached-operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/PROJECT -------------------------------------------------------------------------------- /ansible/memcached-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/README.md -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle.Dockerfile -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/default/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /ansible/memcached-operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/memcached_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/memcached_editor_role.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/memcached_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/memcached_viewer_role.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/debug_logs_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/debug_logs_patch.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/kustomization.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/manager_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/manager_image.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/pull_policy/Always.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/pull_policy/Always.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/pull_policy/IfNotPresent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/pull_policy/IfNotPresent.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/config/testing/pull_policy/Never.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/config/testing/pull_policy/Never.yaml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/converge.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/create.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/destroy.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/kustomize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/kustomize.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/prepare.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/tasks/memcached_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/tasks/memcached_test.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/tasks/size_podcount_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/tasks/size_podcount_test.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/default/verify.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/kind/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/kind/converge.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/kind/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/kind/create.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/kind/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/kind/destroy.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/molecule/kind/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/molecule/kind/molecule.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/playbooks/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/memcached-operator/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/requirements.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/roles/memcached/README.md -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/roles/memcached/defaults/main.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/files/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for Memcached 3 | -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/roles/memcached/meta/main.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/roles/memcached/tasks/main.yml -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/memcached-operator/roles/memcached/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for Memcached 3 | -------------------------------------------------------------------------------- /ansible/memcached-operator/watches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/ansible/memcached-operator/watches.yaml -------------------------------------------------------------------------------- /go/.generate/gen-go-sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/.generate/gen-go-sample.sh -------------------------------------------------------------------------------- /go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/.gitignore -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/README.md -------------------------------------------------------------------------------- /go/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/doc/README.md -------------------------------------------------------------------------------- /go/memcached-operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/.gitignore -------------------------------------------------------------------------------- /go/memcached-operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/Dockerfile -------------------------------------------------------------------------------- /go/memcached-operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/Makefile -------------------------------------------------------------------------------- /go/memcached-operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/PROJECT -------------------------------------------------------------------------------- /go/memcached-operator/api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /go/memcached-operator/api/v1alpha1/memcached_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/api/v1alpha1/memcached_types.go -------------------------------------------------------------------------------- /go/memcached-operator/api/v1alpha1/memcached_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/api/v1alpha1/memcached_webhook.go -------------------------------------------------------------------------------- /go/memcached-operator/api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /go/memcached-operator/bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle.Dockerfile -------------------------------------------------------------------------------- /go/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /go/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml -------------------------------------------------------------------------------- /go/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /go/memcached-operator/bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /go/memcached-operator/bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/crd/patches/cainjection_in_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/crd/patches/cainjection_in_memcacheds.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/crd/patches/webhook_in_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/crd/patches/webhook_in_memcacheds.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/default/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /go/memcached-operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/memcached_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/memcached_editor_role.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/memcached_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/memcached_viewer_role.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /go/memcached-operator/config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/config/webhook/service.yaml -------------------------------------------------------------------------------- /go/memcached-operator/controllers/memcached_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/controllers/memcached_controller.go -------------------------------------------------------------------------------- /go/memcached-operator/controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/controllers/suite_test.go -------------------------------------------------------------------------------- /go/memcached-operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/go.mod -------------------------------------------------------------------------------- /go/memcached-operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/go.sum -------------------------------------------------------------------------------- /go/memcached-operator/hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /go/memcached-operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/main.go -------------------------------------------------------------------------------- /go/memcached-operator/packagemanifests/0.0.1/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/packagemanifests/0.0.1/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /go/memcached-operator/packagemanifests/0.0.1/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/packagemanifests/0.0.1/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml -------------------------------------------------------------------------------- /go/memcached-operator/packagemanifests/0.0.1/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/packagemanifests/0.0.1/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /go/memcached-operator/packagemanifests/memcached-operator.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/go/memcached-operator/packagemanifests/memcached-operator.package.yaml -------------------------------------------------------------------------------- /helm/.generate/gen-helm-memcached.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/.generate/gen-helm-memcached.sh -------------------------------------------------------------------------------- /helm/.generate/policy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/.generate/policy-role.yaml -------------------------------------------------------------------------------- /helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/README.md -------------------------------------------------------------------------------- /helm/memcached-operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/.gitignore -------------------------------------------------------------------------------- /helm/memcached-operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/Dockerfile -------------------------------------------------------------------------------- /helm/memcached-operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/Makefile -------------------------------------------------------------------------------- /helm/memcached-operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/PROJECT -------------------------------------------------------------------------------- /helm/memcached-operator/bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle.Dockerfile -------------------------------------------------------------------------------- /helm/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle/manifests/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle/manifests/memcached-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle/manifests/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/crd/bases/cache.example.com_memcacheds.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/default/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/manifests/bases/memcached-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /helm/memcached-operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/memcached_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/memcached_editor_role.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/memcached_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/memcached_viewer_role.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/samples/cache_v1alpha1_memcached.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS 3 | -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/Chart.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/README.md -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/templates/svc.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/helm-charts/memcached/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/helm-charts/memcached/values.yaml -------------------------------------------------------------------------------- /helm/memcached-operator/watches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-sdk-samples/HEAD/helm/memcached-operator/watches.yaml --------------------------------------------------------------------------------