27 lines
508 B
YAML
27 lines
508 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: goproxy
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
apps: goproxy
|
|
template:
|
|
metadata:
|
|
apps: goproxy
|
|
spec:
|
|
containers:
|
|
- name: goproxy
|
|
image: goproxy
|
|
args:
|
|
- 'tcp'
|
|
- '-p'
|
|
- ':33080'
|
|
- '-T'
|
|
- 'udp'
|
|
- '-P'
|
|
- 'ksp.midymidy.tk:8800'
|
|
resources:
|
|
limits:
|
|
cpu: '200m'
|
|
memory: 128Mi |