-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.yml
52 lines (52 loc) · 885 Bytes
/
app.yml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: blog
spec:
selector:
matchLabels:
app: blog
template:
metadata:
labels:
app: blog
spec:
containers:
- name: blog
imagePullPolicy: Never
image: blog:latest
---
apiVersion: v1
kind: Service
metadata:
name: blog
labels:
app: blog
spec:
selector:
app: blog
ports:
- name: http
port: 80
targetPort: 80
protocol: TCP
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: blog
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/ingress.class: "nginx"
spec:
tls:
- hosts:
- blog.lowords.com
secretName: blog-tls
rules:
- host: blog.lowords.com
http:
paths:
- backend:
serviceName: blog
servicePort: 80