@@ -8,8 +8,8 @@ spotinst:
88 # -- Spot Token. (Required)
99 # Ref: https://docs.spot.io/administration/api/create-api-token
1010 token : " "
11- # -- Spot Account. (Required)
12- # Ref: https://docs.spot.io/administration/organizations?id=account
11+ # -- Spot Account ID . (Required)
12+ # Example: `act-123abcd`
1313 account : " "
1414 # -- Unique identifier used by the Ocean Controller to connect (Required)
1515 # between the Ocean backend and the Kubernetes cluster.
3535 # Overrides the image tag whose default is the chart appVersion.
3636 tag : " "
3737
38+ initContainers : []
39+
3840imagePullSecrets : []
3941
4042serviceAccount :
@@ -79,9 +81,9 @@ commonLabels: {}
7981# Ref: https://kubernetes.io/docs/concepts/security/pod-security-standards/
8082podSecurityContext :
8183 runAsNonRoot : true
82- runAsUser : 10001
83- runAsGroup : 10001
84- fsGroup : 10001
84+ runAsUser : 1000690000
85+ runAsGroup : 1000690000
86+ fsGroup : 1000690000
8587
8688# -- Priority class name for the controller pod.
8789priorityClassName : system-node-critical
@@ -100,6 +102,8 @@ securityContext:
100102 drop :
101103 - ALL
102104
105+ command : []
106+
103107args : []
104108# - --test
105109
@@ -203,7 +207,7 @@ logShipping:
203207 # -- Specifies the log shipping container image. (Optional)
204208 image :
205209 repository : ghcr.io/fluent/fluent-bit
206- tag : " 3.0.7 "
210+ tag : " 3.1.9 "
207211 pullPolicy : IfNotPresent
208212
209213 # -- Log shipping destination configuration.
@@ -212,6 +216,16 @@ logShipping:
212216 port : 443
213217 tls : true
214218
219+ extraVolumeMounts : []
220+
221+ extraEnv : []
222+
223+ command :
224+ - /fluent-bit/bin/fluent-bit
225+ - -c
226+ - /tmp/fluent-bit.conf
227+ - -q
228+
215229# Auto Update process configuration.
216230autoUpdate :
217231 # -- Configures the image for the auto-updater job. (Optional)
@@ -230,9 +244,9 @@ autoUpdate:
230244 # Ref: https://kubernetes.io/docs/concepts/security/pod-security-standards/
231245 podSecurityContext :
232246 runAsNonRoot : true
233- runAsUser : 10001
234- runAsGroup : 10001
235- fsGroup : 10001
247+ runAsUser : 1000690000
248+ runAsGroup : 1000690000
249+ fsGroup : 1000690000
236250
237251 # -- Security Context for the auto-updater container. (Optional)
238252 securityContext :
0 commit comments