Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dev-tools/mage/dockervariants.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const (
ubi = "ubi"
wolfi = "wolfi"
complete = "complete"
wolfiComplete = "wolfi-complete"
completeWolfi = "complete-wolfi"
cloud = "cloud"
)

Expand Down Expand Up @@ -45,7 +45,7 @@ func (typ DockerVariant) String() string {
case Wolfi:
return wolfi
case WolfiComplete:
return wolfiComplete
return completeWolfi
case Complete:
return complete
case Cloud:
Expand All @@ -71,7 +71,7 @@ func (typ *DockerVariant) UnmarshalText(text []byte) error {
*typ = UBI
case wolfi:
*typ = Wolfi
case wolfiComplete:
case completeWolfi:
*typ = WolfiComplete
case complete:
*typ = Complete
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/packaging/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ shared:

- &agent_docker_wolfi_complete_spec
<<: *agent_docker_spec
docker_variant: 'wolfi-complete'
docker_variant: 'complete-wolfi'

# Deb/RPM spec for community beats.
- &deb_rpm_spec
Expand Down