Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions nodeup/pkg/model/kube_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ func (b *KubeProxyBuilder) buildPod() (*v1.Pod, error) {
return nil, fmt.Errorf("KubeProxy not configured")
}

klog.Infof("kube-proxy has ProxyMode=%q", c.ProxyMode)

if c.Master == "" {
if b.IsMaster {
// As a special case, if this is the master, we point kube-proxy to the local IP
Expand Down
4 changes: 4 additions & 0 deletions pkg/dump/dumper.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,10 @@ func (n *logDumperNode) dump(ctx context.Context) []error {
errors = append(errors, err)
}

if err := n.shellToFile(ctx, "cat /proc/modules", filepath.Join(n.dir, "modules")); err != nil {
errors = append(errors, err)
}

return errors
}

Expand Down
1 change: 1 addition & 0 deletions upup/pkg/fi/nodeup/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ func (c *NodeUpCommand) Run(out io.Writer) error {
if err != nil {
return fmt.Errorf("error determining OS distribution: %v", err)
}
klog.Infof("Detected distribution: %v", distribution)

configAssets := nodeupConfig.Assets[architecture]
assetStore := fi.NewAssetStore(c.CacheDir)
Expand Down
Loading