Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions kubernetes/manifests/fineract-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ spec:
spec:
containers:
- env:
- name: JAVA_TOOL_OPTIONS
value: "-Xms384m -Xmx512m -XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError"
- name: FINERACT_DEFAULT_TENANTDB_DESCRIPTION
value: "Default Demo Tenant"
- name: FINERACT_DEFAULT_TENANTDB_HOSTNAME
Expand Down Expand Up @@ -97,14 +99,15 @@ spec:
- name: FINERACT_LIQUIBASE_ENABLED
value: "false"
#image: openmf/fineract:develop
image: openmf/fineract:1.11
#image: openmf/fineract:1.11
image: openmf/fineract:1.11.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
path: /fineract-provider/actuator/health/liveness
port: 8080
initialDelaySeconds: 180
periodSeconds: 1
periodSeconds: 10
failureThreshold: 5
timeoutSeconds: 2
readinessProbe:
Expand All @@ -116,11 +119,18 @@ spec:
ports:
- containerPort: 8080
protocol: TCP
# resources:
# requests:
# memory: "256Mi"
# cpu: "200m"
# limits:
# memory: "1600Mi"
# cpu: "500m"
volumeMounts:
- mountPath: /data
name: fineract-server-claim0
restartPolicy: Always
volumes:
- name: fineract-server-claim0
persistentVolumeClaim:
claimName: fineract-server-claim0
claimName: fineract-server-claim0
3 changes: 2 additions & 1 deletion kubernetes/manifests/web-app-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ spec:
value: "true"
- name: MIFOS_SUPPORTED_LANGUAGES
value: cs-CS,de-DE,en-US,es-MX,fr-FR,it-IT,ko-KO,li-LI,lv-LV,ne-NE,pt-PT,sw-SW
image: openmf/web-app:master
#image: openmf/web-app:master
image: openmf/web-app:dev-dc1f82e
imagePullPolicy: IfNotPresent
name: web-app
ports:
Expand Down