Skip to content

Commit dad033f

Browse files
masayagclaude
andcommitted
Add JWT_SECRET environment variable to ingress deployment
Added JWT_SECRET configuration to the ingress service deployment template and values.yaml. This provides the JWT secret key needed for token generation and validation in the insights-ros-ingress service. Changes: - Added JWT_SECRET environment variable to deployment-ingress.yaml template - Added jwtSecret configuration field to values.yaml with default dev value - Ensures ingress service has proper JWT configuration for authentication 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7baef05 commit dad033f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

deployment/kubernetes/helm/ros-ocp/templates/deployment-ingress.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ spec:
118118
# Authentication configuration
119119
- name: AUTH_ENABLED
120120
value: {{ .Values.ingress.auth.enabled | quote }}
121+
- name: JWT_SECRET
122+
value: {{ .Values.ingress.auth.jwtSecret | quote }}
121123

122124
# Logging configuration
123125
- name: LOG_LEVEL

deployment/kubernetes/helm/ros-ocp/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ ingress:
143143
auth:
144144
enabled: true
145145
allowedOrgs: []
146+
jwtSecret: "dev-jwt-secret-key-for-ros-ingress"
146147
logging:
147148
level: "info"
148149
format: "json"

0 commit comments

Comments
 (0)