57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: tor
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: tor
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: tor
|
|
spec:
|
|
containers:
|
|
- name: tor
|
|
image: siverten/tor:latest
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 9050
|
|
name: socks
|
|
- containerPort: 9089
|
|
name: dir
|
|
- containerPort: 9090
|
|
name: or
|
|
securityContext:
|
|
capabilities:
|
|
drop: ["ALL"]
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
allowPrivilegeEscalation: false
|
|
runAsNonRoot: true
|
|
runAsGroup: 101
|
|
runAsUser: 100
|
|
volumeMounts:
|
|
- name: torrc
|
|
mountPath: /etc/torrc
|
|
readOnly: true
|
|
volumes:
|
|
- name: torrc
|
|
configMap:
|
|
name: tor
|
|
items:
|
|
- key: torrc
|
|
path: torrc
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: tor
|
|
data:
|
|
torrc: |
|
|
SocksPort 0.0.0.0:9050
|
|
ExitRelay 0
|