Add osh ingress (#249)
* feat: add OpenstackHelmIngress
* chore: drop certbuilder deps
* chore: shave more deps
* feat: added openstackhelmrabbitmqclusters
* fix: install cert-manager first
* test: fix integration tests
* test: fix e2e tests
* tests: describe and get all resources
* fix: change default image repo to be none
* fix: solve when no override_registry
* fix: add annotation + labels
* fix: move more reesources to helm
* fix: add more dependencies
* chore: move services out of flows
* chore: build dependencies
* fix: drops deps from ApplyPerconaXtraDBClusterTask
* fix: add wait_for_pxc role to avoid race conditions
* fix: solve rabbitmq for magnum
* fix: clean-up filter_annotations
* chore: increase wait_timeout for secret waiting
diff --git a/roles/wait_for_pxc/README.md b/roles/wait_for_pxc/README.md
new file mode 100644
index 0000000..918f313
--- /dev/null
+++ b/roles/wait_for_pxc/README.md
@@ -0,0 +1,4 @@
+# wait_for_pxc
+
+This is a meta-role which should be used as a dependency for now to allow the
+Ansible roles to wait for the PXC cluster to be ready before proceeding.
diff --git a/roles/wait_for_pxc/tasks/main.yml b/roles/wait_for_pxc/tasks/main.yml
new file mode 100644
index 0000000..5fa3637
--- /dev/null
+++ b/roles/wait_for_pxc/tasks/main.yml
@@ -0,0 +1,12 @@
+- name: Wait until Percona XtraDB Cluster is ready
+ kubernetes.core.k8s_info:
+ api_version: pxc.percona.com/v1
+ kind: PerconaXtraDBCluster
+ name: percona-xtradb
+ namespace: openstack
+ wait_sleep: 1
+ wait_timeout: 600
+ wait: true
+ wait_condition:
+ type: ready
+ status: true