Skip to content

Commit 7395870

Browse files
Merge pull request #23 from schedkit/default-driver-podman
feat: switch default driver to podman
2 parents ca798cf + 5d27e49 commit 7395870

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/schedctl/ps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func NewPsCmd() *cobra.Command {
1717
RunE: ps,
1818
}
1919

20-
psCmd.PersistentFlags().StringP("driver", "d", "containerd", "The driver to use: containerd, podman")
20+
psCmd.PersistentFlags().StringP("driver", "d", "podman", "The driver to use: containerd, podman")
2121

2222
return psCmd
2323
}

cmd/schedctl/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func NewRunCmd() *cobra.Command {
2222
}
2323

2424
startCmd.Flags().BoolVarP(&Attach, "attach", "a", false, "attach to the current process instead of detaching")
25-
startCmd.PersistentFlags().StringP("driver", "d", "containerd", "The driver to use: containerd, podman")
25+
startCmd.PersistentFlags().StringP("driver", "d", "podman", "The driver to use: containerd, podman")
2626

2727
return startCmd
2828
}

cmd/schedctl/stop.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func NewStopCmd() *cobra.Command {
1616
RunE: stop,
1717
}
1818

19-
stopCmd.PersistentFlags().StringP("driver", "d", "containerd", "The driver to use: containerd, podman")
19+
stopCmd.PersistentFlags().StringP("driver", "d", "podman", "The driver to use: containerd, podman")
2020

2121
return stopCmd
2222
}

0 commit comments

Comments
 (0)