-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdep-svc-ing-https.template.yaml
More file actions
70 lines (65 loc) · 1.3 KB
/
dep-svc-ing-https.template.yaml
File metadata and controls
70 lines (65 loc) · 1.3 KB
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: SITE_ID
labels:
app: SITE_ID
spec:
selector:
matchLabels:
app: SITE_ID
template:
metadata:
labels:
app: SITE_ID
spec:
containers:
- name: helloworld
image: CONTAINER_REGISTRY_URL/CONTAINER_REGISTRY_USERNAME/CONTAINER_IMAGE_NAME:IMAGE_TAG
imagePullPolicy: Always
ports:
- containerPort: 80
name: web
env:
- name: TZ
value: "Europe/Oslo"
---
apiVersion: v1
kind: Service
metadata:
name: SITE_ID
labels:
app: SITE_ID
spec:
ports:
- port: 80
selector:
app: SITE_ID
type: ClusterIP
---
kind: Ingress
apiVersion: networking.k8s.io/v1
metadata:
name: SITE_ID-https
annotations:
cert-manager.io/issuer: "letsencrypt-production"
kubernetes.io/ingressClassName: traefik
traefik.ingress.kubernetes.io/router.entrypoints: "websecure"
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- hosts:
- SITE_NAME
secretName: SITE_ID-ssl-crt
rules:
- host: SITE_NAME
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: SITE_ID
port:
number: 80