Can I confirm a setting I'd like to make? We have ...
# kubernetes
l
Can I confirm a setting I'd like to make? We have a downstream RKE2 cluster and want to set the etcd quota-backend-bytes option to something larger than the default (2GB). I can only see directions for RKE1: https://ranchermanager.docs.rancher.com/how-to-guides/advanced-user-guides/tune-etcd-for-large-installs. I found https://ranchermanager.docs.rancher.com/reference-guides/cluster-configuration/rancher-server-configuration/rke2-cluster-configuration which shows setting etcd-arg in the machineGlobalConfig section, but I want to confim that'd be:
Copy code
machineGlobalConfig:
    etcd-arg:
        - quota-backend-bytes=4294967296
or is that syntax not right?
h
This is what I have in my config.yaml and it worked - I did not put
machineGolbalConfig
like your example
Copy code
etcd-arg:
    - "quota-backend-bytes=value"
RKE2 version 1.31
l
Thanks. I think the option is working for me. Just wanted a second set of eyes to make sure the syntax was right.
👍 1