mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
chore(deps): update ghcr.io/lldap/lldap docker tag to v2024-12-24-debian-rootless chore(deps): update helm release cert-manager to v1.16.2 chore(deps): update keycloak docker tag to v24.3.1 chore(deps): update terraform proxmox to v0.69.0 chore(deps): update cloudflare/cloudflared docker tag to v2024.12.2 chore(deps): update media containers chore(deps): update cilium to v1.16.5 chore(deps): update netbird chore(deps): update helm release argo-cd to v7.7.11 chore(deps): update helm release authelia to v0.9.14 chore(deps): update docker.io/adguard/adguardhome docker tag to v0.107.55 chore(deps): update helm release crossplane to v1.18.2 chore(deps): update dependency crossplane-contrib/function-auto-ready to v0.4.0 chore(deps): update helm release cloudnative-pg to v0.23.0 chore(deps): update helm release node-feature-discovery to v0.17.0 chore(deps): update dependency siderolabs/talos to v1.9.1 chore(deps): update registry.k8s.io/git-sync/git-sync docker tag to v4.4.0 chore(deps): update proxmox-csi-plugin docker tag to v0.3.0 chore(deps): update sealed-secrets docker tag to v2.5.0 chore(deps): update terraform kubernetes to v2.35.1 chore(deps): update terraform talos to v0.7.0 fix(lldap): correct avatar url
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.1 # 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: { }
|