-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencrypt-S.yaml
More file actions
48 lines (46 loc) · 920 Bytes
/
encrypt-S.yaml
File metadata and controls
48 lines (46 loc) · 920 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
37
38
39
40
41
42
43
44
45
46
47
48
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: sencrypt
name: sencrypt
spec:
replicas: 1
selector:
matchLabels:
app: sencrypt
strategy: {}
template:
metadata:
labels:
app: sencrypt
spec:
containers:
- env:
- name: CHACHA20_KEY
value: "12345678901234567890123456789012"
image: jamilakassem/socks-chaining_encrypt-cli
command: ["./functions"]
args: ["chacha20", "--key", "12345678901234567890123456789012"]
name: sencrypt
resources:
limits:
cpu: 200m
requests:
cpu: 100m
restartPolicy: Always
status: {}
---
apiVersion: v1
kind: Service
metadata:
name: sencrypt
spec:
type: ClusterIP
selector:
app: sencrypt
ports:
- port: 1080
# targetPort: 1080
# nodePort: 30011
protocol: TCP