mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
341fba89fa
chore(deps): update netbird to v0.39.2 (#265) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update sealed-secrets docker tag to v2.5.8 (#264) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update terraform proxmox to v0.74.0 (#263) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update helm release crossplane to v1.19.1 (#262) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update helm release argo-cd to v7.8.15 (#261) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update ghcr.io/prometheus-community/charts/kube-prometheus-stack docker tag to v70.3.0 (#259) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> chore(deps): update media containers (#258) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: agent
|
|
namespace: netbird
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: agent
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: agent
|
|
spec:
|
|
securityContext:
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
sysctls:
|
|
# Considered unsafe, need to enable with kubelet argument.
|
|
# see https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/#enabling-unsafe-sysctls
|
|
- name: net.ipv4.conf.all.src_valid_mark
|
|
value: "1"
|
|
containers:
|
|
- name: agent
|
|
image: docker.io/netbirdio/netbird:0.39.2 # renovate: docker=docker.io/netbirdio/netbird
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
capabilities:
|
|
drop: [ ALL ]
|
|
add: [ NET_ADMIN, NET_RAW, PERFMON, BPF ]
|
|
envFrom:
|
|
- configMapRef:
|
|
name: agent-config
|
|
- secretRef:
|
|
name: agent-setup-key
|
|
volumeMounts:
|
|
- name: netbird
|
|
mountPath: /var/lib/netbird
|
|
resources:
|
|
requests:
|
|
memory: 128Mi
|
|
cpu: 100m
|
|
limits:
|
|
memory: 256Mi
|
|
cpu: 4000m
|
|
volumes:
|
|
- name: netbird
|
|
emptyDir: { }
|