From 12dff6c2a8fceb83ca69ab2d43414460fb931394 Mon Sep 17 00:00:00 2001 From: kurokobo <2920259+kurokobo@users.noreply.github.com> Date: Wed, 8 Nov 2023 22:06:07 +0900 Subject: [PATCH] fix: downgrade k3s version to avoid any issues --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06d2640..b97f08f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ An example implementation of AWX on single node K3s using AWX Operator, with eas - Tested on: - CentOS Stream 8 (Minimal) - - K3s v1.27.7+k3s1 + - K3s v1.27.6+k3s1 - Products that will be deployed: - AWX Operator 2.7.2 - AWX 23.4.0 @@ -76,10 +76,10 @@ sudo dnf install -y git curl ### Install K3s -Install specific version of K3s with `--write-kubeconfig-mode 644` to make config file (`/etc/rancher/k3s/k3s.yaml`) readable by non-root user. +Install specific version of K3s with `--write-kubeconfig-mode 644` to make config file (`/etc/rancher/k3s/k3s.yaml`) readable by non-root user. **Note that the latest `v1.27.7+k3s1` has [an issue](https://github.com/k3s-io/k3s/issues/8755) that HTTP redirection causes 404 error for your AWX, so this guide explicitly specifies `v1.27.6+k3s1`.** ```bash -curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.27.7+k3s1 sh -s - --write-kubeconfig-mode 644 +curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.27.6+k3s1 sh -s - --write-kubeconfig-mode 644 ``` ### Install AWX Operator