diff --git a/base/order-deploy.yaml b/base/order-deploy.yaml index 5f0d059..806f9c3 100644 --- a/base/order-deploy.yaml +++ b/base/order-deploy.yaml @@ -41,13 +41,13 @@ spec: livenessProbe: httpGet: port: 8080 - path: /health/live + path: /q/health/live failureThreshold: 10 periodSeconds: 30 readinessProbe: httpGet: port: 8080 - path: /health/ready + path: /q/health/ready failureThreshold: 10 periodSeconds: 30 diff --git a/overlays/aws/dev/order-dapr-statestore-redis.yaml b/overlays/aws/dev/order-dapr-statestore-redis.yaml index 1eb294e..a462fd8 100644 --- a/overlays/aws/dev/order-dapr-statestore-redis.yaml +++ b/overlays/aws/dev/order-dapr-statestore-redis.yaml @@ -19,6 +19,6 @@ spec: - name: redisPassword secretKeyRef: name: secret-nautible-app-ms-order - key: ELASTICACHE_PW + key: DAPR_STATESTORE_PW - name: enableTLS value: true \ No newline at end of file diff --git a/overlays/aws/dev/order-deploy.yaml b/overlays/aws/dev/order-deploy.yaml index 843db3a..415b30e 100644 --- a/overlays/aws/dev/order-deploy.yaml +++ b/overlays/aws/dev/order-deploy.yaml @@ -9,7 +9,7 @@ spec: spec: containers: - name: nautible-app-ms-order - image: public.ecr.aws/nautible/nautible-app-ms-order:a1f0d157f25f7d1250360f93edc1542692aa1039 + image: public.ecr.aws/nautible/nautible-app-ms-order:6e7e99cbba20f9780b99151c0f09cb644b39f241 env: - name: QUARKUS_PROFILE value: aws-dev diff --git a/overlays/azure/dev/order-deploy.yaml b/overlays/azure/dev/order-deploy.yaml index e3c2e44..32e10db 100644 --- a/overlays/azure/dev/order-deploy.yaml +++ b/overlays/azure/dev/order-deploy.yaml @@ -9,7 +9,7 @@ spec: spec: containers: - name: nautible-app-ms-order - image: nautibledevacr.azurecr.io/nautible-app-ms-order:a1f0d157f25f7d1250360f93edc1542692aa1039 + image: nautibledevacr.azurecr.io/nautible-app-ms-order:6e7e99cbba20f9780b99151c0f09cb644b39f241 env: - name: QUARKUS_PROFILE value: azure-dev diff --git a/overlays/azure/local-dev/dependencies/order-mongo.yaml b/overlays/azure/local-dev/dependencies/order-mongo.yaml index 4923ffb..7ac139d 100644 --- a/overlays/azure/local-dev/dependencies/order-mongo.yaml +++ b/overlays/azure/local-dev/dependencies/order-mongo.yaml @@ -43,10 +43,10 @@ spec: command: - sh - -c - - "for i in `seq 1 60`; do mongo mongodb://root:password@localhost:27017/?authSource=admin --quiet && break || true; sleep 5; done \ - && mongo mongodb://root:password@localhost:27017/?authSource=admin --eval 'db.getSiblingDB(\"Common\").createCollection(\"Sequence\");' \ - && mongo mongodb://root:password@localhost:27017/?authSource=admin --eval 'db.getSiblingDB(\"Order\").createCollection(\"Order\");' \ - && mongo mongodb://root:password@localhost:27017/Common?authSource=admin --eval 'db.Sequence.insertOne( { _id: \"Order\", SequenceNumber: NumberInt(0) } );'" + - "for i in `seq 1 60`; do mongostat mongodb://root:password@localhost:27017/?authSource=admin -n 1 && break || true; sleep 5; done \ + && mongosh mongodb://root:password@localhost:27017/Common?authSource=admin --eval 'db.getSiblingDB(\"Common\").createCollection(\"Sequence\");' \ + && mongosh mongodb://root:password@localhost:27017/Order?authSource=admin --eval 'db.getSiblingDB(\"Order\").createCollection(\"Order\");' \ + && mongosh mongodb://root:password@localhost:27017/Common?authSource=admin --eval 'db.Sequence.insertOne( { _id: \"Order\", SequenceNumber: NumberInt(0) } );'" - name: order-mongodb-express image: mongo-express ports: