curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Custom lifetime of certs | |
cat << EOF > /etc/default/k3s | |
CATTLE_NEW_SIGNED_CERT_EXPIRATION_DAYS=3650 | |
EOF | |
curl -sfL https://get.k3s.io | sh - | |
## Check certs | |
for i in `ls /var/lib/rancher/k3s/server/tls/*.crt`; do echo $i; openssl x509 -enddate -noout -in $i; done |
Following https://docs.microsoft.com/en-us/azure/aks/azure-files-dynamic-pv.
For now, we can only choose the following Azure storage redundancy for skuName
:
Standard_LRS
- standard locally redundant storage (LRS)Standard_GRS
- standard geo-redundant storage (GRS)Standard_RAGRS
- standard read-access geo-redundant storage (RA-GRS)