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/molecule/default/destroy.yml b/molecule/default/destroy.yml
index 71c277d..b1c3516 100644
--- a/molecule/default/destroy.yml
+++ b/molecule/default/destroy.yml
@@ -25,6 +25,80 @@
       when:
         - ansible_host is not defined
 
+    - name: Describe all cluster-scoped objects
+      become: true
+      shell: |-
+        set -e
+        export OBJECT_TYPE=node,clusterrole,clusterrolebinding,storageclass,namespace
+        export PARALLELISM_FACTOR=4
+        function list_objects () {
+          printf ${OBJECT_TYPE} | xargs -d ',' -I {} -P1 -n1 bash -c 'echo "$@"' _ {}
+        }
+        export -f list_objects
+        function name_objects () {
+          export OBJECT=$1
+          kubectl get ${OBJECT} -o name | xargs -L1 -I {} -P1 -n1 bash -c 'echo "${OBJECT} ${1#*/}"' _ {}
+        }
+        export -f name_objects
+        function get_objects () {
+          input=($1)
+          export OBJECT=${input[0]}
+          export NAME=${input[1]#*/}
+          echo "${OBJECT}/${NAME}"
+          DIR="{{ logs_dir }}/objects/cluster/${OBJECT}"
+          mkdir -p ${DIR}
+          kubectl get ${OBJECT} ${NAME} -o yaml > "${DIR}/${NAME}.yaml"
+          kubectl describe ${OBJECT} ${NAME} > "${DIR}/${NAME}.txt"
+        }
+        export -f get_objects
+        list_objects | \
+          xargs -r -n 1 -P ${PARALLELISM_FACTOR} -I {} bash -c 'name_objects "$@"' _ {} | \
+          xargs -r -n 1 -P ${PARALLELISM_FACTOR} -I {} bash -c 'get_objects "$@"' _ {}
+      args:
+        executable: /bin/bash
+      ignore_errors: True
+
+    - name: Describe all namespace-scoped objects
+      become: true
+      shell: |-
+        set -e
+        export OBJECT_TYPE=configmaps,cronjobs,daemonsets,deployment,endpoints,ingresses,jobs,networkpolicies,pods,podsecuritypolicies,persistentvolumeclaims,rolebindings,roles,secrets,serviceaccounts,services,statefulsets
+        export PARALLELISM_FACTOR=4
+        function get_namespaces () {
+          kubectl get namespaces -o name | awk -F '/' '{ print $NF }'
+        }
+        function list_namespaced_objects () {
+          export NAMESPACE=$1
+          printf ${OBJECT_TYPE} | xargs -d ',' -I {} -P1 -n1 bash -c 'echo "${NAMESPACE} $@"' _ {}
+        }
+        export -f list_namespaced_objects
+        function name_objects () {
+          input=($1)
+          export NAMESPACE=${input[0]}
+          export OBJECT=${input[1]}
+          kubectl get -n ${NAMESPACE} ${OBJECT} -o name | xargs -L1 -I {} -P1 -n1 bash -c 'echo "${NAMESPACE} ${OBJECT} $@"' _ {}
+        }
+        export -f name_objects
+        function get_objects () {
+          input=($1)
+          export NAMESPACE=${input[0]}
+          export OBJECT=${input[1]}
+          export NAME=${input[2]#*/}
+          echo "${NAMESPACE}/${OBJECT}/${NAME}"
+          DIR="{{ logs_dir }}/objects/namespaced/${NAMESPACE}/${OBJECT}"
+          mkdir -p ${DIR}
+          kubectl get -n ${NAMESPACE} ${OBJECT} ${NAME} -o yaml > "${DIR}/${NAME}.yaml"
+          kubectl describe -n ${NAMESPACE} ${OBJECT} ${NAME} > "${DIR}/${NAME}.txt"
+        }
+        export -f get_objects
+        get_namespaces | \
+          xargs -r -n 1 -P ${PARALLELISM_FACTOR} -I {} bash -c 'list_namespaced_objects "$@"' _ {} | \
+          xargs -r -n 1 -P ${PARALLELISM_FACTOR} -I {} bash -c 'name_objects "$@"' _ {} | \
+          xargs -r -n 1 -P ${PARALLELISM_FACTOR} -I {} bash -c 'get_objects "$@"' _ {}
+      args:
+        executable: /bin/bash
+      ignore_errors: True
+
     - name: Retrieve all container logs, current and previous (if they exist)
       become: true
       shell: |-