Skip to content

Commit ba4230e

Browse files
authored
Merge pull request #6426 from bcgov/feat/6415
feat(6415): use custom Bitnami images for MongoDB
2 parents a741a92 + 27345e3 commit ba4230e

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
pnpm --dir sandbox/keycloak-provision install
2626
pnpm --dir sandbox/m365mock install
2727
pnpm --dir sandbox/nats-provision install
28-
install: canvas-install
28+
$(MAKE) canvas-install
2929

3030
.PHONY: canvas-install
3131
canvas-install:

helm/main/values-101ed4-dev.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ email:
3838
mongodb:
3939
enabled: true
4040

41+
image:
42+
tag: 8.0.13
43+
4144
backup:
4245
cronExpression: 0 1 * * *
4346
storageSize: 10Gi

helm/main/values-101ed4-prod.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ email:
4141
mongodb:
4242
enabled: true
4343

44+
image:
45+
tag: 8.0.13
46+
4447
backup:
4548
cronExpression: 0 1 * * *
4649
storageSize: 10Gi

helm/main/values-101ed4-test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ email:
3434
mongodb:
3535
enabled: true
3636

37+
image:
38+
tag: 8.0.13
39+
3740
backup:
3841
cronExpression: 0 1 * * *
3942
storageSize: 10Gi

helm/main/values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,15 @@ mongodb:
9595
nameOverride: pltsvc-mongodb
9696
fullnameOverride: pltsvc-mongodb
9797

98+
global:
99+
security:
100+
allowInsecureImages: true
101+
102+
image:
103+
registry: ghcr.io
104+
repository: bcgov/bitnami-mongodb
105+
tag: latest
106+
98107
architecture: replicaset
99108
useStatefulSet: true
100109
replicaCount: 3

0 commit comments

Comments
 (0)