Change default SAL_HOST to nebulous-sal
Change-Id: Idb18d729e39482e9d7749b07781eb2edfce0243e
This commit is contained in:
parent
ef7de76229
commit
d8a82421f9
@ -39,6 +39,15 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- 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 }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
FROM docker.io/library/openjdk:11 AS builder
|
FROM docker.io/library/openjdk:11 AS builder
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install --no-install-recommends -y maven=3.6.3-5
|
apt-get install --no-install-recommends -y \
|
||||||
|
maven=3.6.3-5
|
||||||
|
|
||||||
#Set the working directory
|
#Set the working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
@ -12,14 +12,14 @@ spring:
|
|||||||
application:
|
application:
|
||||||
exn:
|
exn:
|
||||||
config:
|
config:
|
||||||
url: 'nebulous-activemq'
|
url: '${ACTIVEMQ_HOST:nebulous-activemq}'
|
||||||
port: '5672'
|
port: '${ACTIVEMQ_PORT:5672}'
|
||||||
username: 'admin'
|
username: 'admin'
|
||||||
password: 'admin'
|
password: 'admin'
|
||||||
sal:
|
sal:
|
||||||
protocol: 'http'
|
protocol: 'http'
|
||||||
host: 'sal'
|
host: '${SAL_HOST:nebulous-sal}'
|
||||||
port: '8080'
|
port: '${SAL_PORT:8080}'
|
||||||
api: 'sal'
|
api: 'sal'
|
||||||
username: 'admin'
|
username: 'admin'
|
||||||
password: 'admin'
|
password: 'admin'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user