Skip to content

Commit

Permalink
auto-pause: restart service after configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ComradeProgrammer committed Nov 1, 2024
1 parent 4957e70 commit d9adcd6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
12 changes: 11 additions & 1 deletion cmd/minikube/cmd/config/configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import (
"k8s.io/minikube/pkg/minikube/reason"
"k8s.io/minikube/pkg/minikube/service"
"k8s.io/minikube/pkg/minikube/style"
"k8s.io/minikube/pkg/minikube/sysinit"
)

var posResponses = []string{"yes", "y"}
Expand Down Expand Up @@ -255,7 +256,7 @@ var addonsConfigureCmd = &cobra.Command{
}
}
case "auto-pause":
_, cfg := mustload.Partial(profile)
lapi, cfg := mustload.Partial(profile)
intervalInput := AskForStaticValue("-- Enter interval time of auto-pause-interval (ex. 1m0s): ")
intervalTime, err := time.ParseDuration(intervalInput)
if err != nil {
Expand All @@ -274,6 +275,15 @@ var addonsConfigureCmd = &cobra.Command{
if err := addons.EnableOrDisableAddon(cfg, "auto-pause", "true"); err != nil {
out.ErrT(style.Fatal, "Failed to configure auto-pause {{.profile}}", out.V{"profile": profile})
}
// see #17945: restart auto-pause service
p, err := config.LoadProfile(profile)
if err != nil {
out.ErrT(style.Fatal, "failed to load profile: {{.error}}", out.V{"error": err})
}
if profileStatus(p, lapi).StatusCode/100 == 2 { //2xx code

Check failure on line 283 in cmd/minikube/cmd/config/configure.go

View workflow job for this annotation

GitHub Actions / lint

commentFormatting: put a space between `//` and comment text (gocritic)
co := mustload.Running(profile)
sysinit.New(co.CP.Runner).Restart("auto-pause")

Check failure on line 285 in cmd/minikube/cmd/config/configure.go

View workflow job for this annotation

GitHub Actions / lint

Error return value of `(k8s.io/minikube/pkg/minikube/sysinit.Manager).Restart` is not checked (errcheck)
}
}
default:
out.FailureT("{{.name}} has no available configuration options", out.V{"name": addon})
Expand Down
13 changes: 9 additions & 4 deletions cmd/minikube/cmd/config/profile_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,23 +104,28 @@ func updateProfilesStatus(profiles []*config.Profile) {
defer api.Close()

for _, p := range profiles {
p.Status = profileStatus(p, api)
p.Status = profileStatus(p, api).StatusName
}
}

func profileStatus(p *config.Profile, api libmachine.API) string {
func profileStatus(p *config.Profile, api libmachine.API) cluster.State {
cps := config.ControlPlanes(*p.Config)
if len(cps) == 0 {
exit.Message(reason.GuestCpConfig, "No control-plane nodes found.")
}
statuses, err := cluster.GetStatus(api, p.Config)
if err != nil {
klog.Errorf("error getting statuses: %v", err)
return "Unknown"
return cluster.State{
BaseState: cluster.BaseState{
Name: "Unknown",
StatusCode: 520,
},
}
}
clusterStatus := cluster.GetState(statuses, ClusterFlagValue(), p.Config)

return clusterStatus.StatusName
return clusterStatus
}

func renderProfilesTable(ps [][]string) {
Expand Down

0 comments on commit d9adcd6

Please sign in to comment.