Skip to content
Open
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
2 changes: 1 addition & 1 deletion charts/automation/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: automation
description: OpenHands Automations Service — scheduled and event-driven automation execution
type: application
version: 0.1.4
version: 0.1.5
appVersion: "0.1.0"
dependencies:
- name: postgresql
Expand Down
8 changes: 8 additions & 0 deletions charts/automation/templates/_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@
name: {{ .Values.automationWebhookSecretFromSecret.name }}
key: {{ .Values.automationWebhookSecretFromSecret.key }}
{{- end }}
# KV store secret for JWT signing and value encryption
{{- if .Values.kvSecretFromSecret }}
- name: AUTOMATION_KV_SECRET
valueFrom:
secretKeyRef:
name: {{ .Values.kvSecretFromSecret.name }}
key: {{ .Values.kvSecretFromSecret.key }}
{{- end }}
# Datadog configuration
- name: DD_AGENT_HOST
value: "datadog-agent.all-hands-system.svc.cluster.local"
Expand Down
7 changes: 7 additions & 0 deletions charts/automation/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,13 @@ automationWebhookSecretFromSecret:
name: automation-webhook-secret
key: webhook-secret

# KV store secret from K8s secret
# Used for signing KV store JWT tokens and encrypting stored values
# Reuses the existing jwt-secret by default (shared with main openhands app)
kvSecretFromSecret:
name: jwt-secret
key: jwt-secret

# Datadog configuration
datadog:
env: "dev"
Expand Down
4 changes: 2 additions & 2 deletions charts/openhands/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
description: OpenHands is an AI-driven autonomous software engineer
name: openhands
appVersion: cloud-1.22.1
version: 0.4.12
version: 0.4.13
maintainers:
- name: rbren
- name: xingyao
Expand Down Expand Up @@ -42,5 +42,5 @@ dependencies:
condition: runtime-api.enabled
- name: automation
repository: oci://ghcr.io/all-hands-ai/helm-charts
version: 0.1.4
version: 0.1.5
condition: automation.enabled
5 changes: 5 additions & 0 deletions charts/openhands/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,11 @@ automation:
serviceKeyFromSecret:
name: automation-service-key
key: automation-service-key

# KV store secret from K8s secret (reuses jwt-secret)
kvSecretFromSecret:
name: jwt-secret
key: jwt-secret

# Datadog configuration
datadog:
Expand Down
Loading