Skip to content

Commit

Permalink
command
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon KP committed Apr 16, 2024
1 parent 7326522 commit 19f8563
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/node.js-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
GIT_ACCESS_API_TOKEN: ${{ secrets.GIT_ACCESS_API_TOKEN }}
MIP_GITHUB_REPOSITORY: ${{ secrets.MIP_GITHUB_REPOSITORY_DEV }}
MIP_GITHUB_REPOSITORY_OWNER: ${{ secrets.MIP_GITHUB_REPOSITORY_OWNER_DEV }}
MONGODB_URI: ${{ secrets.MONGODB_URI }}
run: |
# Build Docker containers and push them to ECR ${{ env.AWS_ECR_NAME }}
docker pull $ECR_REGISTRY/$AWS_ECR_NAME:$LATEST_TAG || true
Expand Down
24 changes: 16 additions & 8 deletions backend/helm/staging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,21 @@ env:
externalSecrets:
clusterSecretStoreName: maker-staging

livenessProbe: {}
# initialDelaySeconds: 5
# periodSeconds: 30
livenessProbe:
initialDelaySeconds: 5
periodSeconds: 30
# tcpSocket:
# port: 3000
command:
- sh
- -c
- ps aux
readinessProbe:
initialDelaySeconds: 5
periodSeconds: 30
command:
- sh
- -c
- ps aux
# tcpSocket:
# port: 3000
readinessProbe: {}
# initialDelaySeconds: 5
# periodSeconds: 30
# tcpSocket:
# port: 3000

0 comments on commit 19f8563

Please sign in to comment.