-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.yaml
More file actions
82 lines (77 loc) · 1.9 KB
/
example.yaml
File metadata and controls
82 lines (77 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
applications:
- name: app1
git:
type: github
owner: example-org
repo: custom-app
branch: develop
endpoints:
- port: 8000
routes:
- custom1.example.com/exam
- port: 3000
routes:
- api1.example.com
- port: 9000
routes:
- admin1.example.com
- name: app2
git:
type: github
owner: example-org
repo: custom-app
branch: develop
endpoints:
- port: 5000
routes:
- custom2.example.com
- port: 5001
routes:
- api2.example.com
addons:
# MySQL 8.0 인스턴스
# 환경변수:
# - DB1_HOST: 데이터베이스 호스트명
# - DB1_PORT: 데이터베이스 포트 번호
# - DB1_DATABASE: 데이터베이스 이름
# - DB1_USER: 데이터베이스 사용자명
# - DB1_PASSWORD: 데이터베이스 비밀번호
- name: db1
type: mysql
version: "8.0"
port: 3306
size: 2Gi
# PostgreSQL 14 인스턴스
# 환경변수:
# - DB2_HOST: 데이터베이스 호스트명
# - DB2_PORT: 데이터베이스 포트 번호
# - DB2_DB: 데이터베이스 이름
# - DB2_USER: 데이터베이스 사용자명
# - DB2_PASSWORD: 데이터베이스 비밀번호
- name: db2
type: postgres
version: "14"
port: 5432
size: 2Gi
# MongoDB 5.0 인스턴스
# 환경변수:
# - DB3_HOST: 데이터베이스 호스트명
# - DB3_PORT: 데이터베이스 포트 번호
# - DB3_DB: 데이터베이스 이름
# - DB3_USER: 데이터베이스 사용자명
# - DB3_PASSWORD: 데이터베이스 비밀번호
- name: db3
type: mongo
version: "5.0"
port: 27017
size: 2Gi
# Redis 6.0 인스턴스
# 환경변수:
# - DB4_HOST: Redis 호스트명
# - DB4_PORT: Redis 포트 번호
# - DB4_PASSWORD: Redis 비밀번호
- name: db4
type: redis
version: "6.0"
port: 6379
size: 2Gi