netmaker/k8s/client/netclient.yaml

44 lines
1,000 B
YAML
Raw Normal View History

2022-07-08 03:54:52 +08:00
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: netclient
labels:
app: netclient
spec:
selector:
matchLabels:
app: netclient
replicas: 1
template:
metadata:
labels:
app: netclient
spec:
hostNetwork: true
# affinity:
# nodeAffinity:
# preferredDuringSchedulingIgnoredDuringExecution:
# - weight: 1
# preference:
# matchExpressions:
# - key: <node label>
# operator: In
# values:
# - "<node label value>"
containers:
- name: netclient
2022-07-27 03:35:04 +08:00
image: gravitl/netclient:v0.14.6
2022-07-08 03:54:52 +08:00
env:
- name: TOKEN
value: "TOKEN_VALUE"
volumeMounts:
- mountPath: /etc/netclient
name: etc-netclient
securityContext:
privileged: true
volumes:
- hostPath:
path: /etc/netclient
type: DirectoryOrCreate
name: etc-netclient