-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy2.yaml
50 lines (48 loc) · 908 Bytes
/
proxy2.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
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: proxy2
name: proxy2
spec:
replicas: 1
selector:
matchLabels:
app: proxy2
strategy: {}
template:
metadata:
labels:
app: proxy2
spec:
containers:
- image: jamilakassem/proxy-chaining_cli
name: proxy2
command: ["./socksx"]
args: ["-c", "socks6://145.100.135.52:30021", "-c", "socks6://145.100.135.16:30011"]
ports:
- containerPort: 1080
resources:
limits:
cpu: 200m
requests:
cpu: 100m
nodeName: jk-04
restartPolicy: Always
status: {}
---
apiVersion: v1
kind: Service
metadata:
labels:
app: proxy2
name: proxy2
spec:
type: NodePort
selector:
app: proxy2
ports:
- port: 1080
targetPort: 1080
nodePort: 30007
protocol: TCP