deploy values

This commit is contained in:
2025-12-10 15:27:16 +09:00
parent 1e40024232
commit 14f7ac70cb
4 changed files with 41 additions and 0 deletions

10
deploy/nats.yaml Normal file
View File

@@ -0,0 +1,10 @@
image: docker.io/nats
args:
- -js
- -sd
- /data
ports:
- 4222
volume:
enabled: true
path: /data

10
deploy/openweather.yaml Normal file
View File

@@ -0,0 +1,10 @@
image: registry.neatflow.kr/weather/openweather:v0.0.1
env:
- name: NATS_URL
value: nats://nats-app:4222
- name: OPENWEATHER_API_KEY
value: "96385ecb4429f7c32893457c0e545b05"
- name: OPENWEATHER_LAT
value: "37.485090"
- name: OPENWEATHER_LON
value: "126.928031"

13
deploy/postgres.yaml Normal file
View File

@@ -0,0 +1,13 @@
image: docker.io/postgres
ports:
- 5432
volume:
enabled: true
path: /var/lib/postgresql
env:
- name: POSTGRES_DB
value: weather
- name: POSTGRES_USER
value: weather
- name: POSTGRES_PASSWORD
value: weather

8
deploy/seven-skies.yaml Normal file
View File

@@ -0,0 +1,8 @@
image: registry.neatflow.kr/weather/seven-skies:v0.0.2
ports:
- 8080
env:
- name: NATS_URL
value: nats://nats-app:4222
- name: DATABASE_DSN
value: "host=postgres-app user=weather password=weather dbname=weather port=5432 sslmode=disable TimeZone=Asia/Seoul"