-
Notifications
You must be signed in to change notification settings - Fork 0
/
kgw-api.yaml
48 lines (47 loc) · 927 Bytes
/
kgw-api.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
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: kgwtest
name: kgwtest
namespace: kusk-system
spec:
replicas: 1
selector:
matchLabels:
app: kgwtest
template:
metadata:
labels:
app: kgwtest
spec:
containers:
- image: kubeshop/kusk-gateway-api:latest
imagePullPolicy: IfNotPresent
name: kusk-gateway-api
- image: kubeshop/kusk-gateway-api-websocket:latest
imagePullPolicy: IfNotPresent
args:
- --port=8081
name: kusk-gateway-api-websocket
serviceAccountName: kusk-gateway-manager
---
apiVersion: v1
kind: Service
metadata:
labels:
app: kgwtest
name: kgwtest
namespace: kusk-system
spec:
ports:
- port: 8080
name: http
targetPort: 8080
- port: 8081
name: websocket
targetPort: 8081
type: LoadBalancer
selector:
app: kgwtest