-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
36 lines (36 loc) · 614 Bytes
/
app.yaml
File metadata and controls
36 lines (36 loc) · 614 Bytes
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
kind: Service
apiVersion: v1
metadata:
name: ripple-webrtc
labels:
app: ripple-webrtc
spec:
type: NodePort
selector:
app: ripple-webrtc
ports:
- port: 8080
targetPort: 8080
name: http
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: ripple-webrtc
spec:
replicas: 1
selector:
matchLabels:
app: ripple-webrtc
template:
metadata:
labels:
app: ripple-webrtc
version: v1
spec:
containers:
- name: ripple-webrtc
image: ripple-webrtc
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080