-
Notifications
You must be signed in to change notification settings - Fork 0
/
demoapp-deployment.yaml
54 lines (54 loc) · 969 Bytes
/
demoapp-deployment.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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: demoapp
name: demoapp
spec:
replicas: 1
selector:
matchLabels:
app: demoapp
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: demoapp
spec:
containers:
- image: demoapp:demo
name: demoapp
resources: {}
volumeMounts:
- name: demosource
mountPath: /demoapp/demoapp
volumes:
- name: demosource
hostPath:
path: /Users/jkeating/src/derpops/demoapp/demoapp
status: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
app: demoapp
name: demoapp
spec:
ports:
- name: "8000"
port: 8000
protocol: TCP
targetPort: 8000
- name: "4444"
port: 4444
protocol: TCP
targetPort: 4444
selector:
app: demoapp
type: NodePort
status:
loadBalancer: {}