mirror of
https://github.com/kerberos-io/deployment.git
synced 2026-08-23 15:18:32 +00:00
Update MongoDB installation command to use --wait and --timeout options; add allowInsecureImages parameter to RabbitMQ values
This commit is contained in:
4
.github/workflows/kind.yaml
vendored
4
.github/workflows/kind.yaml
vendored
@@ -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: |
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user