From 71c4639ea943de3ddfeaa204ebd372d97a699c18 Mon Sep 17 00:00:00 2001 From: Drew Sessler Date: Fri, 21 Nov 2025 16:39:17 -0500 Subject: [PATCH 1/2] We do not support postgres_exporter for pg18. Remove exporter kuttl tests when running e2e tests for postgres 18. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 2f15b07b6e..9d261ef52a 100644 --- a/Makefile +++ b/Makefile @@ -221,6 +221,12 @@ generate-kuttl: ## Generate kuttl tests mkdir -p "$${target%/*}"; render < "$${source}" > "$${target}"; \ shift; \ done' - testing/kuttl/e2e/*/*.yaml testing/kuttl/e2e/*/*/*.yaml + if [ "$$KUTTL_PG_VERSION" -ge "18" ]; then \ + [ ! -d testing/kuttl/e2e-generated/exporter-custom-queries ] || rm -rf testing/kuttl/e2e-generated/exporter-custom-queries; \ + [ ! -d testing/kuttl/e2e-generated/exporter-no-tls ] || rm -rf testing/kuttl/e2e-generated/exporter-no-tls; \ + [ ! -d testing/kuttl/e2e-generated/exporter-tls ] || rm -rf testing/kuttl/e2e-generated/exporter-tls; \ + [ ! -d testing/kuttl/e2e-generated/exporter-password-change ] || rm -rf testing/kuttl/e2e-generated/exporter-password-change; \ + fi ##@ Generate From 8afdb0b26d7b7419097aae73501332947bacd28d Mon Sep 17 00:00:00 2001 From: Drew Sessler Date: Mon, 24 Nov 2025 10:22:16 -0500 Subject: [PATCH 2/2] Remove double dash from kuttl test filenames to comply with stricter filename requirements in kuttl 0.23.0. --- .../kuttl/e2e/cluster-pause/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--cluster-paused.yaml => 01-cluster-paused.yaml} | 0 .../{02--cluster-resume.yaml => 02-cluster-resume.yaml} | 0 .../kuttl/e2e/cluster-start/{00--cluster.yaml => 00-cluster.yaml} | 0 .../kuttl/e2e/cluster-start/{01--connect.yaml => 01-connect.yaml} | 0 .../{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 ...--change-custom-queries.yaml => 01-change-custom-queries.yaml} | 0 .../{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 .../{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 .../{02--change-password.yaml => 02-change-password.yaml} | 0 .../{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 .../{01--valid-upgrade.yaml => 01-valid-upgrade.yaml} | 0 .../{10--cluster.yaml => 10-cluster.yaml} | 0 .../{11--shutdown-cluster.yaml => 11-shutdown-cluster.yaml} | 0 ...t-and-update-version.yaml => 12-start-and-update-version.yaml} | 0 .../{13--shutdown-cluster.yaml => 13-shutdown-cluster.yaml} | 0 .../{14--annotate-cluster.yaml => 14-annotate-cluster.yaml} | 0 .../{15--start-cluster.yaml => 15-start-cluster.yaml} | 0 .../{17--check-version.yaml => 17-check-version.yaml} | 0 .../{02--valid-upgrade.yaml => 02-valid-upgrade.yaml} | 0 ...ready-updated-cluster.yaml => 10-already-updated-cluster.yaml} | 0 .../kuttl/e2e/major-upgrade/{30--cluster.yaml => 30-cluster.yaml} | 0 .../major-upgrade/{31--create-data.yaml => 31-create-data.yaml} | 0 .../{32--shutdown-cluster.yaml => 32-shutdown-cluster.yaml} | 0 .../{33--annotate-cluster.yaml => 33-annotate-cluster.yaml} | 0 .../{34--restart-cluster.yaml => 34-restart-cluster.yaml} | 0 ...check-data-and-version.yaml => 36-check-data-and-version.yaml} | 0 .../e2e/optional-backups/{00--cluster.yaml => 00-cluster.yaml} | 0 .../e2e/optional-backups/{04--cluster.yaml => 04-cluster.yaml} | 0 .../e2e/optional-backups/{10--cluster.yaml => 10-cluster.yaml} | 0 .../e2e/optional-backups/{20--cluster.yaml => 20-cluster.yaml} | 0 .../e2e/optional-backups/{22--cluster.yaml => 22-cluster.yaml} | 0 .../{00--cluster.yaml => 00-cluster.yaml} | 0 ...luster.yaml => 01-add-instrumentation-to-postgrescluster.yaml} | 0 .../otel-logging-and-metrics/{03--backup.yaml => 03-backup.yaml} | 0 ...ion-to-pgadmin.yaml => 07-add-instrumentation-to-pgadmin.yaml} | 0 .../{09--add-custom-queries.yaml => 09-add-custom-queries.yaml} | 0 ...cluster.yaml => 11-add-per-db-metrics-to-postgrescluster.yaml} | 0 ....yaml => 13-add-second-per-db-metrics-to-postgrescluster.yaml} | 0 ...er.yaml => 15-remove-per-db-metrics-from-postgrescluster.yaml} | 0 ...stom-queries-per-db.yaml => 17-add-custom-queries-per-db.yaml} | 0 ...gs-metrics-exporter.yaml => 19-add-logs-metrics-exporter.yaml} | 0 .../{21--cluster-no-backups.yaml => 21-cluster-no-backups.yaml} | 0 .../{23--cluster-add-backups.yaml => 23-cluster-add-backups.yaml} | 0 .../{24--remove-backups.yaml => 24-remove-backups.yaml} | 0 .../{25--annotate-cluster.yaml => 25-annotate-cluster.yaml} | 0 .../e2e/password-change/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--psql-connect-uri.yaml => 01-psql-connect-uri.yaml} | 0 .../{01--psql-connect.yaml => 01-psql-connect.yaml} | 0 .../kuttl/e2e/password-change/{02--secret.yaml => 02-secret.yaml} | 0 .../{03--psql-connect-uri.yaml => 03-psql-connect-uri.yaml} | 0 .../{03--psql-connect.yaml => 03-psql-connect.yaml} | 0 .../kuttl/e2e/password-change/{04--secret.yaml => 04-secret.yaml} | 0 .../{05--psql-connect-uri.yaml => 05-psql-connect-uri.yaml} | 0 .../{05--psql-connect.yaml => 05-psql-connect.yaml} | 0 .../e2e/password-change/{06--cluster.yaml => 06-cluster.yaml} | 0 .../{07--psql-connect-uri.yaml => 07-psql-connect-uri.yaml} | 0 .../{07--psql-connect.yaml => 07-psql-connect.yaml} | 0 .../kuttl/e2e/password-change/{08--secret.yaml => 08-secret.yaml} | 0 .../{09--psql-connect-uri.yaml => 09-psql-connect-uri.yaml} | 0 .../{09--psql-connect.yaml => 09-psql-connect.yaml} | 0 .../kuttl/e2e/password-change/{10--secret.yaml => 10-secret.yaml} | 0 .../{11--psql-connect-uri.yaml => 11-psql-connect-uri.yaml} | 0 .../{11--psql-connect.yaml => 11-psql-connect.yaml} | 0 .../{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--check-backup-logs.yaml => 01-check-backup-logs.yaml} | 0 .../{02--cluster.yaml => 02-cluster.yaml} | 0 .../e2e/pgbackrest-init/{00--cluster.yaml => 00-cluster.yaml} | 0 .../e2e/pgbackrest-init/{02--cluster.yaml => 02-cluster.yaml} | 0 .../e2e/pgbackrest-init/{04--cluster.yaml => 04-cluster.yaml} | 0 .../{06--check-spool-path.yaml => 06-check-spool-path.yaml} | 0 testing/kuttl/e2e/pgbouncer/{00--cluster.yaml => 00-cluster.yaml} | 0 .../e2e/pgbouncer/{01--psql-connect.yaml => 01-psql-connect.yaml} | 0 .../{10--read-certificate.yaml => 10-read-certificate.yaml} | 0 .../{11--open-connection.yaml => 11-open-connection.yaml} | 0 .../{12--rotate-certificate.yaml => 12-rotate-certificate.yaml} | 0 .../{13--read-certificate.yaml => 13-read-certificate.yaml} | 0 .../{14--compare-certificate.yaml => 14-compare-certificate.yaml} | 0 .../{15--check-connection.yaml => 15-check-connection.yaml} | 0 .../kuttl/e2e/pgbouncer/{16--reconnect.yaml => 16-reconnect.yaml} | 0 .../kuttl/e2e/replica-read/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--psql-replica-read.yaml => 01-psql-replica-read.yaml} | 0 .../e2e/root-cert-ownership/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--check-owners.yaml => 01-check-owners.yaml} | 0 .../{02--delete-owner1.yaml => 02-delete-owner1.yaml} | 0 .../{03--check-owners.yaml => 03-check-owners.yaml} | 0 .../{04--delete-owner2.yaml => 04-delete-owner2.yaml} | 0 .../{05--check-secret.yaml => 05-check-secret.yaml} | 0 .../scaledown/{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 .../scaledown/{01--update-cluster.yaml => 01-update-cluster.yaml} | 0 .../scaledown/{02--delete-cluster.yaml => 02-delete-cluster.yaml} | 0 .../scaledown/{10--create-cluster.yaml => 10-create-cluster.yaml} | 0 .../scaledown/{12--update-cluster.yaml => 12-update-cluster.yaml} | 0 .../scaledown/{13--delete-cluster.yaml => 13-delete-cluster.yaml} | 0 .../scaledown/{20--create-cluster.yaml => 20-create-cluster.yaml} | 0 .../scaledown/{21--update-cluster.yaml => 21-update-cluster.yaml} | 0 .../e2e/security-context/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--security-context.yaml => 01-security-context.yaml} | 0 .../e2e/security-context/{10--kyverno.yaml => 10-kyverno.yaml} | 0 .../{00--create-cluster.yaml => 00-create-cluster.yaml} | 0 .../{01--user-schema.yaml => 01-user-schema.yaml} | 0 .../{02--create-pgadmin.yaml => 02-create-pgadmin.yaml} | 0 .../{04--update-pgadmin.yaml => 04-update-pgadmin.yaml} | 0 .../{00--pgadmin.yaml => 00-pgadmin.yaml} | 0 .../{01--update-service.yaml => 01-update-service.yaml} | 0 .../{02--remove-service.yaml => 02-remove-service.yaml} | 0 .../{10--manual-service.yaml => 10-manual-service.yaml} | 0 .../{20--owned-service.yaml => 20-owned-service.yaml} | 0 ...service-takeover-fails.yaml => 21-service-takeover-fails.yaml} | 0 .../{00--create-pgadmin.yaml => 00-create-pgadmin.yaml} | 0 .../{02--edit-pgadmin-users.yaml => 02-edit-pgadmin-users.yaml} | 0 ...-user-passwords.yaml => 04-change-pgadmin-user-passwords.yaml} | 0 ...06--delete-pgadmin-users.yaml => 06-delete-pgadmin-users.yaml} | 0 .../e2e/streaming-standby/{00--secrets.yaml => 00-secrets.yaml} | 0 .../{01--primary-cluster.yaml => 01-primary-cluster.yaml} | 0 .../{02--create-data.yaml => 02-create-data.yaml} | 0 .../{03--standby-cluster.yaml => 03-standby-cluster.yaml} | 0 .../streaming-standby/{04--check-data.yaml => 04-check-data.yaml} | 0 .../kuttl/e2e/switchover/{01--cluster.yaml => 01-cluster.yaml} | 0 .../e2e/tablespace-enabled/{00--cluster.yaml => 00-cluster.yaml} | 0 .../{01--psql-connect.yaml => 01-psql-connect.yaml} | 0 .../{00--create-resources.yaml => 00-create-resources.yaml} | 0 .../{01--create-data.yaml => 01-create-data.yaml} | 0 .../{02--shutdown-cluster.yaml => 02-shutdown-cluster.yaml} | 0 .../{03--annotate-cluster.yaml => 03-annotate-cluster.yaml} | 0 .../{04--restart-cluster.yaml => 04-restart-cluster.yaml} | 0 ...check-data-and-version.yaml => 06-check-data-and-version.yaml} | 0 .../{06--check-spool-path.yaml => 06-check-spool-path.yaml} | 0 128 files changed, 0 insertions(+), 0 deletions(-) rename testing/kuttl/e2e/cluster-pause/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/cluster-pause/{01--cluster-paused.yaml => 01-cluster-paused.yaml} (100%) rename testing/kuttl/e2e/cluster-pause/{02--cluster-resume.yaml => 02-cluster-resume.yaml} (100%) rename testing/kuttl/e2e/cluster-start/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/cluster-start/{01--connect.yaml => 01-connect.yaml} (100%) rename testing/kuttl/e2e/exporter-custom-queries/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/exporter-custom-queries/{01--change-custom-queries.yaml => 01-change-custom-queries.yaml} (100%) rename testing/kuttl/e2e/exporter-no-tls/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/exporter-password-change/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/exporter-password-change/{02--change-password.yaml => 02-change-password.yaml} (100%) rename testing/kuttl/e2e/exporter-tls/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{01--valid-upgrade.yaml => 01-valid-upgrade.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{10--cluster.yaml => 10-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{11--shutdown-cluster.yaml => 11-shutdown-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{12--start-and-update-version.yaml => 12-start-and-update-version.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{13--shutdown-cluster.yaml => 13-shutdown-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{14--annotate-cluster.yaml => 14-annotate-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{15--start-cluster.yaml => 15-start-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade-missing-image/{17--check-version.yaml => 17-check-version.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{02--valid-upgrade.yaml => 02-valid-upgrade.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{10--already-updated-cluster.yaml => 10-already-updated-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{30--cluster.yaml => 30-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{31--create-data.yaml => 31-create-data.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{32--shutdown-cluster.yaml => 32-shutdown-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{33--annotate-cluster.yaml => 33-annotate-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{34--restart-cluster.yaml => 34-restart-cluster.yaml} (100%) rename testing/kuttl/e2e/major-upgrade/{36--check-data-and-version.yaml => 36-check-data-and-version.yaml} (100%) rename testing/kuttl/e2e/optional-backups/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/optional-backups/{04--cluster.yaml => 04-cluster.yaml} (100%) rename testing/kuttl/e2e/optional-backups/{10--cluster.yaml => 10-cluster.yaml} (100%) rename testing/kuttl/e2e/optional-backups/{20--cluster.yaml => 20-cluster.yaml} (100%) rename testing/kuttl/e2e/optional-backups/{22--cluster.yaml => 22-cluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{01--add-instrumentation-to-postgrescluster.yaml => 01-add-instrumentation-to-postgrescluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{03--backup.yaml => 03-backup.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{07--add-instrumentation-to-pgadmin.yaml => 07-add-instrumentation-to-pgadmin.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{09--add-custom-queries.yaml => 09-add-custom-queries.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{11--add-per-db-metrics-to-postgrescluster.yaml => 11-add-per-db-metrics-to-postgrescluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{13--add-second-per-db-metrics-to-postgrescluster.yaml => 13-add-second-per-db-metrics-to-postgrescluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{15--remove-per-db-metrics-from-postgrescluster.yaml => 15-remove-per-db-metrics-from-postgrescluster.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{17--add-custom-queries-per-db.yaml => 17-add-custom-queries-per-db.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{19--add-logs-metrics-exporter.yaml => 19-add-logs-metrics-exporter.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{21--cluster-no-backups.yaml => 21-cluster-no-backups.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{23--cluster-add-backups.yaml => 23-cluster-add-backups.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{24--remove-backups.yaml => 24-remove-backups.yaml} (100%) rename testing/kuttl/e2e/otel-logging-and-metrics/{25--annotate-cluster.yaml => 25-annotate-cluster.yaml} (100%) rename testing/kuttl/e2e/password-change/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/password-change/{01--psql-connect-uri.yaml => 01-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{01--psql-connect.yaml => 01-psql-connect.yaml} (100%) rename testing/kuttl/e2e/password-change/{02--secret.yaml => 02-secret.yaml} (100%) rename testing/kuttl/e2e/password-change/{03--psql-connect-uri.yaml => 03-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{03--psql-connect.yaml => 03-psql-connect.yaml} (100%) rename testing/kuttl/e2e/password-change/{04--secret.yaml => 04-secret.yaml} (100%) rename testing/kuttl/e2e/password-change/{05--psql-connect-uri.yaml => 05-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{05--psql-connect.yaml => 05-psql-connect.yaml} (100%) rename testing/kuttl/e2e/password-change/{06--cluster.yaml => 06-cluster.yaml} (100%) rename testing/kuttl/e2e/password-change/{07--psql-connect-uri.yaml => 07-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{07--psql-connect.yaml => 07-psql-connect.yaml} (100%) rename testing/kuttl/e2e/password-change/{08--secret.yaml => 08-secret.yaml} (100%) rename testing/kuttl/e2e/password-change/{09--psql-connect-uri.yaml => 09-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{09--psql-connect.yaml => 09-psql-connect.yaml} (100%) rename testing/kuttl/e2e/password-change/{10--secret.yaml => 10-secret.yaml} (100%) rename testing/kuttl/e2e/password-change/{11--psql-connect-uri.yaml => 11-psql-connect-uri.yaml} (100%) rename testing/kuttl/e2e/password-change/{11--psql-connect.yaml => 11-psql-connect.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-backup-standby/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-backup-standby/{01--check-backup-logs.yaml => 01-check-backup-logs.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-backup-standby/{02--cluster.yaml => 02-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-init/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-init/{02--cluster.yaml => 02-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-init/{04--cluster.yaml => 04-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbackrest-init/{06--check-spool-path.yaml => 06-check-spool-path.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{01--psql-connect.yaml => 01-psql-connect.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{10--read-certificate.yaml => 10-read-certificate.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{11--open-connection.yaml => 11-open-connection.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{12--rotate-certificate.yaml => 12-rotate-certificate.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{13--read-certificate.yaml => 13-read-certificate.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{14--compare-certificate.yaml => 14-compare-certificate.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{15--check-connection.yaml => 15-check-connection.yaml} (100%) rename testing/kuttl/e2e/pgbouncer/{16--reconnect.yaml => 16-reconnect.yaml} (100%) rename testing/kuttl/e2e/replica-read/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/replica-read/{01--psql-replica-read.yaml => 01-psql-replica-read.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{01--check-owners.yaml => 01-check-owners.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{02--delete-owner1.yaml => 02-delete-owner1.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{03--check-owners.yaml => 03-check-owners.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{04--delete-owner2.yaml => 04-delete-owner2.yaml} (100%) rename testing/kuttl/e2e/root-cert-ownership/{05--check-secret.yaml => 05-check-secret.yaml} (100%) rename testing/kuttl/e2e/scaledown/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{01--update-cluster.yaml => 01-update-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{02--delete-cluster.yaml => 02-delete-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{10--create-cluster.yaml => 10-create-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{12--update-cluster.yaml => 12-update-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{13--delete-cluster.yaml => 13-delete-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{20--create-cluster.yaml => 20-create-cluster.yaml} (100%) rename testing/kuttl/e2e/scaledown/{21--update-cluster.yaml => 21-update-cluster.yaml} (100%) rename testing/kuttl/e2e/security-context/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/security-context/{01--security-context.yaml => 01-security-context.yaml} (100%) rename testing/kuttl/e2e/security-context/{10--kyverno.yaml => 10-kyverno.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-db-uri/{00--create-cluster.yaml => 00-create-cluster.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-db-uri/{01--user-schema.yaml => 01-user-schema.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-db-uri/{02--create-pgadmin.yaml => 02-create-pgadmin.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-db-uri/{04--update-pgadmin.yaml => 04-update-pgadmin.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{00--pgadmin.yaml => 00-pgadmin.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{01--update-service.yaml => 01-update-service.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{02--remove-service.yaml => 02-remove-service.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{10--manual-service.yaml => 10-manual-service.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{20--owned-service.yaml => 20-owned-service.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-service/{21--service-takeover-fails.yaml => 21-service-takeover-fails.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-user-management/{00--create-pgadmin.yaml => 00-create-pgadmin.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-user-management/{02--edit-pgadmin-users.yaml => 02-edit-pgadmin-users.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-user-management/{04--change-pgadmin-user-passwords.yaml => 04-change-pgadmin-user-passwords.yaml} (100%) rename testing/kuttl/e2e/standalone-pgadmin-user-management/{06--delete-pgadmin-users.yaml => 06-delete-pgadmin-users.yaml} (100%) rename testing/kuttl/e2e/streaming-standby/{00--secrets.yaml => 00-secrets.yaml} (100%) rename testing/kuttl/e2e/streaming-standby/{01--primary-cluster.yaml => 01-primary-cluster.yaml} (100%) rename testing/kuttl/e2e/streaming-standby/{02--create-data.yaml => 02-create-data.yaml} (100%) rename testing/kuttl/e2e/streaming-standby/{03--standby-cluster.yaml => 03-standby-cluster.yaml} (100%) rename testing/kuttl/e2e/streaming-standby/{04--check-data.yaml => 04-check-data.yaml} (100%) rename testing/kuttl/e2e/switchover/{01--cluster.yaml => 01-cluster.yaml} (100%) rename testing/kuttl/e2e/tablespace-enabled/{00--cluster.yaml => 00-cluster.yaml} (100%) rename testing/kuttl/e2e/tablespace-enabled/{01--psql-connect.yaml => 01-psql-connect.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{00--create-resources.yaml => 00-create-resources.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{01--create-data.yaml => 01-create-data.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{02--shutdown-cluster.yaml => 02-shutdown-cluster.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{03--annotate-cluster.yaml => 03-annotate-cluster.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{04--restart-cluster.yaml => 04-restart-cluster.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{06--check-data-and-version.yaml => 06-check-data-and-version.yaml} (100%) rename testing/kuttl/e2e/wal-pvc-pgupgrade/{06--check-spool-path.yaml => 06-check-spool-path.yaml} (100%) diff --git a/testing/kuttl/e2e/cluster-pause/00--cluster.yaml b/testing/kuttl/e2e/cluster-pause/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/cluster-pause/00--cluster.yaml rename to testing/kuttl/e2e/cluster-pause/00-cluster.yaml diff --git a/testing/kuttl/e2e/cluster-pause/01--cluster-paused.yaml b/testing/kuttl/e2e/cluster-pause/01-cluster-paused.yaml similarity index 100% rename from testing/kuttl/e2e/cluster-pause/01--cluster-paused.yaml rename to testing/kuttl/e2e/cluster-pause/01-cluster-paused.yaml diff --git a/testing/kuttl/e2e/cluster-pause/02--cluster-resume.yaml b/testing/kuttl/e2e/cluster-pause/02-cluster-resume.yaml similarity index 100% rename from testing/kuttl/e2e/cluster-pause/02--cluster-resume.yaml rename to testing/kuttl/e2e/cluster-pause/02-cluster-resume.yaml diff --git a/testing/kuttl/e2e/cluster-start/00--cluster.yaml b/testing/kuttl/e2e/cluster-start/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/cluster-start/00--cluster.yaml rename to testing/kuttl/e2e/cluster-start/00-cluster.yaml diff --git a/testing/kuttl/e2e/cluster-start/01--connect.yaml b/testing/kuttl/e2e/cluster-start/01-connect.yaml similarity index 100% rename from testing/kuttl/e2e/cluster-start/01--connect.yaml rename to testing/kuttl/e2e/cluster-start/01-connect.yaml diff --git a/testing/kuttl/e2e/exporter-custom-queries/00--create-cluster.yaml b/testing/kuttl/e2e/exporter-custom-queries/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-custom-queries/00--create-cluster.yaml rename to testing/kuttl/e2e/exporter-custom-queries/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/exporter-custom-queries/01--change-custom-queries.yaml b/testing/kuttl/e2e/exporter-custom-queries/01-change-custom-queries.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-custom-queries/01--change-custom-queries.yaml rename to testing/kuttl/e2e/exporter-custom-queries/01-change-custom-queries.yaml diff --git a/testing/kuttl/e2e/exporter-no-tls/00--create-cluster.yaml b/testing/kuttl/e2e/exporter-no-tls/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-no-tls/00--create-cluster.yaml rename to testing/kuttl/e2e/exporter-no-tls/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/exporter-password-change/00--create-cluster.yaml b/testing/kuttl/e2e/exporter-password-change/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-password-change/00--create-cluster.yaml rename to testing/kuttl/e2e/exporter-password-change/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/exporter-password-change/02--change-password.yaml b/testing/kuttl/e2e/exporter-password-change/02-change-password.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-password-change/02--change-password.yaml rename to testing/kuttl/e2e/exporter-password-change/02-change-password.yaml diff --git a/testing/kuttl/e2e/exporter-tls/00--create-cluster.yaml b/testing/kuttl/e2e/exporter-tls/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/exporter-tls/00--create-cluster.yaml rename to testing/kuttl/e2e/exporter-tls/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/01--valid-upgrade.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/01-valid-upgrade.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/01--valid-upgrade.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/01-valid-upgrade.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/10--cluster.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/10-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/10--cluster.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/10-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/11--shutdown-cluster.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/11-shutdown-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/11--shutdown-cluster.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/11-shutdown-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/12--start-and-update-version.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/12-start-and-update-version.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/12--start-and-update-version.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/12-start-and-update-version.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/13--shutdown-cluster.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/13-shutdown-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/13--shutdown-cluster.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/13-shutdown-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/14--annotate-cluster.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/14-annotate-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/14--annotate-cluster.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/14-annotate-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/15--start-cluster.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/15-start-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/15--start-cluster.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/15-start-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade-missing-image/17--check-version.yaml b/testing/kuttl/e2e/major-upgrade-missing-image/17-check-version.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade-missing-image/17--check-version.yaml rename to testing/kuttl/e2e/major-upgrade-missing-image/17-check-version.yaml diff --git a/testing/kuttl/e2e/major-upgrade/02--valid-upgrade.yaml b/testing/kuttl/e2e/major-upgrade/02-valid-upgrade.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/02--valid-upgrade.yaml rename to testing/kuttl/e2e/major-upgrade/02-valid-upgrade.yaml diff --git a/testing/kuttl/e2e/major-upgrade/10--already-updated-cluster.yaml b/testing/kuttl/e2e/major-upgrade/10-already-updated-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/10--already-updated-cluster.yaml rename to testing/kuttl/e2e/major-upgrade/10-already-updated-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade/30--cluster.yaml b/testing/kuttl/e2e/major-upgrade/30-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/30--cluster.yaml rename to testing/kuttl/e2e/major-upgrade/30-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade/31--create-data.yaml b/testing/kuttl/e2e/major-upgrade/31-create-data.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/31--create-data.yaml rename to testing/kuttl/e2e/major-upgrade/31-create-data.yaml diff --git a/testing/kuttl/e2e/major-upgrade/32--shutdown-cluster.yaml b/testing/kuttl/e2e/major-upgrade/32-shutdown-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/32--shutdown-cluster.yaml rename to testing/kuttl/e2e/major-upgrade/32-shutdown-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade/33--annotate-cluster.yaml b/testing/kuttl/e2e/major-upgrade/33-annotate-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/33--annotate-cluster.yaml rename to testing/kuttl/e2e/major-upgrade/33-annotate-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade/34--restart-cluster.yaml b/testing/kuttl/e2e/major-upgrade/34-restart-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/34--restart-cluster.yaml rename to testing/kuttl/e2e/major-upgrade/34-restart-cluster.yaml diff --git a/testing/kuttl/e2e/major-upgrade/36--check-data-and-version.yaml b/testing/kuttl/e2e/major-upgrade/36-check-data-and-version.yaml similarity index 100% rename from testing/kuttl/e2e/major-upgrade/36--check-data-and-version.yaml rename to testing/kuttl/e2e/major-upgrade/36-check-data-and-version.yaml diff --git a/testing/kuttl/e2e/optional-backups/00--cluster.yaml b/testing/kuttl/e2e/optional-backups/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/optional-backups/00--cluster.yaml rename to testing/kuttl/e2e/optional-backups/00-cluster.yaml diff --git a/testing/kuttl/e2e/optional-backups/04--cluster.yaml b/testing/kuttl/e2e/optional-backups/04-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/optional-backups/04--cluster.yaml rename to testing/kuttl/e2e/optional-backups/04-cluster.yaml diff --git a/testing/kuttl/e2e/optional-backups/10--cluster.yaml b/testing/kuttl/e2e/optional-backups/10-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/optional-backups/10--cluster.yaml rename to testing/kuttl/e2e/optional-backups/10-cluster.yaml diff --git a/testing/kuttl/e2e/optional-backups/20--cluster.yaml b/testing/kuttl/e2e/optional-backups/20-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/optional-backups/20--cluster.yaml rename to testing/kuttl/e2e/optional-backups/20-cluster.yaml diff --git a/testing/kuttl/e2e/optional-backups/22--cluster.yaml b/testing/kuttl/e2e/optional-backups/22-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/optional-backups/22--cluster.yaml rename to testing/kuttl/e2e/optional-backups/22-cluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/00--cluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/00--cluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/00-cluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/01--add-instrumentation-to-postgrescluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/01-add-instrumentation-to-postgrescluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/01--add-instrumentation-to-postgrescluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/01-add-instrumentation-to-postgrescluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/03--backup.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/03-backup.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/03--backup.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/03-backup.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/07--add-instrumentation-to-pgadmin.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/07-add-instrumentation-to-pgadmin.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/07--add-instrumentation-to-pgadmin.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/07-add-instrumentation-to-pgadmin.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/09--add-custom-queries.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/09-add-custom-queries.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/09--add-custom-queries.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/09-add-custom-queries.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/11--add-per-db-metrics-to-postgrescluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/11-add-per-db-metrics-to-postgrescluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/11--add-per-db-metrics-to-postgrescluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/11-add-per-db-metrics-to-postgrescluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/13--add-second-per-db-metrics-to-postgrescluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/13-add-second-per-db-metrics-to-postgrescluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/13--add-second-per-db-metrics-to-postgrescluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/13-add-second-per-db-metrics-to-postgrescluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/15--remove-per-db-metrics-from-postgrescluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/15-remove-per-db-metrics-from-postgrescluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/15--remove-per-db-metrics-from-postgrescluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/15-remove-per-db-metrics-from-postgrescluster.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/17--add-custom-queries-per-db.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/17-add-custom-queries-per-db.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/17--add-custom-queries-per-db.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/17-add-custom-queries-per-db.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/19--add-logs-metrics-exporter.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/19-add-logs-metrics-exporter.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/19--add-logs-metrics-exporter.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/19-add-logs-metrics-exporter.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/21--cluster-no-backups.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/21-cluster-no-backups.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/21--cluster-no-backups.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/21-cluster-no-backups.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/23--cluster-add-backups.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/23-cluster-add-backups.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/23--cluster-add-backups.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/23-cluster-add-backups.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/24--remove-backups.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/24-remove-backups.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/24--remove-backups.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/24-remove-backups.yaml diff --git a/testing/kuttl/e2e/otel-logging-and-metrics/25--annotate-cluster.yaml b/testing/kuttl/e2e/otel-logging-and-metrics/25-annotate-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/otel-logging-and-metrics/25--annotate-cluster.yaml rename to testing/kuttl/e2e/otel-logging-and-metrics/25-annotate-cluster.yaml diff --git a/testing/kuttl/e2e/password-change/00--cluster.yaml b/testing/kuttl/e2e/password-change/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/00--cluster.yaml rename to testing/kuttl/e2e/password-change/00-cluster.yaml diff --git a/testing/kuttl/e2e/password-change/01--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/01-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/01--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/01-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/01--psql-connect.yaml b/testing/kuttl/e2e/password-change/01-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/01--psql-connect.yaml rename to testing/kuttl/e2e/password-change/01-psql-connect.yaml diff --git a/testing/kuttl/e2e/password-change/02--secret.yaml b/testing/kuttl/e2e/password-change/02-secret.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/02--secret.yaml rename to testing/kuttl/e2e/password-change/02-secret.yaml diff --git a/testing/kuttl/e2e/password-change/03--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/03-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/03--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/03-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/03--psql-connect.yaml b/testing/kuttl/e2e/password-change/03-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/03--psql-connect.yaml rename to testing/kuttl/e2e/password-change/03-psql-connect.yaml diff --git a/testing/kuttl/e2e/password-change/04--secret.yaml b/testing/kuttl/e2e/password-change/04-secret.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/04--secret.yaml rename to testing/kuttl/e2e/password-change/04-secret.yaml diff --git a/testing/kuttl/e2e/password-change/05--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/05-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/05--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/05-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/05--psql-connect.yaml b/testing/kuttl/e2e/password-change/05-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/05--psql-connect.yaml rename to testing/kuttl/e2e/password-change/05-psql-connect.yaml diff --git a/testing/kuttl/e2e/password-change/06--cluster.yaml b/testing/kuttl/e2e/password-change/06-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/06--cluster.yaml rename to testing/kuttl/e2e/password-change/06-cluster.yaml diff --git a/testing/kuttl/e2e/password-change/07--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/07-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/07--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/07-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/07--psql-connect.yaml b/testing/kuttl/e2e/password-change/07-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/07--psql-connect.yaml rename to testing/kuttl/e2e/password-change/07-psql-connect.yaml diff --git a/testing/kuttl/e2e/password-change/08--secret.yaml b/testing/kuttl/e2e/password-change/08-secret.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/08--secret.yaml rename to testing/kuttl/e2e/password-change/08-secret.yaml diff --git a/testing/kuttl/e2e/password-change/09--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/09-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/09--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/09-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/09--psql-connect.yaml b/testing/kuttl/e2e/password-change/09-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/09--psql-connect.yaml rename to testing/kuttl/e2e/password-change/09-psql-connect.yaml diff --git a/testing/kuttl/e2e/password-change/10--secret.yaml b/testing/kuttl/e2e/password-change/10-secret.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/10--secret.yaml rename to testing/kuttl/e2e/password-change/10-secret.yaml diff --git a/testing/kuttl/e2e/password-change/11--psql-connect-uri.yaml b/testing/kuttl/e2e/password-change/11-psql-connect-uri.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/11--psql-connect-uri.yaml rename to testing/kuttl/e2e/password-change/11-psql-connect-uri.yaml diff --git a/testing/kuttl/e2e/password-change/11--psql-connect.yaml b/testing/kuttl/e2e/password-change/11-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/password-change/11--psql-connect.yaml rename to testing/kuttl/e2e/password-change/11-psql-connect.yaml diff --git a/testing/kuttl/e2e/pgbackrest-backup-standby/00--cluster.yaml b/testing/kuttl/e2e/pgbackrest-backup-standby/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-backup-standby/00--cluster.yaml rename to testing/kuttl/e2e/pgbackrest-backup-standby/00-cluster.yaml diff --git a/testing/kuttl/e2e/pgbackrest-backup-standby/01--check-backup-logs.yaml b/testing/kuttl/e2e/pgbackrest-backup-standby/01-check-backup-logs.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-backup-standby/01--check-backup-logs.yaml rename to testing/kuttl/e2e/pgbackrest-backup-standby/01-check-backup-logs.yaml diff --git a/testing/kuttl/e2e/pgbackrest-backup-standby/02--cluster.yaml b/testing/kuttl/e2e/pgbackrest-backup-standby/02-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-backup-standby/02--cluster.yaml rename to testing/kuttl/e2e/pgbackrest-backup-standby/02-cluster.yaml diff --git a/testing/kuttl/e2e/pgbackrest-init/00--cluster.yaml b/testing/kuttl/e2e/pgbackrest-init/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-init/00--cluster.yaml rename to testing/kuttl/e2e/pgbackrest-init/00-cluster.yaml diff --git a/testing/kuttl/e2e/pgbackrest-init/02--cluster.yaml b/testing/kuttl/e2e/pgbackrest-init/02-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-init/02--cluster.yaml rename to testing/kuttl/e2e/pgbackrest-init/02-cluster.yaml diff --git a/testing/kuttl/e2e/pgbackrest-init/04--cluster.yaml b/testing/kuttl/e2e/pgbackrest-init/04-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-init/04--cluster.yaml rename to testing/kuttl/e2e/pgbackrest-init/04-cluster.yaml diff --git a/testing/kuttl/e2e/pgbackrest-init/06--check-spool-path.yaml b/testing/kuttl/e2e/pgbackrest-init/06-check-spool-path.yaml similarity index 100% rename from testing/kuttl/e2e/pgbackrest-init/06--check-spool-path.yaml rename to testing/kuttl/e2e/pgbackrest-init/06-check-spool-path.yaml diff --git a/testing/kuttl/e2e/pgbouncer/00--cluster.yaml b/testing/kuttl/e2e/pgbouncer/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/00--cluster.yaml rename to testing/kuttl/e2e/pgbouncer/00-cluster.yaml diff --git a/testing/kuttl/e2e/pgbouncer/01--psql-connect.yaml b/testing/kuttl/e2e/pgbouncer/01-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/01--psql-connect.yaml rename to testing/kuttl/e2e/pgbouncer/01-psql-connect.yaml diff --git a/testing/kuttl/e2e/pgbouncer/10--read-certificate.yaml b/testing/kuttl/e2e/pgbouncer/10-read-certificate.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/10--read-certificate.yaml rename to testing/kuttl/e2e/pgbouncer/10-read-certificate.yaml diff --git a/testing/kuttl/e2e/pgbouncer/11--open-connection.yaml b/testing/kuttl/e2e/pgbouncer/11-open-connection.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/11--open-connection.yaml rename to testing/kuttl/e2e/pgbouncer/11-open-connection.yaml diff --git a/testing/kuttl/e2e/pgbouncer/12--rotate-certificate.yaml b/testing/kuttl/e2e/pgbouncer/12-rotate-certificate.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/12--rotate-certificate.yaml rename to testing/kuttl/e2e/pgbouncer/12-rotate-certificate.yaml diff --git a/testing/kuttl/e2e/pgbouncer/13--read-certificate.yaml b/testing/kuttl/e2e/pgbouncer/13-read-certificate.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/13--read-certificate.yaml rename to testing/kuttl/e2e/pgbouncer/13-read-certificate.yaml diff --git a/testing/kuttl/e2e/pgbouncer/14--compare-certificate.yaml b/testing/kuttl/e2e/pgbouncer/14-compare-certificate.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/14--compare-certificate.yaml rename to testing/kuttl/e2e/pgbouncer/14-compare-certificate.yaml diff --git a/testing/kuttl/e2e/pgbouncer/15--check-connection.yaml b/testing/kuttl/e2e/pgbouncer/15-check-connection.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/15--check-connection.yaml rename to testing/kuttl/e2e/pgbouncer/15-check-connection.yaml diff --git a/testing/kuttl/e2e/pgbouncer/16--reconnect.yaml b/testing/kuttl/e2e/pgbouncer/16-reconnect.yaml similarity index 100% rename from testing/kuttl/e2e/pgbouncer/16--reconnect.yaml rename to testing/kuttl/e2e/pgbouncer/16-reconnect.yaml diff --git a/testing/kuttl/e2e/replica-read/00--cluster.yaml b/testing/kuttl/e2e/replica-read/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/replica-read/00--cluster.yaml rename to testing/kuttl/e2e/replica-read/00-cluster.yaml diff --git a/testing/kuttl/e2e/replica-read/01--psql-replica-read.yaml b/testing/kuttl/e2e/replica-read/01-psql-replica-read.yaml similarity index 100% rename from testing/kuttl/e2e/replica-read/01--psql-replica-read.yaml rename to testing/kuttl/e2e/replica-read/01-psql-replica-read.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/00--cluster.yaml b/testing/kuttl/e2e/root-cert-ownership/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/00--cluster.yaml rename to testing/kuttl/e2e/root-cert-ownership/00-cluster.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/01--check-owners.yaml b/testing/kuttl/e2e/root-cert-ownership/01-check-owners.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/01--check-owners.yaml rename to testing/kuttl/e2e/root-cert-ownership/01-check-owners.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/02--delete-owner1.yaml b/testing/kuttl/e2e/root-cert-ownership/02-delete-owner1.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/02--delete-owner1.yaml rename to testing/kuttl/e2e/root-cert-ownership/02-delete-owner1.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/03--check-owners.yaml b/testing/kuttl/e2e/root-cert-ownership/03-check-owners.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/03--check-owners.yaml rename to testing/kuttl/e2e/root-cert-ownership/03-check-owners.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/04--delete-owner2.yaml b/testing/kuttl/e2e/root-cert-ownership/04-delete-owner2.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/04--delete-owner2.yaml rename to testing/kuttl/e2e/root-cert-ownership/04-delete-owner2.yaml diff --git a/testing/kuttl/e2e/root-cert-ownership/05--check-secret.yaml b/testing/kuttl/e2e/root-cert-ownership/05-check-secret.yaml similarity index 100% rename from testing/kuttl/e2e/root-cert-ownership/05--check-secret.yaml rename to testing/kuttl/e2e/root-cert-ownership/05-check-secret.yaml diff --git a/testing/kuttl/e2e/scaledown/00--create-cluster.yaml b/testing/kuttl/e2e/scaledown/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/00--create-cluster.yaml rename to testing/kuttl/e2e/scaledown/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/01--update-cluster.yaml b/testing/kuttl/e2e/scaledown/01-update-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/01--update-cluster.yaml rename to testing/kuttl/e2e/scaledown/01-update-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/02--delete-cluster.yaml b/testing/kuttl/e2e/scaledown/02-delete-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/02--delete-cluster.yaml rename to testing/kuttl/e2e/scaledown/02-delete-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/10--create-cluster.yaml b/testing/kuttl/e2e/scaledown/10-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/10--create-cluster.yaml rename to testing/kuttl/e2e/scaledown/10-create-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/12--update-cluster.yaml b/testing/kuttl/e2e/scaledown/12-update-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/12--update-cluster.yaml rename to testing/kuttl/e2e/scaledown/12-update-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/13--delete-cluster.yaml b/testing/kuttl/e2e/scaledown/13-delete-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/13--delete-cluster.yaml rename to testing/kuttl/e2e/scaledown/13-delete-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/20--create-cluster.yaml b/testing/kuttl/e2e/scaledown/20-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/20--create-cluster.yaml rename to testing/kuttl/e2e/scaledown/20-create-cluster.yaml diff --git a/testing/kuttl/e2e/scaledown/21--update-cluster.yaml b/testing/kuttl/e2e/scaledown/21-update-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/scaledown/21--update-cluster.yaml rename to testing/kuttl/e2e/scaledown/21-update-cluster.yaml diff --git a/testing/kuttl/e2e/security-context/00--cluster.yaml b/testing/kuttl/e2e/security-context/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/security-context/00--cluster.yaml rename to testing/kuttl/e2e/security-context/00-cluster.yaml diff --git a/testing/kuttl/e2e/security-context/01--security-context.yaml b/testing/kuttl/e2e/security-context/01-security-context.yaml similarity index 100% rename from testing/kuttl/e2e/security-context/01--security-context.yaml rename to testing/kuttl/e2e/security-context/01-security-context.yaml diff --git a/testing/kuttl/e2e/security-context/10--kyverno.yaml b/testing/kuttl/e2e/security-context/10-kyverno.yaml similarity index 100% rename from testing/kuttl/e2e/security-context/10--kyverno.yaml rename to testing/kuttl/e2e/security-context/10-kyverno.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-db-uri/00--create-cluster.yaml b/testing/kuttl/e2e/standalone-pgadmin-db-uri/00-create-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-db-uri/00--create-cluster.yaml rename to testing/kuttl/e2e/standalone-pgadmin-db-uri/00-create-cluster.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-db-uri/01--user-schema.yaml b/testing/kuttl/e2e/standalone-pgadmin-db-uri/01-user-schema.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-db-uri/01--user-schema.yaml rename to testing/kuttl/e2e/standalone-pgadmin-db-uri/01-user-schema.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-db-uri/02--create-pgadmin.yaml b/testing/kuttl/e2e/standalone-pgadmin-db-uri/02-create-pgadmin.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-db-uri/02--create-pgadmin.yaml rename to testing/kuttl/e2e/standalone-pgadmin-db-uri/02-create-pgadmin.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-db-uri/04--update-pgadmin.yaml b/testing/kuttl/e2e/standalone-pgadmin-db-uri/04-update-pgadmin.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-db-uri/04--update-pgadmin.yaml rename to testing/kuttl/e2e/standalone-pgadmin-db-uri/04-update-pgadmin.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/00--pgadmin.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/00-pgadmin.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/00--pgadmin.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/00-pgadmin.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/01--update-service.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/01-update-service.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/01--update-service.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/01-update-service.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/02--remove-service.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/02-remove-service.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/02--remove-service.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/02-remove-service.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/10--manual-service.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/10-manual-service.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/10--manual-service.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/10-manual-service.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/20--owned-service.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/20-owned-service.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/20--owned-service.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/20-owned-service.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-service/21--service-takeover-fails.yaml b/testing/kuttl/e2e/standalone-pgadmin-service/21-service-takeover-fails.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-service/21--service-takeover-fails.yaml rename to testing/kuttl/e2e/standalone-pgadmin-service/21-service-takeover-fails.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-user-management/00--create-pgadmin.yaml b/testing/kuttl/e2e/standalone-pgadmin-user-management/00-create-pgadmin.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-user-management/00--create-pgadmin.yaml rename to testing/kuttl/e2e/standalone-pgadmin-user-management/00-create-pgadmin.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-user-management/02--edit-pgadmin-users.yaml b/testing/kuttl/e2e/standalone-pgadmin-user-management/02-edit-pgadmin-users.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-user-management/02--edit-pgadmin-users.yaml rename to testing/kuttl/e2e/standalone-pgadmin-user-management/02-edit-pgadmin-users.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-user-management/04--change-pgadmin-user-passwords.yaml b/testing/kuttl/e2e/standalone-pgadmin-user-management/04-change-pgadmin-user-passwords.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-user-management/04--change-pgadmin-user-passwords.yaml rename to testing/kuttl/e2e/standalone-pgadmin-user-management/04-change-pgadmin-user-passwords.yaml diff --git a/testing/kuttl/e2e/standalone-pgadmin-user-management/06--delete-pgadmin-users.yaml b/testing/kuttl/e2e/standalone-pgadmin-user-management/06-delete-pgadmin-users.yaml similarity index 100% rename from testing/kuttl/e2e/standalone-pgadmin-user-management/06--delete-pgadmin-users.yaml rename to testing/kuttl/e2e/standalone-pgadmin-user-management/06-delete-pgadmin-users.yaml diff --git a/testing/kuttl/e2e/streaming-standby/00--secrets.yaml b/testing/kuttl/e2e/streaming-standby/00-secrets.yaml similarity index 100% rename from testing/kuttl/e2e/streaming-standby/00--secrets.yaml rename to testing/kuttl/e2e/streaming-standby/00-secrets.yaml diff --git a/testing/kuttl/e2e/streaming-standby/01--primary-cluster.yaml b/testing/kuttl/e2e/streaming-standby/01-primary-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/streaming-standby/01--primary-cluster.yaml rename to testing/kuttl/e2e/streaming-standby/01-primary-cluster.yaml diff --git a/testing/kuttl/e2e/streaming-standby/02--create-data.yaml b/testing/kuttl/e2e/streaming-standby/02-create-data.yaml similarity index 100% rename from testing/kuttl/e2e/streaming-standby/02--create-data.yaml rename to testing/kuttl/e2e/streaming-standby/02-create-data.yaml diff --git a/testing/kuttl/e2e/streaming-standby/03--standby-cluster.yaml b/testing/kuttl/e2e/streaming-standby/03-standby-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/streaming-standby/03--standby-cluster.yaml rename to testing/kuttl/e2e/streaming-standby/03-standby-cluster.yaml diff --git a/testing/kuttl/e2e/streaming-standby/04--check-data.yaml b/testing/kuttl/e2e/streaming-standby/04-check-data.yaml similarity index 100% rename from testing/kuttl/e2e/streaming-standby/04--check-data.yaml rename to testing/kuttl/e2e/streaming-standby/04-check-data.yaml diff --git a/testing/kuttl/e2e/switchover/01--cluster.yaml b/testing/kuttl/e2e/switchover/01-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/switchover/01--cluster.yaml rename to testing/kuttl/e2e/switchover/01-cluster.yaml diff --git a/testing/kuttl/e2e/tablespace-enabled/00--cluster.yaml b/testing/kuttl/e2e/tablespace-enabled/00-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/tablespace-enabled/00--cluster.yaml rename to testing/kuttl/e2e/tablespace-enabled/00-cluster.yaml diff --git a/testing/kuttl/e2e/tablespace-enabled/01--psql-connect.yaml b/testing/kuttl/e2e/tablespace-enabled/01-psql-connect.yaml similarity index 100% rename from testing/kuttl/e2e/tablespace-enabled/01--psql-connect.yaml rename to testing/kuttl/e2e/tablespace-enabled/01-psql-connect.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/00--create-resources.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/00-create-resources.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/00--create-resources.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/00-create-resources.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/01--create-data.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/01-create-data.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/01--create-data.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/01-create-data.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/02--shutdown-cluster.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/02-shutdown-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/02--shutdown-cluster.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/02-shutdown-cluster.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/03--annotate-cluster.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/03-annotate-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/03--annotate-cluster.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/03-annotate-cluster.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/04--restart-cluster.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/04-restart-cluster.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/04--restart-cluster.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/04-restart-cluster.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/06--check-data-and-version.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/06-check-data-and-version.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/06--check-data-and-version.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/06-check-data-and-version.yaml diff --git a/testing/kuttl/e2e/wal-pvc-pgupgrade/06--check-spool-path.yaml b/testing/kuttl/e2e/wal-pvc-pgupgrade/06-check-spool-path.yaml similarity index 100% rename from testing/kuttl/e2e/wal-pvc-pgupgrade/06--check-spool-path.yaml rename to testing/kuttl/e2e/wal-pvc-pgupgrade/06-check-spool-path.yaml