Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/langsmith/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1660,6 +1660,7 @@ For information on how to use this chart, up-to-date release notes, and other gu
| presidioAnalyzer.autoscaling.minReplicas | int | `1` | |
| presidioAnalyzer.autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| presidioAnalyzer.containerPort | int | `3000` | |
| presidioAnalyzer.workers | int | `2` | Number of Gunicorn workers for the Presidio analyzer. |
| presidioAnalyzer.deployment.affinity | object | `{}` | |
| presidioAnalyzer.deployment.annotations | object | `{}` | |
| presidioAnalyzer.deployment.extraContainerConfig | object | `{}` | |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{{- if .Values.presidioAnalyzer.enabled }}
{{- $envVars := concat .Values.commonEnv (include "langsmith.commonEnv" . | fromYamlArray) .Values.presidioAnalyzer.deployment.extraEnv -}}
{{- $presidioWorkerEnv := list (dict "name" "WORKERS" "value" (toString .Values.presidioAnalyzer.workers)) -}}
{{- $envVars := concat .Values.commonEnv (include "langsmith.commonEnv" . | fromYamlArray) $presidioWorkerEnv .Values.presidioAnalyzer.deployment.extraEnv -}}
{{- $volumes := concat .Values.commonVolumes .Values.presidioAnalyzer.deployment.volumes (include "langsmith.tlsVolumes" . | fromYamlArray) -}}
{{- $volumeMounts := concat .Values.commonVolumeMounts .Values.presidioAnalyzer.deployment.volumeMounts (include "langsmith.tlsVolumeMounts" . | fromYamlArray) -}}
apiVersion: apps/v1
Expand Down
2 changes: 2 additions & 0 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2961,6 +2961,8 @@ presidioAnalyzer:
enabled: false
name: "presidio-analyzer"
containerPort: 3000
# -- Number of Gunicorn workers for the Presidio analyzer.
workers: 2
deployment:
replicas: 1
labels: {}
Expand Down
Loading