Skip to content

Commit ca7ccb5

Browse files
committed
feat: add support for custom save tags
we first send the tags that we want to use in order to verify them with the API, then we send said tags to the buildkit instance to push when it's completed.
1 parent fb93b72 commit ca7ccb5

File tree

6 files changed

+115
-14
lines changed

6 files changed

+115
-14
lines changed

flake.lock

+61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
description = "Development shell for app";
3+
4+
inputs = {
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6+
flake-utils.url = "github:numtide/flake-utils";
7+
};
8+
9+
outputs = { self, nixpkgs, flake-utils }:
10+
flake-utils.lib.eachDefaultSystem (system:
11+
let pkgs = import nixpkgs { inherit system; };
12+
in {
13+
devShell = pkgs.mkShell {
14+
name = "api-devshell";
15+
16+
packages = with pkgs; [
17+
go
18+
gopls
19+
buf
20+
golangci-lint
21+
];
22+
23+
shellHook = ''
24+
'';
25+
};
26+
});
27+
}

pkg/buildx/commands/bake.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ func RunBake(dockerCli command.Cli, in BakeOptions, validator BakeValidator, pri
112112
AdditionalTags: in.additionalTags,
113113
AdditionalCredentials: in.additionalCredentials,
114114
AddTargetSuffix: true,
115+
SaveTags: in.saveTags,
115116
}
116117
buildOpts = registry.WithDepotSave(buildOpts, opts)
117118
}
@@ -295,10 +296,11 @@ func BakeCmd() *cobra.Command {
295296
options.project,
296297
bakeOpts,
297298
helpers.UsingDepotFeatures{
298-
Push: options.exportPush,
299-
Load: options.exportLoad,
300-
Save: options.save,
301-
Lint: options.lint,
299+
Push: options.exportPush,
300+
Load: options.exportLoad,
301+
Save: options.save,
302+
SaveTags: options.saveTags,
303+
Lint: options.lint,
302304
},
303305
)
304306
build, err := helpers.BeginBuild(context.Background(), req, token)

pkg/buildx/commands/build.go

+9-4
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ type DepotOptions struct {
120120
build *depotbuild.Build
121121

122122
save bool
123+
saveTags []string
123124
additionalTags []string
124125
additionalCredentials []depotbuild.Credential
125126

@@ -240,6 +241,7 @@ func buildTargets(ctx context.Context, dockerCli command.Cli, nodes []builder.No
240241
BuildID: depotOpts.buildID,
241242
AdditionalTags: depotOpts.additionalTags,
242243
AdditionalCredentials: depotOpts.additionalCredentials,
244+
SaveTags: depotOpts.saveTags,
243245
}
244246
opts = registry.WithDepotSave(opts, saveOpts)
245247
}
@@ -647,10 +649,11 @@ func BuildCmd() *cobra.Command {
647649
options.project,
648650
validatedOpts,
649651
helpers.UsingDepotFeatures{
650-
Push: options.exportPush,
651-
Load: options.exportLoad,
652-
Save: options.save,
653-
Lint: options.lint,
652+
Push: options.exportPush,
653+
Load: options.exportLoad,
654+
Save: options.save,
655+
SaveTags: options.saveTags,
656+
Lint: options.lint,
654657
},
655658
)
656659

@@ -867,6 +870,8 @@ func depotAttestationFlags(_ *cobra.Command, options *DepotOptions, flags *pflag
867870

868871
func depotRegistryFlags(_ *cobra.Command, options *DepotOptions, flags *pflag.FlagSet) {
869872
flags.BoolVar(&options.save, "save", false, `Saves the build to the depot registry`)
873+
// TODO(billy): bad wording
874+
flags.StringArrayVar(&options.saveTags, "save-tags", []string{}, `Custom tags to save the image with`)
870875
}
871876

872877
func checkWarnedFlags(f *pflag.Flag) {

pkg/helpers/build.go

+10-6
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ func BeginBuild(ctx context.Context, req *cliv1.CreateBuildRequest, token string
3939
}
4040

4141
type UsingDepotFeatures struct {
42-
Push bool
43-
Load bool
44-
Save bool
45-
Lint bool
42+
Push bool
43+
Load bool
44+
Save bool
45+
SaveTags []string
46+
Lint bool
4647
}
4748

4849
func NewBuildRequest(project string, opts map[string]buildx.Options, features UsingDepotFeatures) *cliv1.CreateBuildRequest {
@@ -60,13 +61,14 @@ func NewBuildRequest(project string, opts map[string]buildx.Options, features Us
6061
if opts.Target != "" {
6162
target = &opts.Target
6263
}
64+
tags := append(opts.Tags, features.SaveTags...)
6365

6466
return &cliv1.CreateBuildRequest{
6567
ProjectId: &project,
6668
Options: []*cliv1.BuildOptions{
6769
{
6870
Command: cliv1.Command_COMMAND_BUILD,
69-
Tags: opts.Tags,
71+
Tags: tags,
7072
Outputs: outputs,
7173
Push: features.Push,
7274
Load: features.Load,
@@ -94,9 +96,11 @@ func NewBakeRequest(project string, opts map[string]buildx.Options, features Usi
9496
}
9597
}
9698

99+
tags := append(opts.Tags, features.SaveTags...)
100+
97101
targets = append(targets, &cliv1.BuildOptions{
98102
Command: cliv1.Command_COMMAND_BAKE,
99-
Tags: opts.Tags,
103+
Tags: tags,
100104
Outputs: outputs,
101105
Push: features.Push,
102106
Load: features.Load,

pkg/registry/cli.go

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ type SaveOptions struct {
1212
AdditionalCredentials []build.Credential
1313
ProjectID string
1414
BuildID string
15+
SaveTags []string
1516
// AddTargetSuffix adds the target suffix to the additional tags.
1617
// Useful for bake targets.
1718
AddTargetSuffix bool
@@ -62,6 +63,7 @@ func WithDepotSave(buildOpts map[string]buildx.Options, opts SaveOptions) map[st
6263
buildOpt.Tags = additionalTags
6364
} else {
6465
buildOpt.Tags = append(buildOpt.Tags, additionalTags...)
66+
buildOpt.Tags = append(buildOpt.Tags, opts.SaveTags...)
6567
}
6668
buildOpts[target] = buildOpt
6769
}

0 commit comments

Comments
 (0)