Skip to content

Commit 8ab08b1

Browse files
committed
Merge stage for release 1.2.0
Added default email values
2 parents bb00ae8 + 96ced13 commit 8ab08b1

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

docker-compose.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ services:
9090
CHIRPSTACK_APPLICATION_SERVER_HOSTNAME: chirpstack-application-server
9191
CHIRPSTACK_NETWORK_SERVER: chirpstack-network-server
9292
LOG_LEVEL: debug
93+
EMAIL_PORT: 587
94+
EMAIL_HOST: smtp.ethereal.email # Change this for sending emails with OS2iot
95+
EMAIL_USER: [email protected] # Change this for sending emails with OS2iot
96+
EMAIL_PASS: some-login-pass # Change this for sending emails with OS2iot
97+
EMAIL_FROM: [email protected] # Change this for sending emails with OS2iot
9398

9499
os2iot-postgresql:
95100
restart: always

helm/charts/os2iot-backend/templates/deployment.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,13 @@ spec:
7171
value: "{{ .Values.KOMBIT_ENTRYPOINT }}"
7272
- name: LOG_LEVEL
7373
value: error
74+
- name: EMAIL_PORT
75+
value: '587'
76+
- name: EMAIL_HOST
77+
value: smtp.ethereal.email
78+
- name: EMAIL_USER
79+
80+
- name: EMAIL_PASS
81+
value: some-login-pass
82+
- name: EMAIL_FROM
83+

0 commit comments

Comments
 (0)