├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.txt ├── SECURITY.md ├── deploy ├── .gitignore ├── deploy-crds.yaml ├── deploy-operator.yaml └── patch_deployment.py ├── docker-build └── Dockerfile ├── docker-deps ├── Dockerfile └── requirements.txt ├── gen_dockerfile.sh ├── helm ├── mysql-innodbcluster │ ├── .gitignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── .gitignore │ ├── crds │ │ └── .gitignore │ ├── templates │ │ ├── cluster_secret.yaml │ │ ├── deployment_cluster.yaml │ │ └── service_account_cluster.yaml │ └── values.yaml └── mysql-operator │ ├── .gitignore │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ └── .gitignore │ ├── crds │ └── crd.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cluster_kopf_keepering.yaml │ ├── cluster_role_binding_operator.yaml │ ├── cluster_role_operator.yaml │ ├── cluster_role_sidecar.yaml │ ├── deployment.yaml │ ├── service.yaml │ └── service_account_operator.yaml │ └── values.yaml ├── manifest.sh ├── mysqloperator ├── .gitignore ├── __init__.py ├── __main__.py ├── backup_main.py ├── controller │ ├── __init__.py │ ├── api_utils.py │ ├── backup │ │ ├── backup_api.py │ │ ├── backup_objects.py │ │ ├── meb │ │ │ ├── README.md │ │ │ ├── meb_controller.py │ │ │ ├── meb_main.py │ │ │ └── restore_main.py │ │ ├── meb_cert.py │ │ └── operator_backup.py │ ├── cloud │ │ └── auth_api.py │ ├── config.py │ ├── consts.py │ ├── diagnose.py │ ├── errors.py │ ├── fqdn.py │ ├── group_monitor.py │ ├── innodbcluster │ │ ├── __init__.py │ │ ├── cluster_api.py │ │ ├── cluster_controller.py │ │ ├── cluster_objects.py │ │ ├── initdb.py │ │ ├── logs │ │ │ ├── __init__.py │ │ │ ├── logs_api.py │ │ │ ├── logs_collector_fluentd_api.py │ │ │ └── logs_types_api.py │ │ ├── operator_cluster.py │ │ ├── router-entrypoint-run.sh.tpl │ │ └── router_objects.py │ ├── k8sobject.py │ ├── kubeutils.py │ ├── mysqlutils.py │ ├── operator.py │ ├── plugins.py │ ├── shellutils.py │ ├── storage_api.py │ └── utils.py ├── init_main.py ├── operator_main.py └── sidecar_main.py ├── samples ├── sample-cluster-mycnf.yaml ├── sample-cluster-podspec-affinity-rules.yml ├── sample-cluster-podspec-node-selector.yaml ├── sample-cluster-podspec-resources.yaml ├── sample-cluster-pvc.yaml ├── sample-cluster.yaml └── sample-secret.yaml ├── sbom_generation.yaml ├── tag.sh ├── tests ├── README.md ├── ci │ ├── __init__.py │ ├── cleanup │ │ ├── __init__.py │ │ ├── auxiliary │ │ │ ├── __init__.py │ │ │ └── filter_oci_vault_secrets.py │ │ ├── purge.sh │ │ ├── purge_containers.sh │ │ ├── purge_images.sh │ │ ├── purge_networks.sh │ │ ├── purge_oci_vault_secrets.sh │ │ ├── purge_volumes.sh │ │ ├── remove_network.sh │ │ └── remove_networks.sh │ ├── expected-failures.txt │ ├── jobs │ │ ├── __init__.py │ │ ├── auxiliary │ │ │ ├── __init__.py │ │ │ ├── generate-kubectl-info.sh │ │ │ ├── k8s-worker-intro.sh │ │ │ ├── parse_job_test_result.py │ │ │ ├── process_single_worker_log.py │ │ │ ├── process_workers_logs.py │ │ │ ├── set-env.sh │ │ │ ├── show-progress.sh │ │ │ └── start-azure.sh │ │ ├── build-dev-image-job.sh │ │ ├── generic-run-tests-job.sh │ │ ├── gerrit-trigger-job.sh │ │ ├── init-job.sh │ │ ├── monitor-trigger-job.sh │ │ ├── prepare-test-suite-report-job.sh │ │ ├── restore-env-job.sh │ │ └── trigger-weekly-job.sh │ ├── no-registry-mode │ │ ├── generate-images-info.sh │ │ ├── images-list.txt │ │ ├── load-operator-image.sh │ │ ├── minikube │ │ │ ├── load-n-tag-images.sh │ │ │ └── pre-setup.sh │ │ └── pull-images.sh │ ├── pipeline │ │ ├── auxiliary │ │ │ ├── merge_test_suite_stats.py │ │ │ └── split_test_suite_report.sh │ │ ├── list-tested-k8s-versions.sh │ │ ├── regular │ │ │ └── Jenkinsfile │ │ ├── utils.groovy │ │ └── weekly │ │ │ └── Jenkinsfile │ ├── registry │ │ ├── build-community-image.sh │ │ ├── build-enterprise-image.sh │ │ ├── charge-local-registry.sh │ │ ├── dev │ │ │ └── Dockerfile │ │ ├── ensure-local-registry-running.sh │ │ ├── images-list.txt │ │ ├── k3d │ │ │ └── registries.yaml │ │ └── run-local-registry.sh │ └── restore │ │ ├── binaries │ │ ├── download-binaries-from-list.sh │ │ ├── k3d-versions.txt │ │ ├── kind-versions.txt │ │ ├── kubectl-versions.txt │ │ ├── minikube-versions.txt │ │ └── restore-binaries.sh │ │ ├── registry │ │ ├── charge-registry-from-archive.sh │ │ ├── charge-registry-from-archives.sh │ │ ├── charge-registry-from-link.sh │ │ ├── charge-registry-from-links.sh │ │ ├── charge-registry-with-pattern.sh │ │ ├── k3d │ │ │ ├── k3s-airgap-images.txt │ │ │ ├── node-images.txt │ │ │ └── preload-images-to-registry.sh │ │ ├── kind │ │ │ └── node-images.txt │ │ ├── other │ │ │ ├── dockerhub-images.txt │ │ │ └── other-images.txt │ │ ├── pull-and-save-dockerhub-images.sh │ │ ├── pull-and-save-image.sh │ │ ├── pull-and-save-images.sh │ │ ├── pull-image-and-charge-registry.sh │ │ ├── pull-images-and-charge-registry.sh │ │ └── restore-local-registry.sh │ │ └── restore-env.sh ├── data │ ├── sql │ │ ├── sakila-data.sql │ │ └── sakila-schema.sql │ └── ssl │ │ ├── README.txt │ │ ├── make_certs.sh │ │ ├── out │ │ ├── ca-key.pem │ │ ├── ca.pem │ │ ├── cab-key.pem │ │ ├── cab.pem │ │ ├── crl.pem │ │ ├── router-cert.pem │ │ ├── router-key.pem │ │ ├── router2-cert.pem │ │ ├── router2-key.pem │ │ ├── routerb-cert.pem │ │ ├── routerb-key.pem │ │ ├── server-cert.pem │ │ ├── server-key.pem │ │ ├── server2-cert.pem │ │ ├── server2-key.pem │ │ ├── serverb-cert.pem │ │ ├── serverb-key.pem │ │ ├── serverb-rev-cert.pem │ │ └── serverb-rev-key.pem │ │ ├── router-req.conf │ │ └── server-req.conf ├── dist_run_e2e_tests.py ├── e2e │ ├── __init__.py │ ├── clone.yaml │ ├── mysqloperator │ │ ├── __init__.py │ │ ├── backup │ │ │ ├── __init__.py │ │ │ ├── clone_t.py │ │ │ ├── dump_t.py │ │ │ ├── ordinary_no_timestamp_t.py │ │ │ ├── ordinary_timestamp_t.py │ │ │ ├── scheduled_disabled_inline_t.py │ │ │ ├── scheduled_disabled_ref_t.py │ │ │ ├── scheduled_inline_oci_t.py │ │ │ ├── scheduled_inline_t.py │ │ │ ├── scheduled_ref_oci_t.py │ │ │ └── scheduled_ref_t.py │ │ ├── cluster │ │ │ ├── __init__.py │ │ │ ├── check_adminapi.py │ │ │ ├── check_apiobjects.py │ │ │ ├── check_direct.py │ │ │ ├── check_group.py │ │ │ ├── check_rbac.py │ │ │ ├── check_routing.py │ │ │ ├── cluster_badspec_t.py │ │ │ ├── cluster_enterprise_t.py │ │ │ ├── cluster_fqdn_t.py │ │ │ ├── cluster_metrics_t.py │ │ │ ├── cluster_read_replica_t.py │ │ │ ├── cluster_recovery_t.py │ │ │ ├── cluster_resources_t.py │ │ │ ├── cluster_service_t.py │ │ │ ├── cluster_ssl_t.py │ │ │ ├── cluster_t.py │ │ │ ├── cluster_upgrade_all_t.py │ │ │ ├── cluster_upgrade_t.py │ │ │ ├── cluster_versions_t.py │ │ │ ├── cluster_volume_t.py │ │ │ ├── diagnostic_status.py │ │ │ ├── initdb_t.py │ │ │ ├── loadgen.py │ │ │ ├── manual_recovery.py │ │ │ ├── network_t.py │ │ │ ├── pod_lifecycle_t.py │ │ │ └── router_t.py │ │ ├── clusterset │ │ │ ├── __init__.py │ │ │ └── clusterset_t.py │ │ ├── enterprise │ │ │ ├── __init__.py │ │ │ ├── audit_log_base.py │ │ │ ├── audit_log_change_filter_t.py │ │ │ ├── audit_log_change_primary_n_filter_t.py │ │ │ ├── audit_log_change_primary_t.py │ │ │ ├── audit_log_cluster_incomplete_t.py │ │ │ ├── audit_log_delayed_secondary_t.py │ │ │ ├── audit_log_primary_t.py │ │ │ └── audit_log_remove_filter_t.py │ │ ├── handle_8_0_29 │ │ │ ├── __init__.py │ │ │ ├── from_28_to_29_back_to_28_t.py │ │ │ ├── from_28_to_29_to_30_t.py │ │ │ ├── handle_29_base.py │ │ │ ├── setup_29_patch_to_30_t.py │ │ │ └── setup_29_then_delete_t.py │ │ ├── keyring │ │ │ ├── __init__.py │ │ │ ├── encrypted_file_cm_t.py │ │ │ ├── encrypted_file_empty_dir_t.py │ │ │ ├── encrypted_file_pvc_t.py │ │ │ ├── encrypted_file_secret_t.py │ │ │ ├── file_cm_t.py │ │ │ ├── file_empty_dir_t.py │ │ │ ├── file_pvc_t.py │ │ │ ├── file_secret_t.py │ │ │ ├── keyring_base.py │ │ │ └── oci_vault_t.py │ │ ├── logfileshipping │ │ │ ├── __init__.py │ │ │ └── file_t.py │ │ └── operator │ │ │ ├── __init__.py │ │ │ ├── operator_cluster_domain_t.py │ │ │ ├── operator_t.py │ │ │ └── operator_upgrade_t.py │ └── operator-test-pod.yaml ├── requirements.txt ├── run ├── run_e2e_tests.py ├── setup │ ├── __init__.py │ ├── config.py │ └── defaults.py ├── unit │ ├── test_dump_instance_and_snapshot.py │ ├── test_logs.py │ └── test_mysql_backup_spec.py └── utils │ ├── __init__.py │ ├── aggrlog.py │ ├── auxutil.py │ ├── dutil.py │ ├── fmt.py │ ├── keyutil.py │ ├── kutil.py │ ├── mutil.py │ ├── ociutil.py │ ├── optesting.py │ ├── oputil.py │ ├── ote │ ├── __init__.py │ ├── add_custom_dns.sh │ ├── base.py │ ├── k3d-registries.yaml │ ├── k3d.py │ ├── kind.py │ ├── minikube.py │ ├── minishift.py │ ├── oke.py │ └── passthrough.py │ ├── testsuite.py │ └── tutil.py └── tools ├── README.md ├── ocivaultclean.py ├── ocivaultgen.py └── validate_tls_ciphers ├── README.md ├── activate.sh ├── deactivate.sh ├── tls-parameters-4.csv └── tls_validate_proxy.py /.gitignore: -------------------------------------------------------------------------------- 1 | .gitreview 2 | __pycache__ 3 | .vscode 4 | /Dockerfile 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | deploy-all.yaml 2 | -------------------------------------------------------------------------------- /deploy/deploy-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/deploy/deploy-crds.yaml -------------------------------------------------------------------------------- /deploy/deploy-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/deploy/deploy-operator.yaml -------------------------------------------------------------------------------- /deploy/patch_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/deploy/patch_deployment.py -------------------------------------------------------------------------------- /docker-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/docker-build/Dockerfile -------------------------------------------------------------------------------- /docker-deps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/docker-deps/Dockerfile -------------------------------------------------------------------------------- /docker-deps/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/docker-deps/requirements.txt -------------------------------------------------------------------------------- /gen_dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/gen_dockerfile.sh -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/Chart.yaml -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/README.md -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/charts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/crds/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/templates/cluster_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/templates/cluster_secret.yaml -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/templates/deployment_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/templates/deployment_cluster.yaml -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/templates/service_account_cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/templates/service_account_cluster.yaml -------------------------------------------------------------------------------- /helm/mysql-innodbcluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-innodbcluster/values.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .\#* -------------------------------------------------------------------------------- /helm/mysql-operator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/.helmignore -------------------------------------------------------------------------------- /helm/mysql-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/Chart.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/README.md -------------------------------------------------------------------------------- /helm/mysql-operator/charts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/mysql-operator/crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/crds/crd.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/mysql-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/mysql-operator/templates/cluster_kopf_keepering.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/cluster_kopf_keepering.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/cluster_role_binding_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/cluster_role_binding_operator.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/cluster_role_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/cluster_role_operator.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/cluster_role_sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/cluster_role_sidecar.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/service.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/templates/service_account_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/templates/service_account_operator.yaml -------------------------------------------------------------------------------- /helm/mysql-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/helm/mysql-operator/values.yaml -------------------------------------------------------------------------------- /manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/manifest.sh -------------------------------------------------------------------------------- /mysqloperator/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* -------------------------------------------------------------------------------- /mysqloperator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/__init__.py -------------------------------------------------------------------------------- /mysqloperator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/__main__.py -------------------------------------------------------------------------------- /mysqloperator/backup_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/backup_main.py -------------------------------------------------------------------------------- /mysqloperator/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/__init__.py -------------------------------------------------------------------------------- /mysqloperator/controller/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/api_utils.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/backup_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/backup_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/backup_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/backup_objects.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/meb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/meb/README.md -------------------------------------------------------------------------------- /mysqloperator/controller/backup/meb/meb_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/meb/meb_controller.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/meb/meb_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/meb/meb_main.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/meb/restore_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/meb/restore_main.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/meb_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/meb_cert.py -------------------------------------------------------------------------------- /mysqloperator/controller/backup/operator_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/backup/operator_backup.py -------------------------------------------------------------------------------- /mysqloperator/controller/cloud/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/cloud/auth_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/config.py -------------------------------------------------------------------------------- /mysqloperator/controller/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/consts.py -------------------------------------------------------------------------------- /mysqloperator/controller/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/diagnose.py -------------------------------------------------------------------------------- /mysqloperator/controller/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/errors.py -------------------------------------------------------------------------------- /mysqloperator/controller/fqdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/fqdn.py -------------------------------------------------------------------------------- /mysqloperator/controller/group_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/group_monitor.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/__init__.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/cluster_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/cluster_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/cluster_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/cluster_controller.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/cluster_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/cluster_objects.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/initdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/initdb.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/logs/__init__.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/logs/logs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/logs/logs_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/logs/logs_collector_fluentd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/logs/logs_collector_fluentd_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/logs/logs_types_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/logs/logs_types_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/operator_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/operator_cluster.py -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/router-entrypoint-run.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/router-entrypoint-run.sh.tpl -------------------------------------------------------------------------------- /mysqloperator/controller/innodbcluster/router_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/innodbcluster/router_objects.py -------------------------------------------------------------------------------- /mysqloperator/controller/k8sobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/k8sobject.py -------------------------------------------------------------------------------- /mysqloperator/controller/kubeutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/kubeutils.py -------------------------------------------------------------------------------- /mysqloperator/controller/mysqlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/mysqlutils.py -------------------------------------------------------------------------------- /mysqloperator/controller/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/operator.py -------------------------------------------------------------------------------- /mysqloperator/controller/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/plugins.py -------------------------------------------------------------------------------- /mysqloperator/controller/shellutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/shellutils.py -------------------------------------------------------------------------------- /mysqloperator/controller/storage_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/storage_api.py -------------------------------------------------------------------------------- /mysqloperator/controller/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/controller/utils.py -------------------------------------------------------------------------------- /mysqloperator/init_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/init_main.py -------------------------------------------------------------------------------- /mysqloperator/operator_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/operator_main.py -------------------------------------------------------------------------------- /mysqloperator/sidecar_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/mysqloperator/sidecar_main.py -------------------------------------------------------------------------------- /samples/sample-cluster-mycnf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster-mycnf.yaml -------------------------------------------------------------------------------- /samples/sample-cluster-podspec-affinity-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster-podspec-affinity-rules.yml -------------------------------------------------------------------------------- /samples/sample-cluster-podspec-node-selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster-podspec-node-selector.yaml -------------------------------------------------------------------------------- /samples/sample-cluster-podspec-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster-podspec-resources.yaml -------------------------------------------------------------------------------- /samples/sample-cluster-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster-pvc.yaml -------------------------------------------------------------------------------- /samples/sample-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-cluster.yaml -------------------------------------------------------------------------------- /samples/sample-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/samples/sample-secret.yaml -------------------------------------------------------------------------------- /sbom_generation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/sbom_generation.yaml -------------------------------------------------------------------------------- /tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tag.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/ci/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/__init__.py -------------------------------------------------------------------------------- /tests/ci/cleanup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/__init__.py -------------------------------------------------------------------------------- /tests/ci/cleanup/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/auxiliary/__init__.py -------------------------------------------------------------------------------- /tests/ci/cleanup/auxiliary/filter_oci_vault_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/auxiliary/filter_oci_vault_secrets.py -------------------------------------------------------------------------------- /tests/ci/cleanup/purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/purge_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge_containers.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/purge_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge_images.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/purge_networks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge_networks.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/purge_oci_vault_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge_oci_vault_secrets.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/purge_volumes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/purge_volumes.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/remove_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/remove_network.sh -------------------------------------------------------------------------------- /tests/ci/cleanup/remove_networks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/cleanup/remove_networks.sh -------------------------------------------------------------------------------- /tests/ci/expected-failures.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/__init__.py -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/__init__.py -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/generate-kubectl-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/generate-kubectl-info.sh -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/k8s-worker-intro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/k8s-worker-intro.sh -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/parse_job_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/parse_job_test_result.py -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/process_single_worker_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/process_single_worker_log.py -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/process_workers_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/process_workers_logs.py -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/set-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/set-env.sh -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/show-progress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/show-progress.sh -------------------------------------------------------------------------------- /tests/ci/jobs/auxiliary/start-azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/auxiliary/start-azure.sh -------------------------------------------------------------------------------- /tests/ci/jobs/build-dev-image-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/build-dev-image-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/generic-run-tests-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/generic-run-tests-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/gerrit-trigger-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/gerrit-trigger-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/init-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/init-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/monitor-trigger-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/monitor-trigger-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/prepare-test-suite-report-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/prepare-test-suite-report-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/restore-env-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/restore-env-job.sh -------------------------------------------------------------------------------- /tests/ci/jobs/trigger-weekly-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/jobs/trigger-weekly-job.sh -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/generate-images-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/generate-images-info.sh -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/images-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/images-list.txt -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/load-operator-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/load-operator-image.sh -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/minikube/load-n-tag-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/minikube/load-n-tag-images.sh -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/minikube/pre-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/minikube/pre-setup.sh -------------------------------------------------------------------------------- /tests/ci/no-registry-mode/pull-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/no-registry-mode/pull-images.sh -------------------------------------------------------------------------------- /tests/ci/pipeline/auxiliary/merge_test_suite_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/auxiliary/merge_test_suite_stats.py -------------------------------------------------------------------------------- /tests/ci/pipeline/auxiliary/split_test_suite_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/auxiliary/split_test_suite_report.sh -------------------------------------------------------------------------------- /tests/ci/pipeline/list-tested-k8s-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/list-tested-k8s-versions.sh -------------------------------------------------------------------------------- /tests/ci/pipeline/regular/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/regular/Jenkinsfile -------------------------------------------------------------------------------- /tests/ci/pipeline/utils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/utils.groovy -------------------------------------------------------------------------------- /tests/ci/pipeline/weekly/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/pipeline/weekly/Jenkinsfile -------------------------------------------------------------------------------- /tests/ci/registry/build-community-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/build-community-image.sh -------------------------------------------------------------------------------- /tests/ci/registry/build-enterprise-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/build-enterprise-image.sh -------------------------------------------------------------------------------- /tests/ci/registry/charge-local-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/charge-local-registry.sh -------------------------------------------------------------------------------- /tests/ci/registry/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/dev/Dockerfile -------------------------------------------------------------------------------- /tests/ci/registry/ensure-local-registry-running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/ensure-local-registry-running.sh -------------------------------------------------------------------------------- /tests/ci/registry/images-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/images-list.txt -------------------------------------------------------------------------------- /tests/ci/registry/k3d/registries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/k3d/registries.yaml -------------------------------------------------------------------------------- /tests/ci/registry/run-local-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/registry/run-local-registry.sh -------------------------------------------------------------------------------- /tests/ci/restore/binaries/download-binaries-from-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/download-binaries-from-list.sh -------------------------------------------------------------------------------- /tests/ci/restore/binaries/k3d-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/k3d-versions.txt -------------------------------------------------------------------------------- /tests/ci/restore/binaries/kind-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/kind-versions.txt -------------------------------------------------------------------------------- /tests/ci/restore/binaries/kubectl-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/kubectl-versions.txt -------------------------------------------------------------------------------- /tests/ci/restore/binaries/minikube-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/minikube-versions.txt -------------------------------------------------------------------------------- /tests/ci/restore/binaries/restore-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/binaries/restore-binaries.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/charge-registry-from-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/charge-registry-from-archive.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/charge-registry-from-archives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/charge-registry-from-archives.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/charge-registry-from-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/charge-registry-from-link.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/charge-registry-from-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/charge-registry-from-links.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/charge-registry-with-pattern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/charge-registry-with-pattern.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/k3d/k3s-airgap-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/k3d/k3s-airgap-images.txt -------------------------------------------------------------------------------- /tests/ci/restore/registry/k3d/node-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/k3d/node-images.txt -------------------------------------------------------------------------------- /tests/ci/restore/registry/k3d/preload-images-to-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/k3d/preload-images-to-registry.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/kind/node-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/kind/node-images.txt -------------------------------------------------------------------------------- /tests/ci/restore/registry/other/dockerhub-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/other/dockerhub-images.txt -------------------------------------------------------------------------------- /tests/ci/restore/registry/other/other-images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/other/other-images.txt -------------------------------------------------------------------------------- /tests/ci/restore/registry/pull-and-save-dockerhub-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/pull-and-save-dockerhub-images.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/pull-and-save-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/pull-and-save-image.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/pull-and-save-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/pull-and-save-images.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/pull-image-and-charge-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/pull-image-and-charge-registry.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/pull-images-and-charge-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/pull-images-and-charge-registry.sh -------------------------------------------------------------------------------- /tests/ci/restore/registry/restore-local-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/registry/restore-local-registry.sh -------------------------------------------------------------------------------- /tests/ci/restore/restore-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/ci/restore/restore-env.sh -------------------------------------------------------------------------------- /tests/data/sql/sakila-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/sql/sakila-data.sql -------------------------------------------------------------------------------- /tests/data/sql/sakila-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/sql/sakila-schema.sql -------------------------------------------------------------------------------- /tests/data/ssl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/README.txt -------------------------------------------------------------------------------- /tests/data/ssl/make_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/make_certs.sh -------------------------------------------------------------------------------- /tests/data/ssl/out/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/ca-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/ca.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/cab-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/cab-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/cab.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/cab.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/crl.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/router-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/router-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/router-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/router-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/router2-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/router2-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/router2-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/router2-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/routerb-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/routerb-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/routerb-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/routerb-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/server-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/server-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/server2-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/server2-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/server2-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/server2-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/serverb-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/serverb-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/serverb-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/serverb-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/serverb-rev-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/serverb-rev-cert.pem -------------------------------------------------------------------------------- /tests/data/ssl/out/serverb-rev-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/out/serverb-rev-key.pem -------------------------------------------------------------------------------- /tests/data/ssl/router-req.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/router-req.conf -------------------------------------------------------------------------------- /tests/data/ssl/server-req.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/data/ssl/server-req.conf -------------------------------------------------------------------------------- /tests/dist_run_e2e_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/dist_run_e2e_tests.py -------------------------------------------------------------------------------- /tests/e2e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/__init__.py -------------------------------------------------------------------------------- /tests/e2e/clone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/clone.yaml -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/clone_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/clone_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/dump_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/dump_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/ordinary_no_timestamp_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/ordinary_no_timestamp_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/ordinary_timestamp_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/ordinary_timestamp_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_disabled_inline_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_disabled_inline_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_disabled_ref_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_disabled_ref_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_inline_oci_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_inline_oci_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_inline_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_inline_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_ref_oci_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_ref_oci_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/backup/scheduled_ref_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/backup/scheduled_ref_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_adminapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_adminapi.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_apiobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_apiobjects.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_direct.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_group.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_rbac.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/check_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/check_routing.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_badspec_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_badspec_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_enterprise_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_enterprise_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_fqdn_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_fqdn_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_metrics_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_metrics_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_read_replica_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_read_replica_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_recovery_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_recovery_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_resources_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_resources_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_service_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_service_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_ssl_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_ssl_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_upgrade_all_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_upgrade_all_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_upgrade_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_upgrade_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_versions_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_versions_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/cluster_volume_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/cluster_volume_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/diagnostic_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/diagnostic_status.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/initdb_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/initdb_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/loadgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/loadgen.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/manual_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/manual_recovery.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/network_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/network_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/pod_lifecycle_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/pod_lifecycle_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/cluster/router_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/cluster/router_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/clusterset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/clusterset/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/clusterset/clusterset_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/clusterset/clusterset_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_base.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_change_filter_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_change_filter_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_change_primary_n_filter_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_change_primary_n_filter_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_change_primary_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_change_primary_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_cluster_incomplete_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_cluster_incomplete_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_delayed_secondary_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_delayed_secondary_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_primary_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_primary_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/enterprise/audit_log_remove_filter_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/enterprise/audit_log_remove_filter_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/from_28_to_29_back_to_28_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/from_28_to_29_back_to_28_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/from_28_to_29_to_30_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/from_28_to_29_to_30_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/handle_29_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/handle_29_base.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/setup_29_patch_to_30_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/setup_29_patch_to_30_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/handle_8_0_29/setup_29_then_delete_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/handle_8_0_29/setup_29_then_delete_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/encrypted_file_cm_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/encrypted_file_cm_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/encrypted_file_empty_dir_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/encrypted_file_empty_dir_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/encrypted_file_pvc_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/encrypted_file_pvc_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/encrypted_file_secret_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/encrypted_file_secret_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/file_cm_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/file_cm_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/file_empty_dir_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/file_empty_dir_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/file_pvc_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/file_pvc_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/file_secret_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/file_secret_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/keyring_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/keyring_base.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/keyring/oci_vault_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/keyring/oci_vault_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/logfileshipping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/logfileshipping/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/logfileshipping/file_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/logfileshipping/file_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/operator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/operator/__init__.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/operator/operator_cluster_domain_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/operator/operator_cluster_domain_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/operator/operator_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/operator/operator_t.py -------------------------------------------------------------------------------- /tests/e2e/mysqloperator/operator/operator_upgrade_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/mysqloperator/operator/operator_upgrade_t.py -------------------------------------------------------------------------------- /tests/e2e/operator-test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/e2e/operator-test-pod.yaml -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/run -------------------------------------------------------------------------------- /tests/run_e2e_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/run_e2e_tests.py -------------------------------------------------------------------------------- /tests/setup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/setup/__init__.py -------------------------------------------------------------------------------- /tests/setup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/setup/config.py -------------------------------------------------------------------------------- /tests/setup/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/setup/defaults.py -------------------------------------------------------------------------------- /tests/unit/test_dump_instance_and_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/unit/test_dump_instance_and_snapshot.py -------------------------------------------------------------------------------- /tests/unit/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/unit/test_logs.py -------------------------------------------------------------------------------- /tests/unit/test_mysql_backup_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/unit/test_mysql_backup_spec.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/aggrlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/aggrlog.py -------------------------------------------------------------------------------- /tests/utils/auxutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/auxutil.py -------------------------------------------------------------------------------- /tests/utils/dutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/dutil.py -------------------------------------------------------------------------------- /tests/utils/fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/fmt.py -------------------------------------------------------------------------------- /tests/utils/keyutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/keyutil.py -------------------------------------------------------------------------------- /tests/utils/kutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/kutil.py -------------------------------------------------------------------------------- /tests/utils/mutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/mutil.py -------------------------------------------------------------------------------- /tests/utils/ociutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ociutil.py -------------------------------------------------------------------------------- /tests/utils/optesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/optesting.py -------------------------------------------------------------------------------- /tests/utils/oputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/oputil.py -------------------------------------------------------------------------------- /tests/utils/ote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/__init__.py -------------------------------------------------------------------------------- /tests/utils/ote/add_custom_dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/add_custom_dns.sh -------------------------------------------------------------------------------- /tests/utils/ote/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/base.py -------------------------------------------------------------------------------- /tests/utils/ote/k3d-registries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/k3d-registries.yaml -------------------------------------------------------------------------------- /tests/utils/ote/k3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/k3d.py -------------------------------------------------------------------------------- /tests/utils/ote/kind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/kind.py -------------------------------------------------------------------------------- /tests/utils/ote/minikube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/minikube.py -------------------------------------------------------------------------------- /tests/utils/ote/minishift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/minishift.py -------------------------------------------------------------------------------- /tests/utils/ote/oke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/oke.py -------------------------------------------------------------------------------- /tests/utils/ote/passthrough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/ote/passthrough.py -------------------------------------------------------------------------------- /tests/utils/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/testsuite.py -------------------------------------------------------------------------------- /tests/utils/tutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tests/utils/tutil.py -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/ocivaultclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/ocivaultclean.py -------------------------------------------------------------------------------- /tools/ocivaultgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/ocivaultgen.py -------------------------------------------------------------------------------- /tools/validate_tls_ciphers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/validate_tls_ciphers/README.md -------------------------------------------------------------------------------- /tools/validate_tls_ciphers/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/validate_tls_ciphers/activate.sh -------------------------------------------------------------------------------- /tools/validate_tls_ciphers/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/validate_tls_ciphers/deactivate.sh -------------------------------------------------------------------------------- /tools/validate_tls_ciphers/tls-parameters-4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/validate_tls_ciphers/tls-parameters-4.csv -------------------------------------------------------------------------------- /tools/validate_tls_ciphers/tls_validate_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-operator/HEAD/tools/validate_tls_ciphers/tls_validate_proxy.py --------------------------------------------------------------------------------