-
Notifications
You must be signed in to change notification settings - Fork 4
/
deployment.yaml
56 lines (56 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
name: story-line-api
labels:
app: story-line
spec:
replicas: 1
selector:
matchLabels:
app: story-line
template:
metadata:
labels:
app: story-line
spec:
containers:
- name: story-line-api
image: docker.pkg.github.com/assapir/story-line/story-line-api:latest
ports:
- containerPort: 1337
envFrom:
- secretRef:
name: jwt-secret
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
labels:
app: story-line
name: story-line-api
spec:
ports:
- port: 1337
protocol: TCP
selector:
app: story-line
type: ClusterIP
---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: story-line-api-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: api.storyline.assaf.tech
http:
paths:
- path: /
backend:
serviceName: story-line-api
servicePort: 1337