forked from kaluzaaa/gp-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo16.yaml
54 lines (54 loc) · 944 Bytes
/
demo16.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
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: echo-v1
annotations:
kubernetes.io/ingress.class: nginx
spec:
tls:
- hosts:
- "echo-tls.gp.kaluzny.io"
secretName: gp-kaluzny-io
rules:
- host: echo-tls.gp.kaluzny.io
http:
paths:
- backend:
serviceName: echo-v1
servicePort: 80
path: /
---
apiVersion: v1
kind: Service
metadata:
name: echo-v1
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 8080
protocol: TCP
selector:
app: echo-v1
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: echo-v1
spec:
selector:
matchLabels:
app: echo-v1
replicas: 1
template:
metadata:
labels:
app: echo-v1
spec:
containers:
- image: gcr.io/google_containers/echoserver:1.4
name: echo
ports:
- containerPort: 8080
name: http
protocol: TCP