forked from ifbyol/test-external-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
k8s.yml
51 lines (47 loc) · 825 Bytes
/
k8s.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
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: okteto.dev/go-hello-world:1.0.0
name: hello-world
---
apiVersion: v1
kind: Service
metadata:
name: hello-world
spec:
type: ClusterIP
ports:
- name: "hello-world"
port: 8080
selector:
app: hello-world
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello-world
annotations:
dev.okteto.com/generate-host: hello-world
spec:
rules:
- http:
paths:
- backend:
service:
name: hello-world
port:
number: 8080
path: /
pathType: ImplementationSpecific