Skip to content

Commit

Permalink
chore: add volumemount and smtp_ca env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
valosnah committed Jan 25, 2024
1 parent 557dc04 commit 0059eb0
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 94 deletions.
Binary file modified fdk-community-service-0.1.0.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ spec:
secretKeyRef:
name: fdk-community-{{ required "Missing value NAMESPACE" .Values.NAMESPACE }}
key: TOKEN_UID
- name: SMTP_CA
value: /usr/src/app/certs/ca.crt
image: {{ required "Missing value DOCKER_IMAGE_NAME" .Values.DOCKER_IMAGE_NAME }}
imagePullPolicy: Always
name: fdk-community-service
Expand All @@ -85,13 +87,18 @@ spec:
requests:
memory: {{ required "Missing value FDK_COMMUNITY_SERVICE_MEMORY" .Values.FDK_COMMUNITY_SERVICE_MEMORY | quote }}
volumeMounts:
- mountPath: /usr/src/app/files
name: fdk-community-service-claim0
- name: fdk-community-service-claim0
mountPath: /usr/src/app/files
- name: smtp-certs
mountPath: /usr/src/app/certs
securityContext:
fsGroup: 1000
volumes:
- name: fdk-community-service-claim0
persistentVolumeClaim:
claimName: fdk-community-service-claim0
- name: smtp-certs
secret:
secretName: smtp-certs
restartPolicy: Always
status: {}
Loading

0 comments on commit 0059eb0

Please sign in to comment.