forked from KubeDev/kube-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkube-news.yaml
37 lines (32 loc) · 930 Bytes
/
kube-news.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
35
36
37
apiversion: apps/v1
kind: Deployment
metadata:
name: kube-news
spec:
template:
spec:
containers:
name: postgres
image: postgres
ports:
- containerPort: 3306
env:
- name: POSTGRES_PASSWORD #No desafio e no arquivo models/posts.js o nome das váriaveis
#estão diferentes, mas na documentação da imagem postgres no docker está assim
value: "root"
- name: POSTGRES_DB
value: "kube-news"
- name: POSTGRES_USER
value: "root"
---
#criei um manifesto apenas para o pod. O banco declarei dentro do deployment.
apiVersion: v1
kind: Pod
metadata:
name: kubenewsPod
spec:
containers:
- name: kube-news
image: helton/kube-news:latest #não criei conta ainda no docker, posso referenciar uma imagem local?
ports:
- containerPort: 80