-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.yaml
73 lines (73 loc) · 1.24 KB
/
deploy.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
kind: Namespace
apiVersion: v1
metadata:
name: hello-world
labels:
app: hello-world
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hello-world
name: hello-world
namespace: hello-world
spec:
replicas: 10
selector:
matchLabels:
app: hello-world
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
template:
metadata:
labels:
app: hello-world
spec:
containers:
- image: supporttools/hello-world
imagePullPolicy: Always
name: hello-world
ports:
- containerPort: 8080
protocol: TCP
restartPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
name: hello-world
namespace: hello-world
labels:
app: hello-world
spec:
ports:
- port: 8080
protocol: TCP
targetPort: 8080
selector:
app: hello-world
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-world
namespace: hello-world
labels:
app: hello-world
spec:
rules:
- host: hello-world.support.tools
http:
paths:
- backend:
service:
name: hello-world
port:
number: 8080
path: /
pathType: Prefix