38 files changed +1963
-610
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ jobs:
177
177
- name : Install Node
178
178
uses : actions/setup-node@v3
179
179
with :
180
- node-version : 14
180
+ node-version : 16
181
181
182
182
- name : Install newman
183
183
run : npm install -g newman
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ services:
245
245
# ports:
246
246
# - "${LISTEN_IP:-127.0.0.1}:8443:443" # https
247
247
healthcheck :
248
- test : echo -n "GET / HTTP/1.1\n\n" > /dev/tcp/api.mypremiumdealership.com /443
248
+ test : echo -n "GET / HTTP/1.1\n\n" > /dev/tcp/127.0.0.1 /443
249
249
interval : 15s
250
250
timeout : 15s
251
251
retries : 15
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.1
18
+ version : 0.1.4
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 27
27
SMTP_PASS : {{ .Values.identity.config.smtpPass }}
28
28
SMTP_FROM : {{ .Values.identity.config.smtpFrom }}
29
29
SMTP_AUTH : {{ .Values.identity.config.smtpAuth | quote }}
30
- JWT_EXPIRATION : {{ .Values.identity.config. jwtExpiration | quote }}
30
+ JWT_EXPIRATION : {{ .Values.jwtExpiration | quote }}
31
31
SMTP_STARTTLS : {{ .Values.identity.config.smtpStartTLS | quote }}
32
32
SERVER_PORT : {{ .Values.identity.port | quote }}
33
33
API_GATEWAY_URL : {{ if .Values.apiGatewayServiceInstall }}"https://{{ .Values.apiGatewayService.service.name }}"{{ else }}{{ .Values.apiGatewayServiceUrl }}{{ end }}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ apiGatewayServiceUrl: https://api.mypremiumdealership.com
10
10
apiGatewayServiceInstall : true
11
11
apiGatewayPassword :
12
12
tlsEnabled : false
13
+ jwtExpiration : 604800000
13
14
14
15
waitForK8sResources :
15
16
image : groundnuty/k8s-wait-for:v1.3
@@ -73,7 +74,6 @@ identity:
73
74
smtpFrom : " no-reply@example.com"
74
75
smtpAuth : true
75
76
smtpStartTLS : true
76
- jwtExpiration : 604800000
77
77
keyStoreType : PKCS12
78
78
keyStore : classpath:certs/server.p12
79
79
keyStorePassword : passw0rd
0 commit comments