I have updated my rke2 config.yaml with following ...
# rke2
n
I have updated my rke2 config.yaml with following configuration So in how much time would i able to see the updated allocatable resources
kubectl describe node <node-name> | grep -A5 'Allocatable'
Copy code
write-kubeconfig-mode: "0644"
system-default-registry: "myregistry.io"
tls-san:
  - "node0.lab.archivas.com"
  - "node1.lab.archivas.com"
  - "node2.lab.archivas.com"
debug: true
disable:
  - "rke2-ingress-nginx"
  - "rke2-metrics-server"
  - "rke2-canal"
cni: "calico"
kubelet:
  extra-args:
    eviction-hard: memory.available<500Mi,nodefs.available<10%
    eviction-soft: memory.available<1Gi,nodefs.available<15%
    eviction-soft-grace-period: memory.available=1m,nodefs.available=1m
    eviction-max-pod-grace-period: 30
    cpu-cfs-quota: "true"
    cpu-cfs-quota-period: "100ms"
    kube-reserved:
      cpu: "500m"
      memory: "1Gi"
    system-reserved:
      cpu: "500m"
      memory: "1Gi"
api-server:
  extra-args:
    memory-requests: "512Mi"
    memory-limits: "1Gi"
    cpu-requests: "500m"
    cpu-limits: "1"
controller-manager:
  extra-args:
    memory-requests: "256Mi"
    memory-limits: "512Mi"
    cpu-requests: "250m"
    cpu-limits: "500m"
scheduler:
  extra-args:
    memory-requests: "256Mi"
    memory-limits: "512Mi"
    cpu-requests: "250m"
    cpu-limits: "500m"
etcd:
  extra-args:
    quota-backend-bytes: "2Gi"
Will the resources show substarcted(total - allocated) resource value? Thanks for your help 🙂