kubernetes-guide/codeblock/home-network/ikev2.yaml

54 lines
1.2 KiB
YAML
Raw Normal View History

2024-03-07 16:11:26 +08:00
apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
app: ikev2
name: ikev2
namespace: default
spec:
selector:
matchLabels:
app: ikev2
template:
metadata:
labels:
app: ikev2
spec:
containers:
- image: imroc/ipsec-vpn-server:4.12
imagePullPolicy: IfNotPresent
name: ikev2
ports:
- containerPort: 500
protocol: UDP
2024-03-07 19:19:32 +08:00
hostPort: 500
2024-03-07 16:11:26 +08:00
- containerPort: 4500
protocol: UDP
2024-03-07 19:19:32 +08:00
hostPort: 4500
2024-03-07 16:11:26 +08:00
envFrom:
- secretRef:
name: ikev2-secret
securityContext:
privileged: true
volumeMounts:
- mountPath: /etc/ipsec.d
name: ikev2-vpn-data
- mountPath: /lib/modules
name: mod
readOnly: true
dnsPolicy: Default
restartPolicy: Always
volumes:
- hostPath:
path: /lib/modules
type: Directory
name: mod
- secret:
secretName: ikev2-vpn-data
name: ikev2-vpn-data
updateStrategy:
rollingUpdate:
maxSurge: 0
maxUnavailable: 1
type: RollingUpdate