-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
86 lines (73 loc) · 2.1 KB
/
values.yaml
File metadata and controls
86 lines (73 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
replicaCount: 1
image:
repository: ghcr.io/fluid-pub/controlplane-ee
tag: "0.2.2"
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: "fluid-controlplane"
fullnameOverride: ""
service:
type: ClusterIP
port: 4000
gatewayApi:
enabled: true
# Existing Gateway resource that should expose the controlplane HTTPRoute.
gateway:
name: fluid-gateway
namespace: ""
sectionName: http
hostnames:
- controlplane.example.com
matches:
- path:
type: PathPrefix
value: /
# Execution agent WebSocket: consistent hash on Authorization (Bearer connection token).
# Enabled automatically when replicaCount > 1; set enabled: false to opt out.
agentAffinity:
routePath: /v1/agents/websocket
consistentHashHeader: authorization
# Browser / LiveView: Envoy sets this cookie on first response for consistent hashing to one pod (HTML + /live websocket).
# Not the Phoenix session cookie; name is infra-only (see README). Enabled when replicaCount > 1 unless disabled explicitly.
liveViewAffinity:
cookieName: fluid_controlplane_liveview
cookieTtl: 86400s
cookieSameSite: Lax
# Site-wide Path so Envoy does not emit one affinity cookie per request path (HTML vs /live).
cookiePath: /
# Chart does not manage Secret objects.
# Reference pre-existing secrets from the release namespace (envFrom).
# They must provide DATABASE_URL, SECRET_KEY_BASE, COOKIE_SIGNING_SALT,
# CONTROLPLANE_VAULT_SECRET, ENROLLMENT_TOKEN_FINGERPRINT_SECRET, PHX_HOST, PORT.
envFromSecrets: []
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
livenessProbe:
httpGet:
path: /health/live
port: http
initialDelaySeconds: 15
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3
readinessProbe:
httpGet:
path: /health/ready
port: http
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
extraEnv: []
jobs:
setup:
ttlSecondsAfterFinished: 600
backoffLimit: 2
activeDeadlineSeconds: 1800
migrate:
ttlSecondsAfterFinished: 600
backoffLimit: 2
activeDeadlineSeconds: 900