diff --git a/bin/helper/helper.go b/bin/helper/helper.go index 3958123..96bec66 100644 --- a/bin/helper/helper.go +++ b/bin/helper/helper.go @@ -11,12 +11,6 @@ import ( // _ "k8s.io/client-go/plugin/pkg/client/auth/oidc" // _ "k8s.io/client-go/plugin/pkg/client/auth/openstack" - containerKill "github.com/litmuschaos/litmus-go/chaoslib/litmus/container-kill/helper" - diskFill "github.com/litmuschaos/litmus-go/chaoslib/litmus/disk-fill/helper" - httpChaos "github.com/litmuschaos/litmus-go/chaoslib/litmus/http-chaos/helper" - networkChaos "github.com/litmuschaos/litmus-go/chaoslib/litmus/network-chaos/helper" - dnsChaos "github.com/litmuschaos/litmus-go/chaoslib/litmus/pod-dns-chaos/helper" - stressChaos "github.com/litmuschaos/litmus-go/chaoslib/litmus/stress-chaos/helper" "github.com/litmuschaos/litmus-go/pkg/clients" "github.com/litmuschaos/litmus-go/pkg/log" @@ -49,18 +43,6 @@ func main() { // invoke the corresponding helper based on the the (-name) flag switch *helperName { - case "container-kill": - containerKill.Helper(clients) - case "disk-fill": - diskFill.Helper(clients) - case "dns-chaos": - dnsChaos.Helper(clients) - case "stress-chaos": - stressChaos.Helper(clients) - case "network-chaos": - networkChaos.Helper(clients) - case "http-chaos": - httpChaos.Helper(clients) default: log.Errorf("Unsupported -name %v, please provide the correct value of -name args", *helperName)