You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* use smb volume for case insensitive jobs
* add `storage-image` command line option and script test
* address review feedback
* add clarifying comment
Copy file name to clipboardExpand all lines: cmd/dependabot/internal/cmd/root.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ var (
31
31
updaterImagestring
32
32
proxyImagestring
33
33
collectorImagestring
34
+
storageImagestring
34
35
)
35
36
36
37
// rootCmd represents the base command when called without any subcommands
@@ -59,4 +60,5 @@ func init() {
59
60
rootCmd.PersistentFlags().StringVar(&updaterImage, "updater-image", "", "container image to use for the updater")
60
61
rootCmd.PersistentFlags().StringVar(&proxyImage, "proxy-image", infra.ProxyImageName, "container image to use for the proxy")
61
62
rootCmd.PersistentFlags().StringVar(&collectorImage, "collector-image", infra.CollectorImageName, "container image to use for the OpenTelemetry collector")
63
+
rootCmd.PersistentFlags().StringVar(&storageImage, "storage-image", infra.StorageImageName, "container image to use for the storage service")
// since the updater is using the storage container, we need to populate the repo on that device because that's the directory that will be used for the update
0 commit comments