Skip to content

Commit

Permalink
chore: rename some network actions to explicitly contain the term "ou…
Browse files Browse the repository at this point in the history
…tgoing"
  • Loading branch information
ReuDa committed Jan 17, 2025
1 parent 2eca0cc commit f345584
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.2.27 (Next Release)

- Rename some network actions to explicitly contain the term "outgoing"

## v1.2.26

- fix: improve container id to be unique by adding the execution id
Expand Down
4 changes: 2 additions & 2 deletions exthost/action_network_bandwidth.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ func NewNetworkLimitBandwidthContainerAction(r runc.Runc) action_kit_sdk.Action[
func getNetworkLimitBandwidthDescription() action_kit_api.ActionDescription {
return action_kit_api.ActionDescription{
Id: fmt.Sprintf("%s.network_bandwidth", BaseActionID),
Label: "Limit Bandwidth",
Description: "Limit available network bandwidth.",
Label: "Limit Outgoing Bandwidth",
Description: "Limit available egress network bandwidth.",
Version: extbuild.GetSemverVersionStringOrUnknown(),
Icon: extutil.Ptr(bandwidthIcon),
TargetSelection: &action_kit_api.TargetSelection{
Expand Down
4 changes: 2 additions & 2 deletions exthost/action_network_corrupt.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ func NewNetworkCorruptPackagesContainerAction(r runc.Runc) action_kit_sdk.Action
func getNetworkCorruptPackagesDescription() action_kit_api.ActionDescription {
return action_kit_api.ActionDescription{
Id: fmt.Sprintf("%s.network_package_corruption", BaseActionID),
Label: "Package Corruption",
Description: "Inject corrupt packets by introducing single bit error at a random offset into network traffic.",
Label: "Corrupt Outgoing Packages",
Description: "Inject corrupt packets by introducing single bit error at a random offset into egress network traffic.",
Version: extbuild.GetSemverVersionStringOrUnknown(),
Icon: extutil.Ptr(corruptIcon),
TargetSelection: &action_kit_api.TargetSelection{
Expand Down
2 changes: 1 addition & 1 deletion exthost/action_network_delay.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func NewNetworkDelayContainerAction(r runc.Runc) action_kit_sdk.Action[NetworkAc
func getNetworkDelayDescription() action_kit_api.ActionDescription {
return action_kit_api.ActionDescription{
Id: fmt.Sprintf("%s.network_delay", BaseActionID),
Label: "Delay Traffic",
Label: "Delay Outgoing Traffic",
Description: "Inject latency into egress network traffic.",
Version: extbuild.GetSemverVersionStringOrUnknown(),
Icon: extutil.Ptr(delayIcon),
Expand Down

0 comments on commit f345584

Please sign in to comment.