Skip to content

Commit

Permalink
Rename elastic-agent-wolfi-complete->elastic-agent-complete-wolfi (#5557
Browse files Browse the repository at this point in the history
)

To follow the release process convention.
  • Loading branch information
rdner authored Sep 19, 2024
1 parent 5b94604 commit 49a1f01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 49a1f01

Please sign in to comment.