-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathk8s.yaml
83 lines (83 loc) · 1.95 KB
/
k8s.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
81
82
83
# This section will create a secret in the Kubernetes cluster.
# We need this for private docker repos.
apiVersion: v1
kind: Secret
metadata:
name: regcred
data:
.dockerconfigjson: DOCKER_CONFIG
type: kubernetes.io/dockerconfigjson
---
# This section will create a deployment in the Kubernetes cluster
apiVersion: apps/v1
kind: Deployment
metadata:
name: vaxhub-deploy
labels:
app: vaxhub-app
spec:
selector:
matchLabels:
app: vaxhub-app
replicas: 2
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: vaxhub-app
spec:
containers:
- name: vaxhub-app
image: DOCKERHUB_USERNAME/DOCKERHUB_REPOSITORY:IMAGE_LABEL
imagePullPolicy: Always
ports:
- containerPort: 3001
env:
- name: DB_USERNAME
valueFrom:
secretKeyRef:
name: dbcredentials
key: username
- name: DB_PASSWORD
valueFrom:
secretKeyRef:
name: dbcredentials
key: password
- name: DB_PORT
valueFrom:
secretKeyRef:
name: dbcredentials
key: port
- name: DB_HOST
valueFrom:
secretKeyRef:
name: dbcredentials
key: host
imagePullSecrets:
- name: regcred
---
# This section will create a service in the Kubernetes cluster
# so that the deployment can be accessed from the outside
apiVersion: v1
kind: Service
metadata:
name: vaxhub-service
labels:
app: vaxhub-app
annotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics"
prometheus.io/port: "3001"
spec:
type: LoadBalancer
selector:
app: vaxhub-app
ports:
- protocol: TCP
name: http
port: 80
targetPort: 3001