-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathk8s.yaml
56 lines (56 loc) · 1.11 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
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: linode-deploy
labels:
app: linode-app
spec:
selector:
matchLabels:
app: linode-app
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: linode-app
spec:
containers:
- name: linode-app
image: DOCKERHUB_USERNAME/DOCKERHUB_REPOSITORY:IMAGE_LABEL
imagePullPolicy: Always
ports:
- containerPort: 3000
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: linode-service
labels:
app: linode-app
spec:
type: LoadBalancer
selector:
app: linode-app
ports:
- protocol: TCP
name: http
port: 80
targetPort: 3000