Skip to content

Commit

Permalink
Rollback PR359 and PR419 (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
stg-0 authored Jan 29, 2024
1 parent 78888b4 commit 9f3924f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@

## 0.17.0-0.3.7 (2024-01-23)

* [Core] HotFix: Disable Azure cloud routes and fix Azure csi drivers in upgrade script
* [Core] HotFix: Remove Azure cloud route table maintenance
* [Docs] Fix: EFS permissions
* [Docs] Add AWS details
* [Core] Fix: check if coredns pdb already exists before deploying

## 0.17.0-0.3.6 (2023-12-21)

* [Core] HotFix: storageclass.parameters.label validation
* [Core] Fix: check if coredns pdb already exists before deploying
* [Core] Restrict the maximum number of unhealthy CP nodes in MachineHealthCheck

## 0.17.0-0.3.5 (2023-12-19)

Expand Down
1 change: 0 additions & 1 deletion pkg/cluster/internal/create/actions/createworker/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ func (b *AzureBuilder) installCloudProvider(n nodes.Node, k string, keosCluster
" --kubeconfig " + k +
" --namespace kube-system" +
" --set infra.clusterName=" + keosCluster.Metadata.Name +
" --set cloudControllerManager.configureCloudRoutes=false" +
" --set 'cloudControllerManager.clusterCIDR=" + podsCidrBlock + "'"
_, err := commons.ExecuteCommand(n, c, 5)
if err != nil {
Expand Down
6 changes: 0 additions & 6 deletions pkg/cluster/internal/create/actions/createworker/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -800,11 +800,6 @@ func enableSelfHealing(n nodes.Node, keosCluster commons.KeosCluster, namespace
func generateMHCManifest(n nodes.Node, clusterID string, namespace string, manifestPath string, machineRole string) error {
var c string
var err error
var maxUnhealthy = "100%"

if strings.Contains(machineRole, "control-plane-node") {
maxUnhealthy = "34%"
}
var machineHealthCheck = `
apiVersion: cluster.x-k8s.io/v1beta1
kind: MachineHealthCheck
Expand All @@ -813,7 +808,6 @@ metadata:
namespace: cluster-` + clusterID + `
spec:
clusterName: ` + clusterID + `
maxUnhealthy: ` + maxUnhealthy + `
nodeStartupTimeout: 300s
selector:
matchLabels:
Expand Down

0 comments on commit 9f3924f

Please sign in to comment.