-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathk8s.yml
More file actions
53 lines (48 loc) · 877 Bytes
/
k8s.yml
File metadata and controls
53 lines (48 loc) · 877 Bytes
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-world
spec:
replicas: 1
selector:
matchLabels:
app: hello-world
template:
metadata:
labels:
app: hello-world
spec:
containers:
- image: lukepolo/hello-world:node
name: hello-world
---
apiVersion: v1
kind: Service
metadata:
name: hello-world
spec:
type: ClusterIP
ports:
- name: "hello-world"
port: 3000
selector:
app: hello-world
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-world
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: hello-world.codepier
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: hello-world
port:
number: 3000