You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/nextjs/values.yaml
+29-17Lines changed: 29 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ fullnameOverride: ''
3
3
4
4
web:
5
5
imagePullPolicy: IfNotPresent
6
-
imagePullSecrets: ''# must be present in namespace
6
+
imagePullSecrets: ''# must be present in namespace
7
7
image: ''
8
8
terminationGracePeriodSeconds: 0
9
9
replicaCount: 1
@@ -62,26 +62,26 @@ web:
62
62
# not sure about the usefulness of this - we are trying to solve some caching issues with next.js
63
63
# so this should be considered experimental.
64
64
cachePersistentVolume:
65
-
enabled: false # If set to true, a PersistentVolumeClaim (PVC) will be created for caching
66
-
storageClass: ''# The storage class to use for the PVC. If not set, the default StorageClass will be used
67
-
existingClaim: ''# If set, this existing PVC will be used instead of creating a new one
65
+
enabled: false # If set to true, a PersistentVolumeClaim (PVC) will be created for caching
66
+
storageClass: ''# The storage class to use for the PVC. If not set, the default StorageClass will be used
67
+
existingClaim: ''# If set, this existing PVC will be used instead of creating a new one
68
68
accessModes:
69
-
- ReadWriteOnce # The access modes for the PVC. Can be ReadWriteOnce, ReadOnlyMany, or ReadWriteMany. If cachePersistentVolume is enabled and replicaCount is more than 1, this should be set to ReadWriteMany
70
-
annotations: {} # Annotations to add to the PVC
71
-
size: 1Gi # The requested storage size for the PVC
72
-
volumeMode: ''# The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
73
-
mountPath: /app/.next/cache # The path to mount the volume in the container
69
+
- ReadWriteOnce # The access modes for the PVC. Can be ReadWriteOnce, ReadOnlyMany, or ReadWriteMany. If cachePersistentVolume is enabled and replicaCount is more than 1, this should be set to ReadWriteMany
70
+
annotations: {} # Annotations to add to the PVC
71
+
size: 1Gi # The requested storage size for the PVC
72
+
volumeMode: ''# The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
73
+
mountPath: /app/.next/cache # The path to mount the volume in the container
74
74
75
75
dataVolume:
76
-
enabled: false # If set to true, a PersistentVolumeClaim (PVC) will be created
77
-
storageClass: ''# The storage class to use for the PVC. If not set, the default StorageClass will be used
78
-
existingClaim: ''# If set, this existing PVC will be used instead of creating a new one
76
+
enabled: false # If set to true, a PersistentVolumeClaim (PVC) will be created
77
+
storageClass: ''# The storage class to use for the PVC. If not set, the default StorageClass will be used
78
+
existingClaim: ''# If set, this existing PVC will be used instead of creating a new one
79
79
accessModes:
80
-
- ReadWriteOnce # The access modes for the PVC. Can be ReadWriteOnce, ReadOnlyMany, or ReadWriteMany. If dataVolume is enabled and replicaCount is more than 1, this should be set to ReadWriteMany
81
-
annotations: {} # Annotations to add to the PVC
82
-
size: 1Gi # The requested storage size for the PVC
83
-
volumeMode: ''# The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
84
-
mountPath: /app/data # The path to mount the volume in the container
80
+
- ReadWriteOnce # The access modes for the PVC. Can be ReadWriteOnce, ReadOnlyMany, or ReadWriteMany. If dataVolume is enabled and replicaCount is more than 1, this should be set to ReadWriteMany
81
+
annotations: {} # Annotations to add to the PVC
82
+
size: 1Gi # The requested storage size for the PVC
83
+
volumeMode: ''# The volume mode for the PVC. Can be either "Filesystem" (default) or "Block"
84
+
mountPath: /app/data # The path to mount the volume in the container
85
85
86
86
hpa:
87
87
enabled: false
@@ -140,6 +140,18 @@ web:
140
140
tolerations: []
141
141
affinity: {}
142
142
143
+
# env -- Non-secret env vars stored in the chart-managed ConfigMap.
144
+
# Merged on top of the default envs (AWS_SDK_CONFIG_OPT_OUT, NEXT_TELEMETRY_DISABLED).
145
+
# web.env:
146
+
# NEXT_PUBLIC_API_BASE: https://api.example.com
147
+
env: {}
148
+
149
+
# secretEnv -- Secret env vars stored in the chart-managed Secret.
150
+
# Keys are normalized to uppercase and '-' is replaced with '_' (same behavior as extraEnvs).
0 commit comments