⬆️ 0.3.11
This commit is contained in:
parent
5fb70d278e
commit
0003d12722
@ -1,3 +1,3 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: kubooboo-chart
|
name: kubooboo-chart
|
||||||
version: 0.3.10
|
version: 0.3.11
|
||||||
@ -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 }}
|
||||||
|
|||||||
28
chart/templates/nodeMonitor/deployment.yaml
Normal file
28
chart/templates/nodeMonitor/deployment.yaml
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user