Skip to content

Commit

Permalink
fix helm
Browse files Browse the repository at this point in the history
  • Loading branch information
SMANUM committed Oct 26, 2023
1 parent ccd1705 commit c55e6f3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
REPOSITORY: ${{ vars.DOCKER_IMAGE_NAME}}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -f src/main/java/it/gov/pagopa/atmlayer/service/model/docker/Dockerfile.native -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker build -f src/main/java/it/gov/pagopa/atmlayer/service/model/docker/Dockerfile.native -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . \
--build-arg QUARKUS_PROFILE=prod \
--build-arg APP_NAME=atm-layer-model
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
- name: Update Kubernetes Config
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ jobs:
REPOSITORY: ${{ vars.DOCKER_IMAGE_NAME}}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -f src/main/java/it/gov/pagopa/atmlayer/service/model/docker/Dockerfile.native -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker build -f src/main/java/it/gov/pagopa/atmlayer/service/model/docker/Dockerfile.native -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . \
--build-arg QUARKUS_PROFILE=prod \
--build-arg APP_NAME=atm-layer-model
6 changes: 3 additions & 3 deletions helm-chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ spec:
value: "{{ .Values.milAdapter.tokenCacheMaxEntries }}"
volumeMounts:
- name: secrets-store-inline-1
mountPath: "/mnt/secrets-store"
mountPath: "/mnt/secrets-store/1"
readOnly: true
- name: secrets-store-inline-2
mountPath: "/mnt/secrets-store"
mountPath: "/mnt/secrets-store/2"
readOnly: true
- name: secrets-store-inline-3
mountPath: "/mnt/secrets-store"
mountPath: "/mnt/secrets-store/3"
readOnly: true

strategy:
Expand Down

0 comments on commit c55e6f3

Please sign in to comment.