├── .dockerignore ├── .github ├── CODEOWNERS └── workflows │ ├── kindIntegTest.yml │ ├── operatorBuildAndDeploy.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── charts └── cass-operator-chart │ ├── Chart.yaml │ ├── templates │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── customresourcedefinition.yaml │ ├── deployment.yaml │ ├── registry-secret.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ ├── validatingwebhookconfiguration.yaml │ ├── webhook-cr.yaml │ ├── webhook-crb.yaml │ ├── webhook-secret.yaml │ └── webhook-service.yaml │ └── values.yaml ├── docs ├── developer │ ├── config.md │ ├── diagrams │ │ ├── scale-up-diagram.mmd │ │ ├── scale-up-diagram.svg │ │ ├── update-diagram.mmd │ │ └── update-diagram.svg │ ├── k8s_targets.md │ ├── mage.md │ ├── minikube.md │ ├── release-process.md │ ├── seeds.md │ ├── validating_webhook.md │ └── workflow_details.md ├── ingress │ ├── README.md │ ├── kong │ │ ├── ingress │ │ │ ├── README.md │ │ │ └── sample-cluster-sample-dc.tcpingress.yaml │ │ ├── mtls-sni-ingress │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── mtls-auth.kong-plugin.yaml │ │ │ ├── sample-cluster-sample-dc.tcpingress.yaml │ │ │ └── values.yaml.example │ │ └── sni-ingress │ │ │ ├── README.md │ │ │ └── sample-cluster-sample-dc.tcpingress.yaml │ ├── sample-cluster-sample-dc.yaml │ ├── sample-java-application │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ └── jSSLKeyLog.jar │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── datastax │ │ │ │ │ └── kubernetes │ │ │ │ │ ├── KubernetesIngressAddressTranslator.java │ │ │ │ │ ├── KubernetesOption.java │ │ │ │ │ └── SampleApp.java │ │ │ └── resources │ │ │ │ ├── direct.conf │ │ │ │ ├── ingress.conf │ │ │ │ ├── logback.xml │ │ │ │ ├── mtls-sni-ingress.conf │ │ │ │ └── sni-ingress.conf │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── datastax │ │ │ └── examples │ │ │ └── AppTest.java │ ├── ssl │ │ ├── README.md │ │ ├── ca.csr.json │ │ ├── client.csr.json │ │ ├── client.keystore │ │ ├── client.truststore │ │ └── ingress.csr.json │ └── traefik │ │ ├── dashboard.ingressroute.yaml │ │ ├── load-balancing │ │ ├── README.md │ │ └── sample-cluster-sample-dc.ingressroutetcp.yaml │ │ ├── mtls-load-balancing │ │ ├── README.md │ │ ├── sample-cluster-sample-dc.ingressroutetcp.yaml │ │ └── sample-cluster-sample-dc.tlsoption.yaml │ │ └── mtls-sni │ │ ├── README.md │ │ ├── sample-cluster-sample-dc.ingressroutetcp.yaml │ │ └── sample-cluster-sample-dc.tlsoption.yaml └── user │ ├── README.md │ ├── cass-operator-manifests-v1.15.yaml │ ├── cass-operator-manifests-v1.16.yaml │ ├── cass-operator-manifests-v1.17.yaml │ ├── cass-operator-manifests-v1.18.yaml │ ├── cass-operator-manifests-v1.19.yaml │ └── jvm_server_configuration.md ├── go.mod ├── go.sum ├── hack ├── kind-reload-operator.sh ├── license-prepend │ ├── license-header.txt │ └── license-prepend.sh ├── release │ ├── build-kind-control-planes.sh │ ├── check-chart-sources.sh │ └── make-yaml-bundle.sh └── run_kubefwd.sh ├── mage ├── config │ └── lib.go ├── docker │ └── lib.go ├── gcloud │ └── lib.go ├── ginkgo │ └── lib.go ├── git │ └── lib.go ├── helm │ └── lib.go ├── integ-tests │ ├── lib.go │ └── lib_test.go ├── jenkins │ └── lib.go ├── k3d │ └── lib.go ├── k8s │ └── lib.go ├── kind │ └── lib.go ├── kubectl │ └── lib.go ├── linting │ └── lib.go ├── operator │ ├── crd.patch │ ├── deploy.go │ ├── lib.go │ └── lib_test.go ├── sh │ └── lib.go └── util │ └── lib.go ├── magefile.go ├── operator ├── cmd │ └── manager │ │ └── main.go ├── deploy │ ├── README.md │ ├── cluster_role.yaml │ ├── cluster_role_binding.yaml │ ├── crds │ │ └── cassandra.datastax.com_cassandradatacenters_crd.yaml │ ├── namespace.yaml │ ├── operator.yaml │ ├── role.yaml │ ├── role_binding.yaml │ ├── service_account.yaml │ ├── webhook_configuration.yaml │ ├── webhook_secret.yaml │ └── webhook_service.yaml ├── docker │ ├── base │ │ └── Dockerfile │ └── ubi │ │ └── LICENSE ├── example-cassdc-yaml │ ├── cassandra-3.11.x │ │ ├── example-cassdc-full.yaml │ │ ├── example-cassdc-minimal.yaml │ │ └── example-cassdc-three-rack-three-node.yaml │ └── dse-6.8.x │ │ ├── example-cassdc-full.yaml │ │ ├── example-cassdc-minimal.yaml │ │ └── example-cassdc-three-rack-three-node.yaml ├── internal │ └── result │ │ ├── result_helper.go │ │ └── result_helper_test.go ├── k8s-flavors │ ├── aks │ │ └── storage.yaml │ ├── eks │ │ └── storage.yaml │ ├── gke │ │ └── storage.yaml │ ├── kind │ │ ├── kind-example-config.yaml │ │ └── rancher-local-path-storage.yaml │ └── minikube │ │ └── storage.yaml ├── pkg │ ├── admissionwebhook │ │ └── webhook.go │ ├── apis │ │ ├── addtoscheme_cassandra_v1beta1.go │ │ ├── apis.go │ │ └── cassandra │ │ │ ├── group.go │ │ │ └── v1beta1 │ │ │ ├── cassandradatacenter_types.go │ │ │ ├── cassandradatacenter_types_test.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── webhook.go │ │ │ ├── webhook_test.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.openapi.go │ ├── controller │ │ ├── add_cassandradatacenter.go │ │ ├── cassandradatacenter │ │ │ └── cassandradatacenter_controller.go │ │ └── controller.go │ ├── dynamicwatch │ │ └── watch.go │ ├── events │ │ ├── events.go │ │ └── events_test.go │ ├── generated │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── cassandra │ │ │ └── v1beta1 │ │ │ ├── cassandra_client.go │ │ │ ├── cassandradatacenter.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_cassandra_client.go │ │ │ └── fake_cassandradatacenter.go │ │ │ └── generated_expansion.go │ ├── httphelper │ │ ├── client.go │ │ ├── client_test.go │ │ ├── httpclient.go │ │ ├── security.go │ │ ├── security_test.go │ │ └── testdata │ │ │ ├── ca.crt │ │ │ ├── ca.key │ │ │ ├── client.crt │ │ │ ├── client.key │ │ │ ├── evil_ca.crt │ │ │ ├── evil_ca.key │ │ │ ├── gencerts.sh │ │ │ ├── server.crt │ │ │ ├── server.encrypted.key │ │ │ ├── server.key │ │ │ └── server.rsa.key │ ├── images │ │ ├── images.go │ │ └── images_test.go │ ├── mocks │ │ ├── Client.go │ │ └── HttpClient.go │ ├── oplabels │ │ └── labels.go │ ├── psp │ │ ├── emm.go │ │ ├── emm_test.go │ │ ├── labels_annotations.go │ │ ├── networkpolicies.go │ │ └── psp_status.go │ ├── reconciliation │ │ ├── check_nodes.go │ │ ├── construct_podtemplatespec.go │ │ ├── construct_podtemplatespec_test.go │ │ ├── construct_service.go │ │ ├── construct_service_test.go │ │ ├── construct_statefulset.go │ │ ├── construct_statefulset_test.go │ │ ├── constructor.go │ │ ├── context.go │ │ ├── decommission_node.go │ │ ├── decommission_node_test.go │ │ ├── defaults.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── rackinformation.go │ │ ├── reconcile_datacenter.go │ │ ├── reconcile_datacenter_test.go │ │ ├── reconcile_endpoints.go │ │ ├── reconcile_racks.go │ │ ├── reconcile_racks_helpers.go │ │ ├── reconcile_racks_helpers_test.go │ │ ├── reconcile_racks_test.go │ │ ├── reconcile_reaper.go │ │ ├── reconcile_reaper_test.go │ │ ├── reconcile_services.go │ │ ├── reconcile_services_test.go │ │ ├── secrets.go │ │ ├── secrets_test.go │ │ ├── testing.go │ │ └── utils.go │ ├── serverconfig │ │ ├── configgen.go │ │ └── configgen_test.go │ └── utils │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── hash_annotation.go │ │ ├── hash_annotation_test.go │ │ ├── k8s_utils.go │ │ ├── utilities.go │ │ └── utilities_test.go └── tools.go ├── scripts ├── build-push-images.sh └── push-release.sh ├── tests ├── README.md ├── add_racks │ └── add_racks_suite_test.go ├── additional_seeds │ └── additional_seeds_suite_test.go ├── additional_serviceoptions │ └── additional_service_opts_suite_test.go ├── additional_volumes │ └── additional_volumes_suite_test.go ├── bring_up_graph │ └── bring_up_graph_suite_test.go ├── bring_up_solr │ └── bring_up_solr_suite_test.go ├── bring_up_spark │ └── bring_up_spark_suite_test.go ├── canary_upgrade │ └── canary_upgrade_test.go ├── cluster_wide_install │ └── cluster_wide_install_suite_test.go ├── config_change │ └── config_change_suite_test.go ├── config_change_condition │ └── config_change_condition_suite_test.go ├── delete_node_lost_readiness │ └── delete_node_lost_readiness_suite_test.go ├── delete_node_terminated_container │ └── delete_node_terminate_container_suite_test.go ├── enable_reaper │ └── enable_reaper_suite_test.go ├── helm_chart_imagepullsecrets │ └── helm_chart_imagepullsecrets_suite_test.go ├── host_network │ └── host_network_suite_test.go ├── internode-encryption-generated │ └── internode_secret_generated_test.go ├── internode_encryption │ └── internode_encryption_test.go ├── multi_cluster_management │ └── multi_cluster_management_suite_test.go ├── no_infinite_reconcile │ └── no_infinite_reconcile_suite_test.go ├── node_replace │ └── node_replace_suite_test.go ├── nodeport_service │ └── nodeport_service_suite_test.go ├── oss_test_all_the_things │ └── oss_test_all_the_things_suite_test.go ├── podspec_simple │ └── podspec_simple_suite_test.go ├── psp_emm │ └── psp_emm_suite_test.go ├── psp_health │ └── psp_health_suite_test.go ├── psp_pvc_annotation │ └── psp_pvc_annotation_suite_test.go ├── rolling_restart │ └── rolling_restart_suite_test.go ├── scale_down │ └── scale_down_suite_test.go ├── scale_down_not_enough_space │ └── scale_down_not_enough_space_suite_test.go ├── scale_down_unbalanced_racks │ └── scale_down_unbalanced_racks_suite_test.go ├── scale_up │ └── scale_up_suite_test.go ├── scale_up_stop_resume │ └── scale_up_park_unpark_suite_test.go ├── seed_selection │ └── seed_selection_suite_test.go ├── smoke_test_dse │ └── smoke_test_dse_suite_test.go ├── smoke_test_oss │ └── smoke_test_oss_suite_test.go ├── stop_resume │ └── park_unpark_suite_test.go ├── stop_resume_scale_up │ └── park_unpark_scale_up_suite_test.go ├── superuser-secret-generated │ └── superuser_secret_generated_test.go ├── superuser-secret-provided │ └── superuser_secret_provided_test.go ├── terminate │ └── terminate_suite_test.go ├── test_bad_config_and_fix │ └── test_bad_config_and_fix_suite_test.go ├── test_mtls_mgmt_api │ └── test_mtls_mgmt_api_suite_test.go ├── testdata │ ├── additional-seeds-two-rack-four-node-dc.yaml │ ├── additional-service-annotations-and-labels.yaml │ ├── bob-secret-changed.yaml │ ├── bob-secret.yaml │ ├── cass-operator-1.1.0-chart │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── customresourcedefinition.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── validatingwebhookconfiguration.yaml │ │ └── values.yaml │ ├── cluster-wide-install-dc1.yaml │ ├── cluster-wide-install-dc2.yaml │ ├── default-single-rack-2-node-dc-with-superuser-secret.yaml │ ├── default-single-rack-2-node-dc.yaml │ ├── default-single-rack-single-node-addtional-volumes-dc.yaml │ ├── default-single-rack-single-node-dc.yaml │ ├── default-single-rack-single-node-extra-container-dc.yaml │ ├── default-single-rack-single-node-prestop-dc.yaml │ ├── default-three-rack-four-node-dc.yaml │ ├── default-three-rack-four-node-limited-storage-dc.yaml │ ├── default-three-rack-three-node-dc.yaml │ ├── default-two-rack-four-node-dc.yaml │ ├── encrypted-single-rack-2-node-dc.yaml │ ├── graph-dc.yaml │ ├── host-network-dc.yaml │ ├── kind │ │ ├── kind_config_1_worker.yaml │ │ ├── kind_config_3_workers.yaml │ │ └── kind_config_6_workers.yaml │ ├── mtls-certs-client.yaml │ ├── mtls-certs-server.yaml │ ├── nodeport-service-dc.yaml │ ├── operator-1.1.0-oss-dc.yaml │ ├── oss-one-node-dc-with-mtls.yaml │ ├── oss-one-node-dc-without-mtls.yaml │ ├── oss-three-rack-three-node-dc.yaml │ ├── oss-two-rack-six-node-dc.yaml │ ├── oss-upgrade-dc.yaml │ ├── psp-emm-dc.yaml │ ├── smoke-test-dse.yaml │ ├── smoke-test-oss.yaml │ ├── solr-dc.yaml │ └── spark-dc.yaml ├── timeout_prestop_termination │ └── timeout_prestop_termination_suite_test.go ├── upgrade_operator │ └── upgrade_operator_suite_test.go └── webhook_validation │ └── webhook_validation_suite_test.go └── tools ├── k8s-code-generator └── Dockerfile ├── mermaid-js ├── Dockerfile └── puppeteer-config.json └── operator-sdk └── Dockerfile /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/kindIntegTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.github/workflows/kindIntegTest.yml -------------------------------------------------------------------------------- /.github/workflows/operatorBuildAndDeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.github/workflows/operatorBuildAndDeploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/README.md -------------------------------------------------------------------------------- /charts/cass-operator-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/Chart.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/customresourcedefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/customresourcedefinition.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/registry-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/registry-secret.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/role.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/validatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/validatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/webhook-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/webhook-cr.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/webhook-crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/webhook-crb.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/webhook-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/webhook-secret.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/templates/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/templates/webhook-service.yaml -------------------------------------------------------------------------------- /charts/cass-operator-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/charts/cass-operator-chart/values.yaml -------------------------------------------------------------------------------- /docs/developer/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/config.md -------------------------------------------------------------------------------- /docs/developer/diagrams/scale-up-diagram.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/diagrams/scale-up-diagram.mmd -------------------------------------------------------------------------------- /docs/developer/diagrams/scale-up-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/diagrams/scale-up-diagram.svg -------------------------------------------------------------------------------- /docs/developer/diagrams/update-diagram.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/diagrams/update-diagram.mmd -------------------------------------------------------------------------------- /docs/developer/diagrams/update-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/diagrams/update-diagram.svg -------------------------------------------------------------------------------- /docs/developer/k8s_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/k8s_targets.md -------------------------------------------------------------------------------- /docs/developer/mage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/mage.md -------------------------------------------------------------------------------- /docs/developer/minikube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/minikube.md -------------------------------------------------------------------------------- /docs/developer/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/release-process.md -------------------------------------------------------------------------------- /docs/developer/seeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/seeds.md -------------------------------------------------------------------------------- /docs/developer/validating_webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/validating_webhook.md -------------------------------------------------------------------------------- /docs/developer/workflow_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/developer/workflow_details.md -------------------------------------------------------------------------------- /docs/ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/README.md -------------------------------------------------------------------------------- /docs/ingress/kong/ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/ingress/README.md -------------------------------------------------------------------------------- /docs/ingress/kong/ingress/sample-cluster-sample-dc.tcpingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/ingress/sample-cluster-sample-dc.tcpingress.yaml -------------------------------------------------------------------------------- /docs/ingress/kong/mtls-sni-ingress/.gitignore: -------------------------------------------------------------------------------- 1 | values.yaml 2 | -------------------------------------------------------------------------------- /docs/ingress/kong/mtls-sni-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/mtls-sni-ingress/README.md -------------------------------------------------------------------------------- /docs/ingress/kong/mtls-sni-ingress/mtls-auth.kong-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/mtls-sni-ingress/mtls-auth.kong-plugin.yaml -------------------------------------------------------------------------------- /docs/ingress/kong/mtls-sni-ingress/sample-cluster-sample-dc.tcpingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/mtls-sni-ingress/sample-cluster-sample-dc.tcpingress.yaml -------------------------------------------------------------------------------- /docs/ingress/kong/mtls-sni-ingress/values.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/mtls-sni-ingress/values.yaml.example -------------------------------------------------------------------------------- /docs/ingress/kong/sni-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/sni-ingress/README.md -------------------------------------------------------------------------------- /docs/ingress/kong/sni-ingress/sample-cluster-sample-dc.tcpingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/kong/sni-ingress/sample-cluster-sample-dc.tcpingress.yaml -------------------------------------------------------------------------------- /docs/ingress/sample-cluster-sample-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-cluster-sample-dc.yaml -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/.gitignore -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/README.md -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/lib/jSSLKeyLog.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/lib/jSSLKeyLog.jar -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/pom.xml -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/KubernetesIngressAddressTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/KubernetesIngressAddressTranslator.java -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/KubernetesOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/KubernetesOption.java -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/SampleApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/java/com/datastax/kubernetes/SampleApp.java -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/resources/direct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/resources/direct.conf -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/resources/ingress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/resources/ingress.conf -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/resources/logback.xml -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/resources/mtls-sni-ingress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/resources/mtls-sni-ingress.conf -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/main/resources/sni-ingress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/main/resources/sni-ingress.conf -------------------------------------------------------------------------------- /docs/ingress/sample-java-application/src/test/java/com/datastax/examples/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/sample-java-application/src/test/java/com/datastax/examples/AppTest.java -------------------------------------------------------------------------------- /docs/ingress/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/README.md -------------------------------------------------------------------------------- /docs/ingress/ssl/ca.csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/ca.csr.json -------------------------------------------------------------------------------- /docs/ingress/ssl/client.csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/client.csr.json -------------------------------------------------------------------------------- /docs/ingress/ssl/client.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/client.keystore -------------------------------------------------------------------------------- /docs/ingress/ssl/client.truststore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/client.truststore -------------------------------------------------------------------------------- /docs/ingress/ssl/ingress.csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/ssl/ingress.csr.json -------------------------------------------------------------------------------- /docs/ingress/traefik/dashboard.ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/dashboard.ingressroute.yaml -------------------------------------------------------------------------------- /docs/ingress/traefik/load-balancing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/load-balancing/README.md -------------------------------------------------------------------------------- /docs/ingress/traefik/load-balancing/sample-cluster-sample-dc.ingressroutetcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/load-balancing/sample-cluster-sample-dc.ingressroutetcp.yaml -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-load-balancing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-load-balancing/README.md -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-load-balancing/sample-cluster-sample-dc.ingressroutetcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-load-balancing/sample-cluster-sample-dc.ingressroutetcp.yaml -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-load-balancing/sample-cluster-sample-dc.tlsoption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-load-balancing/sample-cluster-sample-dc.tlsoption.yaml -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-sni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-sni/README.md -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-sni/sample-cluster-sample-dc.ingressroutetcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-sni/sample-cluster-sample-dc.ingressroutetcp.yaml -------------------------------------------------------------------------------- /docs/ingress/traefik/mtls-sni/sample-cluster-sample-dc.tlsoption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/ingress/traefik/mtls-sni/sample-cluster-sample-dc.tlsoption.yaml -------------------------------------------------------------------------------- /docs/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/README.md -------------------------------------------------------------------------------- /docs/user/cass-operator-manifests-v1.15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/cass-operator-manifests-v1.15.yaml -------------------------------------------------------------------------------- /docs/user/cass-operator-manifests-v1.16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/cass-operator-manifests-v1.16.yaml -------------------------------------------------------------------------------- /docs/user/cass-operator-manifests-v1.17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/cass-operator-manifests-v1.17.yaml -------------------------------------------------------------------------------- /docs/user/cass-operator-manifests-v1.18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/cass-operator-manifests-v1.18.yaml -------------------------------------------------------------------------------- /docs/user/cass-operator-manifests-v1.19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/cass-operator-manifests-v1.19.yaml -------------------------------------------------------------------------------- /docs/user/jvm_server_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/docs/user/jvm_server_configuration.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/kind-reload-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/kind-reload-operator.sh -------------------------------------------------------------------------------- /hack/license-prepend/license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/license-prepend/license-header.txt -------------------------------------------------------------------------------- /hack/license-prepend/license-prepend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/license-prepend/license-prepend.sh -------------------------------------------------------------------------------- /hack/release/build-kind-control-planes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/release/build-kind-control-planes.sh -------------------------------------------------------------------------------- /hack/release/check-chart-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/release/check-chart-sources.sh -------------------------------------------------------------------------------- /hack/release/make-yaml-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/release/make-yaml-bundle.sh -------------------------------------------------------------------------------- /hack/run_kubefwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/hack/run_kubefwd.sh -------------------------------------------------------------------------------- /mage/config/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/config/lib.go -------------------------------------------------------------------------------- /mage/docker/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/docker/lib.go -------------------------------------------------------------------------------- /mage/gcloud/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/gcloud/lib.go -------------------------------------------------------------------------------- /mage/ginkgo/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/ginkgo/lib.go -------------------------------------------------------------------------------- /mage/git/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/git/lib.go -------------------------------------------------------------------------------- /mage/helm/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/helm/lib.go -------------------------------------------------------------------------------- /mage/integ-tests/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/integ-tests/lib.go -------------------------------------------------------------------------------- /mage/integ-tests/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/integ-tests/lib_test.go -------------------------------------------------------------------------------- /mage/jenkins/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/jenkins/lib.go -------------------------------------------------------------------------------- /mage/k3d/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/k3d/lib.go -------------------------------------------------------------------------------- /mage/k8s/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/k8s/lib.go -------------------------------------------------------------------------------- /mage/kind/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/kind/lib.go -------------------------------------------------------------------------------- /mage/kubectl/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/kubectl/lib.go -------------------------------------------------------------------------------- /mage/linting/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/linting/lib.go -------------------------------------------------------------------------------- /mage/operator/crd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/operator/crd.patch -------------------------------------------------------------------------------- /mage/operator/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/operator/deploy.go -------------------------------------------------------------------------------- /mage/operator/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/operator/lib.go -------------------------------------------------------------------------------- /mage/operator/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/operator/lib_test.go -------------------------------------------------------------------------------- /mage/sh/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/sh/lib.go -------------------------------------------------------------------------------- /mage/util/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/mage/util/lib.go -------------------------------------------------------------------------------- /magefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/magefile.go -------------------------------------------------------------------------------- /operator/cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/cmd/manager/main.go -------------------------------------------------------------------------------- /operator/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/README.md -------------------------------------------------------------------------------- /operator/deploy/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/cluster_role.yaml -------------------------------------------------------------------------------- /operator/deploy/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/cluster_role_binding.yaml -------------------------------------------------------------------------------- /operator/deploy/crds/cassandra.datastax.com_cassandradatacenters_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/crds/cassandra.datastax.com_cassandradatacenters_crd.yaml -------------------------------------------------------------------------------- /operator/deploy/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: cass-operator 5 | -------------------------------------------------------------------------------- /operator/deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/operator.yaml -------------------------------------------------------------------------------- /operator/deploy/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/role.yaml -------------------------------------------------------------------------------- /operator/deploy/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/role_binding.yaml -------------------------------------------------------------------------------- /operator/deploy/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/service_account.yaml -------------------------------------------------------------------------------- /operator/deploy/webhook_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/webhook_configuration.yaml -------------------------------------------------------------------------------- /operator/deploy/webhook_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/webhook_secret.yaml -------------------------------------------------------------------------------- /operator/deploy/webhook_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/deploy/webhook_service.yaml -------------------------------------------------------------------------------- /operator/docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/docker/base/Dockerfile -------------------------------------------------------------------------------- /operator/docker/ubi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/docker/ubi/LICENSE -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-full.yaml -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-minimal.yaml -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-three-rack-three-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/cassandra-3.11.x/example-cassdc-three-rack-three-node.yaml -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-full.yaml -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-minimal.yaml -------------------------------------------------------------------------------- /operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-three-rack-three-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/example-cassdc-yaml/dse-6.8.x/example-cassdc-three-rack-three-node.yaml -------------------------------------------------------------------------------- /operator/internal/result/result_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/internal/result/result_helper.go -------------------------------------------------------------------------------- /operator/internal/result/result_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/internal/result/result_helper_test.go -------------------------------------------------------------------------------- /operator/k8s-flavors/aks/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/aks/storage.yaml -------------------------------------------------------------------------------- /operator/k8s-flavors/eks/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/eks/storage.yaml -------------------------------------------------------------------------------- /operator/k8s-flavors/gke/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/gke/storage.yaml -------------------------------------------------------------------------------- /operator/k8s-flavors/kind/kind-example-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/kind/kind-example-config.yaml -------------------------------------------------------------------------------- /operator/k8s-flavors/kind/rancher-local-path-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/kind/rancher-local-path-storage.yaml -------------------------------------------------------------------------------- /operator/k8s-flavors/minikube/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/k8s-flavors/minikube/storage.yaml -------------------------------------------------------------------------------- /operator/pkg/admissionwebhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/admissionwebhook/webhook.go -------------------------------------------------------------------------------- /operator/pkg/apis/addtoscheme_cassandra_v1beta1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/addtoscheme_cassandra_v1beta1.go -------------------------------------------------------------------------------- /operator/pkg/apis/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/apis.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/group.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/cassandradatacenter_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/cassandradatacenter_types.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/cassandradatacenter_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/cassandradatacenter_types_test.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/doc.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/register.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/webhook.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/webhook_test.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /operator/pkg/apis/cassandra/v1beta1/zz_generated.openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/apis/cassandra/v1beta1/zz_generated.openapi.go -------------------------------------------------------------------------------- /operator/pkg/controller/add_cassandradatacenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/controller/add_cassandradatacenter.go -------------------------------------------------------------------------------- /operator/pkg/controller/cassandradatacenter/cassandradatacenter_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/controller/cassandradatacenter/cassandradatacenter_controller.go -------------------------------------------------------------------------------- /operator/pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/controller/controller.go -------------------------------------------------------------------------------- /operator/pkg/dynamicwatch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/dynamicwatch/watch.go -------------------------------------------------------------------------------- /operator/pkg/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/events/events.go -------------------------------------------------------------------------------- /operator/pkg/events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/events/events_test.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/doc.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/cassandra_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/cassandra_client.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/cassandradatacenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/cassandradatacenter.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/doc.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/doc.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/fake_cassandra_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/fake_cassandra_client.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/fake_cassandradatacenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/fake/fake_cassandradatacenter.go -------------------------------------------------------------------------------- /operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/generated/clientset/versioned/typed/cassandra/v1beta1/generated_expansion.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/client.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/client_test.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/httpclient.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/security.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/security_test.go -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/ca.crt -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/ca.key -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/client.crt -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/client.key -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/evil_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/evil_ca.crt -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/evil_ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/evil_ca.key -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/gencerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/gencerts.sh -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/server.crt -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/server.encrypted.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/server.encrypted.key -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/server.key -------------------------------------------------------------------------------- /operator/pkg/httphelper/testdata/server.rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/httphelper/testdata/server.rsa.key -------------------------------------------------------------------------------- /operator/pkg/images/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/images/images.go -------------------------------------------------------------------------------- /operator/pkg/images/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/images/images_test.go -------------------------------------------------------------------------------- /operator/pkg/mocks/Client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/mocks/Client.go -------------------------------------------------------------------------------- /operator/pkg/mocks/HttpClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/mocks/HttpClient.go -------------------------------------------------------------------------------- /operator/pkg/oplabels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/oplabels/labels.go -------------------------------------------------------------------------------- /operator/pkg/psp/emm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/psp/emm.go -------------------------------------------------------------------------------- /operator/pkg/psp/emm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/psp/emm_test.go -------------------------------------------------------------------------------- /operator/pkg/psp/labels_annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/psp/labels_annotations.go -------------------------------------------------------------------------------- /operator/pkg/psp/networkpolicies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/psp/networkpolicies.go -------------------------------------------------------------------------------- /operator/pkg/psp/psp_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/psp/psp_status.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/check_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/check_nodes.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_podtemplatespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_podtemplatespec.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_podtemplatespec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_podtemplatespec_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_service.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_service_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_statefulset.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/construct_statefulset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/construct_statefulset_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/constructor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/constructor.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/context.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/decommission_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/decommission_node.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/decommission_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/decommission_node_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/defaults.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/handler.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/handler_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/rackinformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/rackinformation.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_datacenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_datacenter.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_datacenter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_datacenter_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_endpoints.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_racks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_racks.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_racks_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_racks_helpers.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_racks_helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_racks_helpers_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_racks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_racks_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_reaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_reaper.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_reaper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_reaper_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_services.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/reconcile_services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/reconcile_services_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/secrets.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/secrets_test.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/testing.go -------------------------------------------------------------------------------- /operator/pkg/reconciliation/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/reconciliation/utils.go -------------------------------------------------------------------------------- /operator/pkg/serverconfig/configgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/serverconfig/configgen.go -------------------------------------------------------------------------------- /operator/pkg/serverconfig/configgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/serverconfig/configgen_test.go -------------------------------------------------------------------------------- /operator/pkg/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/crypto.go -------------------------------------------------------------------------------- /operator/pkg/utils/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/crypto_test.go -------------------------------------------------------------------------------- /operator/pkg/utils/hash_annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/hash_annotation.go -------------------------------------------------------------------------------- /operator/pkg/utils/hash_annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/hash_annotation_test.go -------------------------------------------------------------------------------- /operator/pkg/utils/k8s_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/k8s_utils.go -------------------------------------------------------------------------------- /operator/pkg/utils/utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/utilities.go -------------------------------------------------------------------------------- /operator/pkg/utils/utilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/pkg/utils/utilities_test.go -------------------------------------------------------------------------------- /operator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/operator/tools.go -------------------------------------------------------------------------------- /scripts/build-push-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/scripts/build-push-images.sh -------------------------------------------------------------------------------- /scripts/push-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/scripts/push-release.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/add_racks/add_racks_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/add_racks/add_racks_suite_test.go -------------------------------------------------------------------------------- /tests/additional_seeds/additional_seeds_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/additional_seeds/additional_seeds_suite_test.go -------------------------------------------------------------------------------- /tests/additional_serviceoptions/additional_service_opts_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/additional_serviceoptions/additional_service_opts_suite_test.go -------------------------------------------------------------------------------- /tests/additional_volumes/additional_volumes_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/additional_volumes/additional_volumes_suite_test.go -------------------------------------------------------------------------------- /tests/bring_up_graph/bring_up_graph_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/bring_up_graph/bring_up_graph_suite_test.go -------------------------------------------------------------------------------- /tests/bring_up_solr/bring_up_solr_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/bring_up_solr/bring_up_solr_suite_test.go -------------------------------------------------------------------------------- /tests/bring_up_spark/bring_up_spark_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/bring_up_spark/bring_up_spark_suite_test.go -------------------------------------------------------------------------------- /tests/canary_upgrade/canary_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/canary_upgrade/canary_upgrade_test.go -------------------------------------------------------------------------------- /tests/cluster_wide_install/cluster_wide_install_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/cluster_wide_install/cluster_wide_install_suite_test.go -------------------------------------------------------------------------------- /tests/config_change/config_change_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/config_change/config_change_suite_test.go -------------------------------------------------------------------------------- /tests/config_change_condition/config_change_condition_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/config_change_condition/config_change_condition_suite_test.go -------------------------------------------------------------------------------- /tests/delete_node_lost_readiness/delete_node_lost_readiness_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/delete_node_lost_readiness/delete_node_lost_readiness_suite_test.go -------------------------------------------------------------------------------- /tests/delete_node_terminated_container/delete_node_terminate_container_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/delete_node_terminated_container/delete_node_terminate_container_suite_test.go -------------------------------------------------------------------------------- /tests/enable_reaper/enable_reaper_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/enable_reaper/enable_reaper_suite_test.go -------------------------------------------------------------------------------- /tests/helm_chart_imagepullsecrets/helm_chart_imagepullsecrets_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/helm_chart_imagepullsecrets/helm_chart_imagepullsecrets_suite_test.go -------------------------------------------------------------------------------- /tests/host_network/host_network_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/host_network/host_network_suite_test.go -------------------------------------------------------------------------------- /tests/internode-encryption-generated/internode_secret_generated_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/internode-encryption-generated/internode_secret_generated_test.go -------------------------------------------------------------------------------- /tests/internode_encryption/internode_encryption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/internode_encryption/internode_encryption_test.go -------------------------------------------------------------------------------- /tests/multi_cluster_management/multi_cluster_management_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/multi_cluster_management/multi_cluster_management_suite_test.go -------------------------------------------------------------------------------- /tests/no_infinite_reconcile/no_infinite_reconcile_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/no_infinite_reconcile/no_infinite_reconcile_suite_test.go -------------------------------------------------------------------------------- /tests/node_replace/node_replace_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/node_replace/node_replace_suite_test.go -------------------------------------------------------------------------------- /tests/nodeport_service/nodeport_service_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/nodeport_service/nodeport_service_suite_test.go -------------------------------------------------------------------------------- /tests/oss_test_all_the_things/oss_test_all_the_things_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/oss_test_all_the_things/oss_test_all_the_things_suite_test.go -------------------------------------------------------------------------------- /tests/podspec_simple/podspec_simple_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/podspec_simple/podspec_simple_suite_test.go -------------------------------------------------------------------------------- /tests/psp_emm/psp_emm_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/psp_emm/psp_emm_suite_test.go -------------------------------------------------------------------------------- /tests/psp_health/psp_health_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/psp_health/psp_health_suite_test.go -------------------------------------------------------------------------------- /tests/psp_pvc_annotation/psp_pvc_annotation_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/psp_pvc_annotation/psp_pvc_annotation_suite_test.go -------------------------------------------------------------------------------- /tests/rolling_restart/rolling_restart_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/rolling_restart/rolling_restart_suite_test.go -------------------------------------------------------------------------------- /tests/scale_down/scale_down_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/scale_down/scale_down_suite_test.go -------------------------------------------------------------------------------- /tests/scale_down_not_enough_space/scale_down_not_enough_space_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/scale_down_not_enough_space/scale_down_not_enough_space_suite_test.go -------------------------------------------------------------------------------- /tests/scale_down_unbalanced_racks/scale_down_unbalanced_racks_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/scale_down_unbalanced_racks/scale_down_unbalanced_racks_suite_test.go -------------------------------------------------------------------------------- /tests/scale_up/scale_up_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/scale_up/scale_up_suite_test.go -------------------------------------------------------------------------------- /tests/scale_up_stop_resume/scale_up_park_unpark_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/scale_up_stop_resume/scale_up_park_unpark_suite_test.go -------------------------------------------------------------------------------- /tests/seed_selection/seed_selection_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/seed_selection/seed_selection_suite_test.go -------------------------------------------------------------------------------- /tests/smoke_test_dse/smoke_test_dse_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/smoke_test_dse/smoke_test_dse_suite_test.go -------------------------------------------------------------------------------- /tests/smoke_test_oss/smoke_test_oss_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/smoke_test_oss/smoke_test_oss_suite_test.go -------------------------------------------------------------------------------- /tests/stop_resume/park_unpark_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/stop_resume/park_unpark_suite_test.go -------------------------------------------------------------------------------- /tests/stop_resume_scale_up/park_unpark_scale_up_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/stop_resume_scale_up/park_unpark_scale_up_suite_test.go -------------------------------------------------------------------------------- /tests/superuser-secret-generated/superuser_secret_generated_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/superuser-secret-generated/superuser_secret_generated_test.go -------------------------------------------------------------------------------- /tests/superuser-secret-provided/superuser_secret_provided_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/superuser-secret-provided/superuser_secret_provided_test.go -------------------------------------------------------------------------------- /tests/terminate/terminate_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/terminate/terminate_suite_test.go -------------------------------------------------------------------------------- /tests/test_bad_config_and_fix/test_bad_config_and_fix_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/test_bad_config_and_fix/test_bad_config_and_fix_suite_test.go -------------------------------------------------------------------------------- /tests/test_mtls_mgmt_api/test_mtls_mgmt_api_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/test_mtls_mgmt_api/test_mtls_mgmt_api_suite_test.go -------------------------------------------------------------------------------- /tests/testdata/additional-seeds-two-rack-four-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/additional-seeds-two-rack-four-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/additional-service-annotations-and-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/additional-service-annotations-and-labels.yaml -------------------------------------------------------------------------------- /tests/testdata/bob-secret-changed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/bob-secret-changed.yaml -------------------------------------------------------------------------------- /tests/testdata/bob-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/bob-secret.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/Chart.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/clusterrole.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/customresourcedefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/customresourcedefinition.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/role.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/rolebinding.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/secret.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/service.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/templates/validatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/templates/validatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /tests/testdata/cass-operator-1.1.0-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cass-operator-1.1.0-chart/values.yaml -------------------------------------------------------------------------------- /tests/testdata/cluster-wide-install-dc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cluster-wide-install-dc1.yaml -------------------------------------------------------------------------------- /tests/testdata/cluster-wide-install-dc2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/cluster-wide-install-dc2.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-2-node-dc-with-superuser-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-2-node-dc-with-superuser-secret.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-2-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-2-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-single-node-addtional-volumes-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-single-node-addtional-volumes-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-single-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-single-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-single-node-extra-container-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-single-node-extra-container-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-single-rack-single-node-prestop-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-single-rack-single-node-prestop-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-three-rack-four-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-three-rack-four-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-three-rack-four-node-limited-storage-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-three-rack-four-node-limited-storage-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-three-rack-three-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-three-rack-three-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/default-two-rack-four-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/default-two-rack-four-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/encrypted-single-rack-2-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/encrypted-single-rack-2-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/graph-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/graph-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/host-network-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/host-network-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/kind/kind_config_1_worker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/kind/kind_config_1_worker.yaml -------------------------------------------------------------------------------- /tests/testdata/kind/kind_config_3_workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/kind/kind_config_3_workers.yaml -------------------------------------------------------------------------------- /tests/testdata/kind/kind_config_6_workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/kind/kind_config_6_workers.yaml -------------------------------------------------------------------------------- /tests/testdata/mtls-certs-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/mtls-certs-client.yaml -------------------------------------------------------------------------------- /tests/testdata/mtls-certs-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/mtls-certs-server.yaml -------------------------------------------------------------------------------- /tests/testdata/nodeport-service-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/nodeport-service-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/operator-1.1.0-oss-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/operator-1.1.0-oss-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/oss-one-node-dc-with-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/oss-one-node-dc-with-mtls.yaml -------------------------------------------------------------------------------- /tests/testdata/oss-one-node-dc-without-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/oss-one-node-dc-without-mtls.yaml -------------------------------------------------------------------------------- /tests/testdata/oss-three-rack-three-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/oss-three-rack-three-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/oss-two-rack-six-node-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/oss-two-rack-six-node-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/oss-upgrade-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/oss-upgrade-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/psp-emm-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/psp-emm-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/smoke-test-dse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/smoke-test-dse.yaml -------------------------------------------------------------------------------- /tests/testdata/smoke-test-oss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/smoke-test-oss.yaml -------------------------------------------------------------------------------- /tests/testdata/solr-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/solr-dc.yaml -------------------------------------------------------------------------------- /tests/testdata/spark-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/testdata/spark-dc.yaml -------------------------------------------------------------------------------- /tests/timeout_prestop_termination/timeout_prestop_termination_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/timeout_prestop_termination/timeout_prestop_termination_suite_test.go -------------------------------------------------------------------------------- /tests/upgrade_operator/upgrade_operator_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/upgrade_operator/upgrade_operator_suite_test.go -------------------------------------------------------------------------------- /tests/webhook_validation/webhook_validation_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tests/webhook_validation/webhook_validation_suite_test.go -------------------------------------------------------------------------------- /tools/k8s-code-generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tools/k8s-code-generator/Dockerfile -------------------------------------------------------------------------------- /tools/mermaid-js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tools/mermaid-js/Dockerfile -------------------------------------------------------------------------------- /tools/mermaid-js/puppeteer-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tools/mermaid-js/puppeteer-config.json -------------------------------------------------------------------------------- /tools/operator-sdk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/cass-operator/HEAD/tools/operator-sdk/Dockerfile --------------------------------------------------------------------------------