Skip to content

Commit

Permalink
Make 'none' type compression the default for kit pack
Browse files Browse the repository at this point in the history
  • Loading branch information
amisevsk committed May 6, 2024
1 parent 53b4e50 commit a4c40cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/pack/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func PackCommand() *cobra.Command {
}
cmd.Flags().StringVarP(&opts.modelFile, "file", "f", "", "Specifies the path to the Kitfile explictly (use \"-\" to read from standard input)")
cmd.Flags().StringVarP(&opts.fullTagRef, "tag", "t", "", "Assigns one or more tags to the built modelkit. Example: -t registry/repository:tag1,tag2")
cmd.Flags().StringVar(&opts.compression, "compression", "gzip", "Compression format to use for layers")
cmd.Flags().StringVar(&opts.compression, "compression", "none", "Compression format to use for layers. Valid options: 'none' (default), 'gzip', 'gzip-fastest'")
cmd.Args = cobra.ExactArgs(1)
return cmd
}
Expand Down

0 comments on commit a4c40cd

Please sign in to comment.