Skip to content

Commit 06ced23

Browse files
committed
fix: disable persistence for dev/test to avoid PVC attachment issues
1 parent 4b31aaf commit 06ced23

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

helm/eagle-api/values-dev.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ replicaCount: 1
55
image:
66
tag: dev
77

8-
# Use Recreate strategy for single replica with ReadWriteOnce PVC
9-
# (Rolling update doesn't work with RWO volumes)
10-
updateStrategy:
11-
type: Recreate
12-
138
route:
149
host: eagle-dev.apps.silver.devops.gov.bc.ca
1510

@@ -52,8 +47,9 @@ secrets:
5247
clientIdKey: CLIENTID
5348
clientSecretKey: CLIENT_SECRET
5449

50+
# Disable persistence to avoid PVC attachment issues
5551
persistence:
56-
size: 5Gi
52+
enabled: false
5753

5854
autoscaling:
5955
enabled: false

helm/eagle-api/values-test.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ replicaCount: 1
55
image:
66
tag: test
77

8-
# Use Recreate strategy for single replica with ReadWriteOnce PVC
9-
# (Rolling update doesn't work with RWO volumes)
10-
updateStrategy:
11-
type: Recreate
12-
138
route:
149
host: eagle-test.apps.silver.devops.gov.bc.ca
1510

@@ -52,8 +47,9 @@ secrets:
5247
clientIdKey: CLIENTID
5348
clientSecretKey: CLIENT_SECRET
5449

50+
# Disable persistence to avoid PVC attachment issues
5551
persistence:
56-
size: 10Gi
52+
enabled: false
5753

5854
autoscaling:
5955
enabled: false

0 commit comments

Comments
 (0)