-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-deployment.yaml
34 lines (34 loc) · 1017 Bytes
/
app-deployment.yaml
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
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
kompose.cmd: C:\ProgramData\chocolatey\lib\kubernetes-kompose\tools\kompose.exe convert -f docker-compose.yml
kompose.version: 1.33.0 (3ce457399)
labels:
io.kompose.service: app
name: app
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: app
template:
metadata:
annotations:
kompose.cmd: C:\ProgramData\chocolatey\lib\kubernetes-kompose\tools\kompose.exe convert -f docker-compose.yml
kompose.version: 1.33.0 (3ce457399)
labels:
io.kompose.network/crud-rest-line-bot-app-network: "true"
io.kompose.service: app
spec:
containers:
- env:
- name: DATABASE_URL
value: postgresql://postgres:123@postgres:5432/nest?schema=public?connect_timeout=300
image: app
name: app
ports:
- containerPort: 3333
hostPort: 3333
protocol: TCP
restartPolicy: Always