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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/kvm-node-agent/crds/hypervisor-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,10 @@ spec:
hardwareVendor:
description: HardwareVendor
type: string
kernelCommandLine:
description: KernelCommandLine contains the raw kernel boot parameters
from /proc/cmdline.
type: string
kernelName:
description: KernelName
type: string
Expand Down
2 changes: 1 addition & 1 deletion charts/kvm-node-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ controllerManager:
runAsUser: 0
image:
repository: busybox
tag: "1.37"
tag: "1.28"
manager:
args:
- --health-probe-bind-address=:8081
Expand Down
2 changes: 1 addition & 1 deletion internal/systemd/systemd.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (s *SystemdConn) EnableShutdownInhibit(ctx context.Context, cb func(context
log.Info("received shutdown signal", "signal", signal)

// execute the shutdown callback
if err := cb(context.Background()); err != nil {
if err := cb(ctx); err != nil {
log.Error(err, "failed to execute shutdown callback")
}

Expand Down
Loading