diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index 6fef407..74bdffd 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -61,10 +61,8 @@ jobs: run: | helm repo add bitnami https://charts.bitnami.com/bitnami kubectl create namespace mongodb - helm install mongodb -n mongodb bitnami/mongodb --values ./base/mongodb/mongodb-values.yaml - echo "Sleeping for 250 seconds, give time for the helm chart to create the pods" && sleep 250 + helm install mongodb -n mongodb bitnami/mongodb --values ./base/mongodb/mongodb-values.yaml --wait --timeout=5m kubectl get pods -A -o wide - kubectl get pods -A -o wide | grep mongodb | awk '{print $3}' | grep -q '1/1' && echo "mongodb pod is running with status 1/1" || (echo "mongodb pod is not running with status 1/1" && exit 1) - name: Install RabbitMQ id: install-rabbitmq run: | diff --git a/base/rabbitmq/rabbitmq-values.yaml b/base/rabbitmq/rabbitmq-values.yaml index 459e82b..8ada562 100644 --- a/base/rabbitmq/rabbitmq-values.yaml +++ b/base/rabbitmq/rabbitmq-values.yaml @@ -19,13 +19,16 @@ global: ## imagePullSecrets: [] storageClass: "openebs-hostpath" + security: + allowInsecureImages: true + ## @section RabbitMQ Image parameters ## Bitnami RabbitMQ image version ## ref: https://hub.docker.com/r/bitnami/rabbitmq/tags/ ## @param image.registry [default: REGISTRY_NAME] RabbitMQ image registry ## @param image.repository [default: REPOSITORY_NAME/rabbitmq] RabbitMQ image repository ## @skip image.tag RabbitMQ image tag (immutable tags are recommended) -## @param image.digest RabbitMQ image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.digest RabbitMQ image digest in allowInsecureImages way sha256:aa.... Please note this parameter, if set, will override the tag ## @param image.pullPolicy RabbitMQ image pull policy ## @param image.pullSecrets Specify docker-registry secret names as an array ## @param image.debug Set to true if you would like to see extra information on logs