Skip to content

Commit f124d0d

Browse files
committedJan 9, 2024
Merge branch 'develop'
2 parents 96c16d7 + 4c8655e commit f124d0d

38 files changed

+1963
-610
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
- name: Install Node
178178
uses: actions/setup-node@v3
179179
with:
180-
node-version: 14
180+
node-version: 16
181181

182182
- name: Install newman
183183
run: npm install -g newman

‎deploy/docker/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ services:
245245
#ports:
246246
# - "${LISTEN_IP:-127.0.0.1}:8443:443" # https
247247
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
249249
interval: 15s
250250
timeout: 15s
251251
retries: 15

‎deploy/helm/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.1
18+
version: 0.1.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

‎deploy/helm/templates/identity/config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data:
2727
SMTP_PASS: {{ .Values.identity.config.smtpPass }}
2828
SMTP_FROM: {{ .Values.identity.config.smtpFrom }}
2929
SMTP_AUTH: {{ .Values.identity.config.smtpAuth | quote }}
30-
JWT_EXPIRATION: {{ .Values.identity.config.jwtExpiration | quote }}
30+
JWT_EXPIRATION: {{ .Values.jwtExpiration | quote }}
3131
SMTP_STARTTLS: {{ .Values.identity.config.smtpStartTLS | quote }}
3232
SERVER_PORT: {{ .Values.identity.port | quote }}
3333
API_GATEWAY_URL: {{ if .Values.apiGatewayServiceInstall }}"https://{{ .Values.apiGatewayService.service.name }}"{{ else }}{{ .Values.apiGatewayServiceUrl }}{{ end }}

‎deploy/helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ apiGatewayServiceUrl: https://api.mypremiumdealership.com
1010
apiGatewayServiceInstall: true
1111
apiGatewayPassword:
1212
tlsEnabled: false
13+
jwtExpiration: 604800000
1314

1415
waitForK8sResources:
1516
image: groundnuty/k8s-wait-for:v1.3
@@ -73,7 +74,6 @@ identity:
7374
smtpFrom: "no-reply@example.com"
7475
smtpAuth: true
7576
smtpStartTLS: true
76-
jwtExpiration: 604800000
7777
keyStoreType: PKCS12
7878
keyStore: classpath:certs/server.p12
7979
keyStorePassword: passw0rd

0 commit comments

Comments
 (0)
Failed to load comments.