-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdemo15.yaml
50 lines (50 loc) · 861 Bytes
/
demo15.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
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: echo
annotations:
kubernetes.io/ingress.class: nginx
spec:
rules:
- host: echo-v1.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