Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creation known issues topic #28

Merged
merged 3 commits into from
Jun 7, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions content/docs/reference/known-issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Known issues

Workaround solutions are available for the following MKE 4 Alpha.1 known
issues:

## [BOP-694] MKE 3 upgrade rollback destabilizes the cluster
KoryKessel-Mirantis marked this conversation as resolved.
Show resolved Hide resolved

When a rollback to MKE 3 occurs as the result of an upgrade issue, the MKE
cluster is inaccessible through the MKE web UI address and ``ucp-auth``
containers continually restart.

**Workaround:** Uninstall MKE 3 and restore it from a backup.

## [BOP-708] OIDC authenticaion fails after mkectl upgrade

Due to an issue with client secret migration, OIDC authentication fails
following an upgrade performed with mkectl.

**Workaround:**

1. Copy the MKE 4 config that prints at the end of migration.

2. Update the ``authentication.oidc.clientSecret`` field to the secret field
from your identity provider.

3. Apply the updated MKE 4 config.

## [BOP-686] In MKE 3 upgrade, kubectl commands return ``No agent available``
ry4nz marked this conversation as resolved.
Show resolved Hide resolved

For a cluster with multiple controller nodes (manager/master nodes), [k0s
requires the presence ofa load balancer for the controller
node](https://docs.k0sproject.io/head/high-availability/ ). Without a load
balancer, the controller nodes is unable to reach the kubelet on the worker
nodes, and thus the user will be presented with ``No agent available`` errors.

**Workaround:**

1. If an external load balancer is not already in place, create one that
targets all controllers and that forwards the following ports:

- `443`, for controller
- `6443`, for Kubernetes API
- `8132`, for Konnectivity

2. Use `k0sctl` to update the `k0s` config to set `externalAddress`:
KoryKessel-Mirantis marked this conversation as resolved.
Show resolved Hide resolved

```
k0s:
config:
spec:
api:
externalAddress: <load balancer public ip address>
sans:
- <load balancer public ip address>
```