-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathk8s.yaml
46 lines (46 loc) · 1.02 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
# 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: steve-deploy
labels:
app: steve-app
spec:
selector:
matchLabels:
app: steve-app
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: steve-app
spec:
containers:
- name: steve-app
image: DOCKERHUB_USERNAME/DOCKERHUB_REPOSITORY:IMAGE_LABEL
imagePullPolicy: Always
ports:
- containerPort: 3000
- name: beyond-api
image: DOCKERHUB_USERNAME/dnd-beyond-pdf-parser:1.1.1
imagePullPolicy: Always
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred
---