Skip to content

Commit

Permalink
Merge pull request #277 from kurokobo/k3s
Browse files Browse the repository at this point in the history
fix: downgrade k3s version to avoid any issues
  • Loading branch information
kurokobo authored Nov 8, 2023
2 parents 8181f41 + 12dff6c commit 101ff95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 101ff95

Please sign in to comment.