forked from npflan/steam-gameserver-token-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yaml
44 lines (44 loc) · 952 Bytes
/
manifest.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
kind: Deployment
apiVersion: extensions/v1beta1
metadata:
name: steam-gameserver-token-api
spec:
replicas: 1
template:
metadata:
labels:
app: steam-gameserver-token-api
spec:
containers:
- name: steam-gameserver-token-api
image: npflan/steam-gameserver-token-api:1.0.0
imagePullPolicy: Always
ports:
- containerPort: 80
env:
- name: STEAM_WEB_API_KEY
value: ""
- name: STEAM_WEB_API_BIND_ADDRESS
value: ":80"
resources:
requests:
memory: "250Mi"
cpu: "1"
limits:
memory: "750Mi"
cpu: "2"
---
kind: Service
apiVersion: v1
metadata:
name: steam-gameserver-token-api
labels:
app: steam-gameserver-token-api
spec:
type: LoadBalancer
selector:
app: steam-gameserver-token-api
ports:
- protocol: TCP
port: 80
targetPort: 80