-
Notifications
You must be signed in to change notification settings - Fork 1
/
kubernetes_manifest.yml
56 lines (56 loc) · 1.11 KB
/
kubernetes_manifest.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
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
name: ${APPLICATION_NAME}
spec:
replicas: 1
selector:
matchLabels:
app: ${APPLICATION_NAME}
template:
metadata:
labels:
app: ${APPLICATION_NAME}
spec:
containers:
- name: ${APPLICATION_NAME}
image: ${CONTAINER_IMAGE_TAGGED}
ports:
- containerPort: 80
envFrom:
- secretRef:
name: environment-variables
---
apiVersion: v1
kind: Service
metadata:
name: ${APPLICATION_NAME}
spec:
type: ClusterIP
selector:
app: ${APPLICATION_NAME}
ports:
- port: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ${APPLICATION_NAME}
annotations:
cert-manager.io/cluster-issuer: letsencrypt
spec:
tls:
- hosts:
- ${K8S_INGRESS_HOST}
secretName: ${APPLICATION_NAME}-tls
rules:
- host: ${K8S_INGRESS_HOST}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ${APPLICATION_NAME}
port:
number: 80