28 lines
525 B
YAML
28 lines
525 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: v2ray
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: v2ray
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: v2ray
|
|
spec:
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: v2ray
|
|
containers:
|
|
- name: v2ray
|
|
image: v2fly/v2fly-core:v5.1.0
|
|
resources:
|
|
limits:
|
|
memory: 32Mi
|
|
cpu: 200m
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /etc/v2ray
|