Skip to content

Commit

Permalink
[PD] Fix sep24-reference-ui-config is missing error (#1632)
Browse files Browse the repository at this point in the history
### Description

The env var has moved to value file, this sep24-reference-ui-config is
no longer needed

### Context

- Some changes were override in last PR

### Testing

- new ui container started successfully on local
  • Loading branch information
JiahuiWho authored Feb 19, 2025
1 parent 5996713 commit d49fa42
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions helm-charts/sep24-reference-ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,11 @@ spec:
protocol: TCP
env:
- name: BUSINESS_SERVER_ENDPOINT
valueFrom:
configMapKeyRef:
name: sep24-reference-ui-config
key: BUSINESS_SERVER_ENDPOINT
value: {{ .Values.config.businessServerEndpoint }}
resources:
requests:
memory: {{ .Values.services.ui.deployment.resources.requests.memory }}
cpu: {{ .Values.services.ui.deployment.resources.requests.cpu }}
limits:
memory: {{ .Values.services.ui.deployment.resources.limits.memory }}
cpu: {{ .Values.services.ui.deployment.resources.limits.cpu }}
volumeMounts:
- name: config-volume
mountPath: /config
readOnly: true
volumes:
- name: config-volume
configMap:
name: sep24-reference-ui-config
cpu: {{ .Values.services.ui.deployment.resources.limits.cpu }}

0 comments on commit d49fa42

Please sign in to comment.