mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
chore(deps): update netbird chore(deps): update keycloak docker tag to v24.3.2 chore(deps): update ghcr.io/authelia/authelia docker tag to v4.38.18 chore(deps): update proxmox-csi-plugin docker tag to v0.3.1 chore(deps): update helm release argo-cd to v7.7.12
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: netbird-agent
|
|
namespace: netbird
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: netbird
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: netbird
|
|
spec:
|
|
# securityContext:
|
|
# seccompProfile:
|
|
# type: RuntimeDefault
|
|
containers:
|
|
- name: netbird
|
|
image: docker.io/netbirdio/netbird:0.35.2 # renovate: docker=docker.io/netbirdio/netbird
|
|
imagePullPolicy: IfNotPresent
|
|
# securityContext:
|
|
# allowPrivilegeEscalation: false
|
|
# readOnlyRootFilesystem: true
|
|
# capabilities:
|
|
# add: [ NET_ADMIN, PERFMON, BPF ]
|
|
envFrom:
|
|
- configMapRef:
|
|
name: agent-config
|
|
env:
|
|
- name: NB_SETUP_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: agent-setup-key
|
|
key: setupKey
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /config
|
|
volumes:
|
|
- name: config
|
|
emptyDir: { }
|