-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathvalues.yaml
More file actions
3859 lines (3804 loc) · 111 KB
/
Copy pathvalues.yaml
File metadata and controls
3859 lines (3804 loc) · 111 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Default values for the langsmith helm chart. Refer to documentation on individual values for help with configuration.
# -- Provide a name in place of `langsmith`
nameOverride: ""
# -- String to fully override `"langsmith.fullname"`
fullnameOverride: ""
# -- Namespace to install the chart into. If not set, will use the namespace of the current context.
namespace: ""
# -- Prerequisite manifests rendered as Helm pre-install / pre-upgrade hooks so they
# -- are applied before the rest of the chart's resources. Typical use case is an
# -- ExternalSecret that produces a Secret consumed via `config.existingSecretName`.
# -- See `templates/pre-install-manifests.yaml` for entry forms, injected
# -- annotations, ExternalSecret-only validation, idempotency rules, and caveats.
# Example:
# preInstallManifests:
# - apiVersion: external-secrets.io/v1beta1
# kind: ExternalSecret
# metadata:
# name: langsmith-app
# spec:
# refreshInterval: 1h
# secretStoreRef:
# name: vault-backend
# kind: ClusterSecretStore
# target:
# name: langsmith-app-secret
# creationPolicy: Orphan
# data:
# - secretKey: langsmith_license_key
# remoteRef:
# key: secret/langsmith/app
# property: langsmith_license_key
preInstallManifests: []
# -- Annotations that will be applied to all resources created by the chart
commonAnnotations: {}
# -- Annotations that will be applied to all pods created by the chart
commonPodAnnotations: {}
# -- Labels that will be applied to all resources created by the chart
commonLabels: {}
# -- Common environment variables that will be applied to all deployments/statefulsets except for the playground/aceBackend services (which are sandboxed). Be careful not to override values already specified by the chart.
commonEnv: []
# -- Common volumes added to all deployments/statefulsets except for the playground/aceBackend services (which are sandboxed).
commonVolumes: []
# -- Common volume mounts added to all deployments/statefulsets except for the playground/aceBackend services (which are sandboxed).
commonVolumeMounts: []
# -- Common init containers added to all deployments/statefulsets except for the playground/aceBackend services (which are sandboxed).
commonInitContainers: []
# -- Common pod security context applied to all pods. Component-specific podSecurityContext values will be merged on top of this (component values take precedence).
commonPodSecurityContext: {}
# -- Common DNS configuration applied to all pods. Reduces DNS query amplification in Kubernetes by
# -- ensuring service FQDNs (which have 4 dots) are resolved directly without search domain expansion.
# -- Set to null to disable and use Kubernetes defaults (ndots: 5).
commonDnsConfig:
options:
- name: ndots
value: "4"
# -- Kubernetes cluster domain. Only change if not using 'cluster.local'
clusterDomain: "cluster.local"
images:
# -- If supplied, all children <image_name>.repository values will be prepended with this registry name + `/`
registry: ""
# -- Secrets with credentials to pull images from a private registry. Specified as name: value.
imagePullSecrets: []
aceBackendImage:
repository: "docker.io/langchain/langsmith-ace-backend"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
backendImage:
repository: "docker.io/langchain/langsmith-backend"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
# Serves both the `insights` and `engine` graphs; insights.enabled and
# engine.enabled pick which of them run.
engineInsightsAgentImage:
repository: "docker.io/langchain/langsmith-insights-engine"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
frontendImage:
repository: "docker.io/langchain/langsmith-frontend"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
operatorImage:
repository: "docker.io/langchain/langgraph-operator"
pullPolicy: IfNotPresent
tag: "0.1.47"
# For production environments, we strongly recommend connecting to a managed PostgreSQL instance instead of using the one provided by the chart.
# Docs: https://docs.langchain.com/langsmith/self-host-external-postgres
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
tag: "14.7"
# For production environments, we strongly recommend connecting to a managed Redis instance instead of using the one provided by the chart.
# Docs: https://docs.langchain.com/langsmith/self-host-external-redis
redisImage:
repository: "docker.io/redis"
pullPolicy: IfNotPresent
tag: "7"
clickhouseImage:
repository: "docker.io/clickhouse/clickhouse-server"
pullPolicy: Always
tag: "25.12"
agentBuilderImage:
repository: "docker.io/langchain/agent-builder-deep-agent"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
pollyAgentImage:
repository: "docker.io/langchain/langsmith-polly"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
smithdbImage:
repository: "docker.io/langchain/smithdb"
pullPolicy: IfNotPresent
tag: "0.17.15rc1"
# Optional: only mirror/pull when presidioAnalyzer.enabled is true
presidioAnalyzerImage:
repository: "mcr.microsoft.com/presidio-analyzer"
pullPolicy: IfNotPresent
tag: "2.2.354"
# -- sandbox-host image. Only used when sandboxes.enabled is true.
sandboxHostImage:
repository: "docker.io/langchain/sandbox-host"
pullPolicy: IfNotPresent
tag: ""
ingress:
enabled: false
ingressClassName: ""
annotations: {}
labels: {}
tls: []
# Whether to use the Gateway API for ingress. Will create an HTTPRoute for LangSmith and an HTTPRoute for each LangSmith Deployment.
gateway:
enabled: false
name: ""
namespace: ""
sectionName: ""
annotations: {}
labels: {}
# Whether to use Istio Gateway for ingress. Will create a VirtualService for LangSmith and a VirtualService for each LangSmith Deployment.
istioGateway:
enabled: false
name: "istio-gateway"
namespace: "istio-system"
annotations: {}
labels: {}
# -- LangSmith Sandboxes. Same-cluster sandbox-host architecture on AWS/EKS or GCP/GKE. sandbox-host mounts JuiceFS directly, and a singleton Job formats fresh JuiceFS metadata before hosts start serving.
sandboxes:
enabled: false
# -- Private JWK signing sandbox callbacks, or key `sandbox_callback_signing_jwk` in config.existingSecretName. Needs config.hostname for the issuer, or signing fails closed.
callbackSigningJwk: ""
# -- Base URL for reaching HTTP services inside sandboxes. Needs wildcard DNS and TLS for `*.<host>`; with ingress.enabled the chart adds the wildcard rule. http(s) origin only, no path.
serviceUrlBaseUrl: ""
quotas:
maxCpuCores: 16
maxMemoryGb: 64
minEphemeralStorageGb: 1
maxEphemeralStorageGib: 100
maxSandboxes: 1000
proxyCa:
# -- generatedSecret creates a self-signed CA Secret with Helm and reuses it on live upgrades via lookup. In pure render/GitOps workflows where lookup cannot read the cluster, generatedSecret produces different cert material on each render; use existingSecret for deterministic manifests.
mode: "generatedSecret"
secretName: "smithbox-proxy-ca"
# -- Existing TLS Secret containing tls.crt and tls.key for the sandbox proxy CA. This Secret can be created manually, by cert-manager, or by another external process.
existingSecretName: ""
juicefs:
# -- JuiceFS volume name. Use a flat DNS-label-style name only; slashes and object-store subpaths are not supported here. JuiceFS stores objects under `<name>/` inside the configured bucket.
name: "sandbox-juicefs"
# -- Object storage backend used by JuiceFS for sandboxes. Currently supported values are `s3` for AWS/EKS and `gs` for GCP/GKE. Azure-backed sandbox storage is not supported yet.
storage: "s3"
# -- Object storage bucket/root URL used by JuiceFS. For AWS S3, use a region-explicit endpoint such as `https://bucket-name.s3.us-west-2.amazonaws.com`; do not use the `s3://bucket-name` shorthand because JuiceFS then infers region with GetBucketLocation. For GCS, use `gs://bucket-name`. Use `sandboxes.juicefs.name` for JuiceFS volume isolation instead of deployment-specific bucket paths.
bucket: ""
redis:
# -- JuiceFS Redis metadata URL. Redis metadata engines must use maxmemory-policy noeviction. For Redis Cluster, the `/DB` path is used by JuiceFS as a hash-tag key prefix rather than a Redis logical database.
metaURL: ""
# -- Existing Secret containing JuiceFS config keys `name`, `metaurl`, `storage`, and `bucket`. The formatter Job reads all four keys; sandbox-host receives only `metaurl`. When set, the chart does not create the config Secret and the corresponding values above are ignored. Rotate the Secret name to rerun formatting; roll sandbox-host after changing data in place.
existingSecretName: ""
hostMount:
# -- Node host paths used for the JuiceFS cache. Each path is mounted into sandbox-host and combined into one JuiceFS cache-dir option. Back these paths with node-local storage; their contents survive pod rollouts on the same node but not node replacement.
cacheDirs:
- /var/cache/juicefs
# -- Additional JuiceFS CLI options passed to sandbox-host. The chart derives cache-dir from cacheDirs; do not set it here. The default cache-size is a conservative 50 GiB shared across the configured directories.
mountOptions:
- --cache-size=51200
- --cache-large-write
juicefsFormatJob:
# -- Additional labels applied to the JuiceFS formatter pod.
labels: {}
# -- Additional annotations applied to the JuiceFS formatter Job and pod.
annotations: {}
# -- Pod security context for the JuiceFS formatter pod.
podSecurityContext: {}
# -- Container security context for the JuiceFS formatter container.
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
# -- Resource requests and limits for the JuiceFS formatter container.
resources:
requests:
cpu: 100m
memory: 128Mi
# -- Node selector for the JuiceFS formatter pod. Defaults to the sandbox-host node selector when empty.
nodeSelector: {}
# -- Tolerations for the JuiceFS formatter pod. Defaults to the sandbox-host tolerations when empty.
tolerations: []
# -- Affinity rules for the JuiceFS formatter pod.
affinity: {}
sandboxHost:
# -- Component name for sandbox-host. Resources are named `<release-fullname>-<name>`, which the chart passes to the host as SANDBOX_HOST_DEPLOYMENT_NAME.
name: "sandbox-host"
deployment:
labels: {}
annotations: {}
podAnnotations: {}
# -- Number of sandbox-host replicas, i.e. sandbox nodes backing the pool. One host per node, so do not exceed the node count. Ignored when autoscaling is enabled.
replicas: 1
terminationGracePeriodSeconds: 300
priorityClassName: ""
# -- Node selector for sandbox-host pods. Required: host pods must land on KVM-capable nodes, and a toleration alone does not attract them there.
nodeSelector: {}
# -- Tolerations for sandbox-host pods. The default expects sandbox-host nodes tainted `sandbox.langsmith.com/host=true:NoSchedule`; override this if your sandbox node pool uses different taints.
tolerations:
- key: sandbox.langsmith.com/host
operator: Equal
value: "true"
effect: NoSchedule
# -- Resource requests and limits for sandbox-host. Include the CPU and memory required by its JuiceFS mount process.
resources:
requests:
cpu: "2"
memory: 2Gi
# -- Container security context. Must stay privileged, with a writable root: the host needs netns, iptables and mount propagation, and unpacks the guest tools image.
securityContext:
privileged: true
podSecurityContext: {}
extraEnv: []
volumes: []
volumeMounts: []
initContainers: []
sidecars: []
# -- Readiness probe. The host binds its listener last, so accepting connections gates the rollout. No liveness probe: a restart mid-suspend destroys running microVMs.
readinessProbe:
tcpSocket:
port: http
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3
# -- Sandbox host pool autoscaling. There is no HPA or KEDA object: the elected sandbox-host resizes the Deployment itself. Unmanaged `sandbox-host.smith.langchain.com/autoscale-*` annotations override these live.
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
# -- Target share of pool CPU capacity committed to sandboxes before scaling up.
targetUtilizationPercent: 70
# -- Spare empty hosts kept above current demand so a sandbox create rarely waits for a cold node.
headroomHosts: 1
# -- Hold the replica target at its recent peak this long before shrinking, so load dips do not thrash the pool.
scaleDownStabilizationSeconds: 300
# -- Disruption budget for sandbox-host, capping concurrent evictions since each drain suspends every microVM on that host. maxUnavailable keeps a small pool drainable; setting minAvailable overrides it.
pdb:
enabled: false
maxUnavailable: 1
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
# -- Annotations applied to the sandbox-host ServiceAccount. Attach the AWS IRSA or GCP Workload Identity that grants access to the JuiceFS object-storage bucket here.
annotations: {}
automountServiceAccountToken: true
rbac:
create: true
labels: {}
annotations: {}
fleet:
enabled: false
namePrefix: "standalone-fleet"
enableTracing: true
encryptionKey: ""
oauth:
providerOrgId: ""
googleOAuthProvider: ""
slackOAuthProvider: ""
linkedinOAuthProvider: ""
linearOAuthProvider: ""
githubOAuthProvider: ""
microsoftOAuthProvider: ""
salesforceOAuthProvider: ""
slackSigningSecret: ""
slackBotId: ""
apiServer:
name: "api-server"
containerPort: 8000
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
initContainers: []
startupProbe:
httpGet:
path: /ok?check_db=1
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 3
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
service:
type: ClusterIP
httpPort: 80
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
queue:
enabled: true
name: "queue"
containerPort: 8000
numberOfJobsPerWorker: 10
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
startupProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
postgres:
name: "postgres"
containerPort: 5432
external:
enabled: false
iamProvider: ""
host: ""
port: "5432"
user: "postgres"
password: "postgres"
database: "postgres"
schema: "public"
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Fleet PostgreSQL instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
command: []
extraContainerConfig: {}
extraEnv: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
persistentVolumeClaimRetentionPolicy: {}
persistence:
enabled: true
size: 8Gi
storageClassName: ""
service:
type: ClusterIP
port: 5432
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
redis:
name: "redis"
containerPort: 6379
external:
enabled: false
iamProvider: ""
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Fleet Redis instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
command: []
extraContainerConfig: {}
extraEnv: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
persistentVolumeClaimRetentionPolicy: {}
persistence:
enabled: true
size: 8Gi
storageClassName: ""
service:
type: ClusterIP
port: 6379
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
engine:
# -- Enable the LangSmith Engine. See the Engine section of this README for what it requires.
enabled: false
# -- LangSmith Intelligence gateway for Engine model calls, authenticated with the
# license key. Required when engine.enabled. Use https://beacon.aws.langchain.com/intelligence.
intelligenceBaseUrl: ""
# -- Fernet key for the payloads smith-go passes to the Engine. Required when
# engine.enabled, and must match smith-go's ISSUES_AGENT_ENCRYPTION_KEY.
encryptionKey: ""
# Prior key, accepted for decryption only, so encryptionKey can be rotated.
encryptionKeyPrevious: ""
# -- Workspace that owns Engine sandboxes. Optional: smith-go resolves the install's
# workspace unless there is more than one non-personal org. Prefer one reserved for
# the Engine — its sandboxes are visible to anyone with access to it.
sandboxTenantId: ""
insights:
enabled: true
encryptionKey: ""
encryptionKeyPrevious: ""
# Shared Engine/Insights deployment. Rendered when either is enabled.
engineInsightsAgent:
namePrefix: "standalone-insights"
apiServer:
name: "api-server"
containerPort: 8000
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
initContainers: []
startupProbe:
exec: null
httpGet:
path: /ok?check_db=1
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
exec: null
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 3
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
exec: null
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
service:
type: ClusterIP
httpPort: 80
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
queue:
enabled: true
name: "queue"
containerPort: 8000
numberOfJobsPerWorker: 10
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
startupProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
postgres:
name: "postgres"
containerPort: 5432
external:
enabled: false
iamProvider: ""
host: ""
port: "5432"
user: "postgres"
password: "postgres"
database: "postgres"
schema: "public"
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Insights PostgreSQL instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
command: []
extraContainerConfig: {}
extraEnv: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
persistentVolumeClaimRetentionPolicy: {}
persistence:
enabled: true
size: 8Gi
storageClassName: ""
service:
type: ClusterIP
port: 5432
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
redis:
name: "redis"
containerPort: 6379
external:
enabled: false
iamProvider: ""
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Insights Redis instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
command: []
extraContainerConfig: {}
extraEnv: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
persistentVolumeClaimRetentionPolicy: {}
persistence:
enabled: true
size: 8Gi
storageClassName: ""
service:
type: ClusterIP
port: 6379
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
polly:
enabled: true
namePrefix: "standalone-polly"
enableTracing: true
encryptionKey: ""
apiServer:
name: "api-server"
containerPort: 8000
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
initContainers: []
startupProbe:
httpGet:
path: /ok?check_db=1
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 3
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: /ok?check_db=0
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
service:
type: ClusterIP
httpPort: 80
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
queue:
enabled: true
name: "queue"
containerPort: 8000
numberOfJobsPerWorker: 10
deployment:
replicaCount: 1
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
extraEnv: []
envFrom: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
startupProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
readinessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
livenessProbe:
httpGet:
path: "/ok"
port: 8000
failureThreshold: 6
periodSeconds: 10
timeoutSeconds: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
keda:
enabled: false
pollingInterval: 30
cooldownPeriod: 300
scaleDownStabilizationWindowSeconds: 300
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
postgres:
name: "postgres"
containerPort: 5432
external:
enabled: false
iamProvider: ""
host: ""
port: "5432"
user: "postgres"
password: "postgres"
database: "postgres"
schema: "public"
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Polly PostgreSQL instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}
command: []
extraContainerConfig: {}
extraEnv: []
sidecars: []
nodeSelector: {}
tolerations: []
affinity: {}
volumes: []
volumeMounts: []
persistentVolumeClaimRetentionPolicy: {}
persistence:
enabled: true
size: 8Gi
storageClassName: ""
service:
type: ClusterIP
port: 5432
labels: {}
annotations: {}
serviceAccount:
create: true
name: ""
labels: {}
annotations: {}
automountServiceAccountToken: true
pdb:
enabled: false
minAvailable: 1
redis:
name: "redis"
containerPort: 6379
external:
enabled: false
iamProvider: ""
connectionUrl: ""
existingSecretName: ""
statefulSet:
# -- Optional StatefulSet update strategy for the in-chart Polly Redis instance.
# Leave unset to keep the Kubernetes default RollingUpdate behavior.
updateStrategy: {}
labels: {}
annotations: {}
podSecurityContext: {}
securityContext: {}
lifecycle: {}
priorityClassName: ""
terminationGracePeriodSeconds: 30
resources: {}