Skip to content

Commit

Permalink
move pvc definiton to a separate yaml file (#2527)
Browse files Browse the repository at this point in the history
Co-authored-by: Shourouni <317198@NTTDATA.COM>
  • Loading branch information
rshourou and Shourouni committed Jun 13, 2024
1 parent 0caa1de commit 41dcc9b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,4 @@ jobs:
-p WEB_PORT=8080 \
-p HPR_URL=healthpractitionerregistration.apps.silver.devops.gov.bc.ca \
-p MAUTH_URL=prod-mauth-${{secrets.OPENSHIFT_LICENSE_PLATE}}-prod.apps.silver.devops.gov.bc.ca \
-p DOCMAN_VOLUME_CAPACITY=7Gi \
-n ${{secrets.OPENSHIFT_LICENSE_PLATE}}-${{secrets.OPENSHIFT_ENVIRONMENT}} | oc apply -n ${{secrets.OPENSHIFT_LICENSE_PLATE}}-${{secrets.OPENSHIFT_ENVIRONMENT}} -f -
14 changes: 14 additions & 0 deletions documentation/compositions/yaml/document-manager-pvc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Document Manager (backend) Persistent Volume Claim
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ${SVC_NAME}-document-manager-pvc
namespace: ${OC_LICENSE_PLATE}-${OC_ENV}
labels:
app.kubernetes.io/part-of: ${SVC_NAME}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 8Gi
35 changes: 16 additions & 19 deletions infrastructure/prime-app-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ parameters:
description: Development or Production
required: true
value: Development
- name: DOCMAN_VOLUME_CAPACITY
displayName: Document Manager Persistent Volume Capacity
description: Volume space available for Document Manager Backend data e.g. 512Mi, 2Gi.
required: true
value: 5Gi
- name: WEB_PORT
displayName: Web Port for NGINX
description: Termination port on NGINX (8080 or 8443)
Expand Down Expand Up @@ -1037,20 +1032,6 @@ objects:
targetPort: 6001
selector:
name: ${SVC_NAME}-document-manager
# Document Manager (backend) Persistent Volume Claim
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ${SVC_NAME}-document-manager-pvc
namespace: ${OC_LICENSE_PLATE}-${OC_ENV}
labels:
app.kubernetes.io/part-of: ${SVC_NAME}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: ${DOCMAN_VOLUME_CAPACITY}

###########################################
### Redis ###
Expand Down Expand Up @@ -1159,3 +1140,19 @@ objects:
targetPort: 6379
selector:
name: ${SVC_NAME}-redis


# Document Manager (backend) Persistent Volume Claim
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ${SVC_NAME}-document-manager-pvc
namespace: ${OC_LICENSE_PLATE}-${OC_ENV}
labels:
app.kubernetes.io/part-of: ${SVC_NAME}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: ${DOCMAN_VOLUME_CAPACITY}

0 comments on commit 41dcc9b

Please sign in to comment.