Update to Kubernetes 1.32.3

This commit is contained in:
Kelsey Hightower
2025-04-06 18:32:30 -07:00
committed by GitHub
parent 5a325c23d7
commit 08b198f2a0
17 changed files with 184 additions and 174 deletions

View File

@@ -4,11 +4,11 @@ Kubernetes components are stateless and store cluster state in [etcd](https://gi
## Prerequisites
Copy `etcd` binaries and systemd unit files to the `server` instance:
Copy `etcd` binaries and systemd unit files to the `server` machine:
```bash
scp \
downloads/etcd-v3.4.34-linux-arm64.tar.gz \
downloads/etcd-v3.6.0-rc.3-linux-arm64.tar.gz \
units/etcd.service \
root@server:~/
```
@@ -27,8 +27,8 @@ Extract and install the `etcd` server and the `etcdctl` command line utility:
```bash
{
tar -xvf etcd-v3.4.34-linux-arm64.tar.gz
mv etcd-v3.4.34-linux-arm64/etcd* /usr/local/bin/
tar -xvf etcd-v3.6.0-rc.3-linux-arm64.tar.gz
mv etcd-v3.6.0-rc.3-linux-arm64/etcd* /usr/local/bin/
}
```