Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Disable LocalStorageCapacityIsolationFSQuotaMonitoring feature
Browse files Browse the repository at this point in the history
* Kubernetes v1.25.0 moved the LocalStorageCapacityIsolationFSQuotaMonitoring
feature from alpha to beta, but it breaks Kubelet updating ConfigMaps in
Pods, as shown by conformance tests
* Kubernetes is rolling LocalStorageCapacityIsolationFSQuotaMonitoring back
to alpha so its not enabled by default, but that will require a release
* Disable the feature gate directly as a workaround for now to make
Kubernetes v1.25.0 usable

```
FailedMount: MountVolume.SetUp failed for volume "configmap-volume" : requesting quota on existing directory /var/lib/kubelet/pods/f09fae17-ff16-4a05-aab3-7b897cb5b732/volumes/kubernetes.io~configmap/configmap-volume but different pod 673ad247-abf0-434e-99eb-1c3f57d7fdaa a4568e94-2b2d-438f-a4bd-c9edc814e478
```

Rel:

* kubernetes/kubernetes#112076
* kubernetes/kubernetes#107329
  • Loading branch information
dghubble committed Aug 27, 2022
1 parent 4b48fa0 commit 46606f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions butane/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ storage:
- ${cluster_dns_service_ip}
clusterDomain: ${cluster_domain_suffix}
healthzPort: 0
featureGates:
LocalStorageCapacityIsolationFSQuotaMonitoring: false
rotateCertificates: true
staticPodPath: /etc/kubernetes/manifests
readOnlyPort: 0
Expand Down
2 changes: 2 additions & 0 deletions workers/butane/worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ storage:
- ${cluster_dns_service_ip}
clusterDomain: ${cluster_domain_suffix}
healthzPort: 0
featureGates:
LocalStorageCapacityIsolationFSQuotaMonitoring: false
rotateCertificates: true
staticPodPath: /etc/kubernetes/manifests
readOnlyPort: 0
Expand Down

0 comments on commit 46606f7

Please sign in to comment.