Skip to content

Commit

Permalink
Merge pull request #23 from nautible/release/2022.3
Browse files Browse the repository at this point in the history
Release/2022.3
  • Loading branch information
ogis-yamanaka authored Oct 19, 2022
2 parents 9bbb0bb + 901c0f4 commit 6c92802
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions base/order-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion overlays/aws/dev/order-dapr-statestore-redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion overlays/aws/dev/order-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion overlays/azure/dev/order-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions overlays/azure/local-dev/dependencies/order-mongo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6c92802

Please sign in to comment.