Skip to content

Commit

Permalink
update values in exn (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarchel7bulls authored Jul 23, 2024
1 parent 5eb95aa commit 10358b8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/nebulous-exn-middleware/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.5
version: 0.1.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
13 changes: 1 addition & 12 deletions charts/nebulous-exn-middleware/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,7 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 12 }}
env:
- name: 'SAL_HOST'
value: {{ .Values.SAL_HOST | default "nebulous-sal" | quote }}
- name: 'SAL_PORT'
value: {{ .Values.SAL_PORT | default "8080" | quote }}
- name: 'ACTIVEMQ_HOST'
value: {{ .Values.ACTIVEMQ_HOST | default "nebulous-activemq" | quote }}
- name: 'ACTIVEMQ_PORT'
value: {{ .Values.ACTIVEMQ_PORT | default "5672" | quote }}
- name: 'SAL_USER'
value: {{ .Values.env.SAL_USER | default "nebulous" | quote }}
- name: 'SAL_PASSWORD'
value: {{ .Values.env.SAL_PASSWORD | default "nebulous" | quote }}
{{- toYaml .Values.env | nindent 12 }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
14 changes: 12 additions & 2 deletions charts/nebulous-exn-middleware/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,15 @@ tolerations: []
affinity: {}

env:
SAL_USER: nebulous
SAL_PASSWORD: nebulous
- name: SAL_USER
value: "nebulous"
- name: SAL_PASSWORD
value: "nebulous"
- name: SAL_HOST
value: "nebulous-sal"
- name: SAL_PORT
value: "8080"
- name: ACTIVEMQ_HOST
value: "nebulous-activemq"
- name: ACTIVEMQ_PORT
value: "5672"

0 comments on commit 10358b8

Please sign in to comment.