Skip to content

Commit

Permalink
fix: skip renew certificate (#4880)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostloda authored Jul 11, 2024
1 parent 85318ad commit 134a975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/runtime/kubernetes/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import (
)

const (
upgradeApplyCmd = "kubeadm upgrade apply --config %s --yes"
upradeNodeCmd = "kubeadm upgrade node --skip-phases preflight"
upgradeApplyCmd = "kubeadm upgrade apply --certificate-renewal=false --config %s --yes"
upradeNodeCmd = "kubeadm upgrade node --certificate-renewal=false --skip-phases preflight"
//drainNodeCmd = "kubectl drain %s --ignore-daemonsets"
cordonNodeCmd = "kubectl cordon %s"
uncordonNodeCmd = "kubectl uncordon %s"
Expand Down

0 comments on commit 134a975

Please sign in to comment.