Skip to content

Commit

Permalink
default docker engine version 1.32 for the global --crt-api-version flag
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Quest <kcq.public@gmail.com>
  • Loading branch information
kcq committed Sep 25, 2024
1 parent 7ccdc44 commit fc837fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/app/master/command/cliflags.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ func GlobalFlags() []cli.Flag {
},
&cli.StringFlag{
Name: FlagAPIVersion,
Value: "1.25", // We need at least 1.25 for to support builds from Dockerfile.
Value: "1.32", // We need at least 1.32 for to support builds from Dockerfile.
Usage: FlagAPIVersionUsage,
EnvVars: []string{"DSLIM_CRT_API_VER"},
},
Expand Down
1 change: 1 addition & 0 deletions pkg/app/master/command/cliprompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ var GlobalFlagSuggestions = []prompt.Suggest{
{Text: FullFlagName(FlagTLSCertPath), Description: FlagTLSCertPathUsage},
{Text: FullFlagName(FlagHost), Description: FlagHostUsage},
{Text: FullFlagName(FlagCRTConnection), Description: FlagCRTConnectionUsage},
{Text: FullFlagName(FlagAPIVersion), Description: FlagAPIVersionUsage},
{Text: FullFlagName(FlagArchiveState), Description: FlagArchiveStateUsage},
{Text: FullFlagName(FlagInContainer), Description: FlagInContainerUsage},
{Text: FullFlagName(FlagCheckVersion), Description: FlagCheckVersionUsage},
Expand Down

0 comments on commit fc837fb

Please sign in to comment.