⬆️ 0.3.11

This commit is contained in:
andreas.dinauer 2025-11-16 13:38:46 +01:00
parent 5fb70d278e
commit 0003d12722
3 changed files with 32 additions and 2 deletions

View File

@ -1,3 +1,3 @@
apiVersion: v2 apiVersion: v2
name: kubooboo-chart name: kubooboo-chart
version: 0.3.10 version: 0.3.11

View File

@ -67,4 +67,6 @@ spec:
- name: PUBLIC_KEY_LOCATION - name: PUBLIC_KEY_LOCATION
value: /etc/secrets/PUBLIC_KEY value: /etc/secrets/PUBLIC_KEY
- name: KUBECONFIG_LOCATION - name: KUBECONFIG_LOCATION
value: /etc/kubeconfig/KUBECONFIG value: /etc/kubeconfig/KUBECONFIG
- name: CURRENT_NAMESPACE
value: {{ .Release.Namespace }}

View File

@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: node-monitor
spec:
selector:
matchLabels:
dev.dinauer.kubooboo/component: node-monitor
template:
metadata:
labels:
dev.dinauer.kubooboo/component: node-monitor
spec:
tolerations:
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
containers:
- name: node-monitor-pod
image: harbor.dinauer.dev/kubooboo/node-monitor:1
resources:
requests:
memory: 10Mi
limits:
memory: 50Mi