Skip to content

Commit

Permalink
Added volumeMount for frontend configMap.
Browse files Browse the repository at this point in the history
  • Loading branch information
weskubo-cgi authored and weskubo-cgi committed Sep 21, 2023
1 parent a068c7f commit dd130e7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tools/openshift/frontend.dc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ objects:
containers:
- image: image-registry.openshift-image-registry.svc:5000/${NAMESPACE}/${REPO_NAME}-frontend-${BRANCH}:${TAG}
imagePullPolicy: Always
# volumeMounts:
# - name: tls-certs
# mountPath: '/etc/tls-certs'
# readOnly: true
# - name: config-env
# mountPath: '/srv/js/config'
volumeMounts:
# - name: tls-certs
# mountPath: '/etc/tls-certs'
# readOnly: true
- name: config-env
mountPath: '/srv/js/config'
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down Expand Up @@ -71,13 +71,13 @@ objects:
limits:
cpu: '${MAX_CPU}'
memory: '${MAX_MEM}'
# volumes:
# - name: tls-certs
# secret:
# secretName: ofm-frontend-cert
# - name: config-env
# configMap:
# name: ofm-frontend-config-map
volumes:
# - name: tls-certs
# secret:
# secretName: ofm-frontend-cert
- name: config-env
configMap:
name: ofm-frontend-config-map
test: false
triggers:
- type: ConfigChange
Expand Down

0 comments on commit dd130e7

Please sign in to comment.