-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yaml
80 lines (80 loc) · 1.37 KB
/
manifest.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
74
75
76
77
78
79
80
apiVersion: apps/v1
kind: Deployment
metadata:
name: whoami
namespace: test
spec:
selector:
matchLabels:
app: whoami
template:
metadata:
labels:
app: whoami
spec:
containers:
- image: containous/whoami
name: whoami
ports:
- containerPort: 80
resources:
limits:
cpu: 50m
memory: 50Mi
requests:
cpu: 10m
memory: 10Mi
---
apiVersion: v1
kind: Service
metadata:
name: whoami
namespace: test
spec:
selector:
app: whoami
type: ClusterIP
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami
namespace: test
annotations:
kubernetes.io/ingress.class: traefik
spec:
tls:
- secretName: tls-cert
hosts:
- whoami.local.dev
rules:
- host: whoami.local.dev
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80
---
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: whoami-cert
namespace: test
spec:
isCA: true
commonName: whoami-cn
secretName: tls-cert
dnsNames:
- whoami.local.dev
issuerRef:
name: mkcert-local
kind: ClusterIssuer