Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/kubelb/ce/usage/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ We then create a restricted service account in the tenant cluster that will be u
This script can be used for creating the required RBAC and generating the kubeconfig:

```sh
{{< readfile "kubelb/data/create-kubelb-sa.sh" >}}
{{< readfile "kubelb/ce/data/create-kubelb-sa.sh" >}}
```

#### Manager Config
Expand Down
2 changes: 1 addition & 1 deletion content/kubelb/ee/usage/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ We then create a restricted service account in the tenant cluster that will be u
This script can be used for creating the required RBAC and generating the kubeconfig:

```sh
{{< readfile "kubelb/data/create-kubelb-sa.sh" >}}
{{< readfile "kubelb/ee/data/create-kubelb-sa.sh" >}}
```

#### Manager Config
Expand Down
16 changes: 16 additions & 0 deletions content/kubermatic/v2.25/architecture/known-issues/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,19 @@ This adjustment will help ensure that the issue no longer disrupts the provision
For additional details and discussions related to this issue, you can refer to the following GitHub issues:
- [open-vm-tools](https://github.com/vmware/open-vm-tools/issues/684).
- [cloud-init](https://github.com/canonical/cloud-init/issues/4188).

## CSI addon's reconciliation fails after upgrading user clusters to k8s 1.29 on Azure

### Problem

The CSI addon's reconciliation fails after we upgrade a user cluster on Azure cloud provider to kubernetes version 1.29.x.

### Root Cause

The root cause of this issue is an update to Azure CSI driver's upstream where the ClusterRole referenced in ClusterRoleBinding `csi-azuredisk-node-secret-binding` has been updated from `csi-azuredisk-node-secret-role` to `csi-azuredisk-node-role`.

### Solution

As the ClusterRole referenced in the ClusterRoleBinding can't be updated, we need to delete it & let it get re-created as per the latest spec.

`kubectl delete ClusterRoleBinding csi-azuredisk-node-secret-binding`