├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── feature_request.yaml │ └── trivy-results.tpl ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── daily-vul-scan.yml ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── Dockerfile.dev ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── api └── v1alpha1 │ ├── gatling_types.go │ ├── groupversion_info.go │ └── zz_generated.deepcopy.go ├── assets ├── gatling-html-report.png ├── gatling-operator-arch.svg ├── gatling-operator-arch.xml ├── gatling-operator-pod-before-v0.8.1.svg ├── gatling-operator-pod.svg ├── gatling-operator-pod.xml └── slack-notification.png ├── config ├── crd-ref-docs │ ├── config.yaml │ └── templates │ │ └── markdown │ │ ├── gv_details.tpl │ │ ├── gv_list.tpl │ │ ├── type.tpl │ │ └── type_members.tpl ├── crd │ ├── bases │ │ └── gatling-operator.tech.zozo.com_gatlings.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_gatlings.yaml │ │ └── webhook_in_gatlings.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ └── manager_config_patch.yaml ├── kind │ └── cluster.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── gatling_editor_role.yaml │ ├── gatling_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml └── samples │ ├── gatling-notification-slack-secrets.yaml │ ├── gatling-operator_v1alpha1_gatling01.yaml │ ├── gatling-operator_v1alpha1_gatling02.yaml │ ├── gatling-operator_v1alpha1_gatling03.yaml │ ├── gatling-worker-service-account.yaml │ └── kustomization.yaml ├── controllers ├── gatling_controller.go ├── gatling_controller_test.go └── suite_test.go ├── docs ├── api.md ├── architecture.md ├── build-guide.md ├── quickstart-guide.md └── user-guide.md ├── gatling ├── Dockerfile ├── conf │ ├── gatling.conf │ └── logback.xml ├── sample │ └── resources │ │ ├── goods_ids.csv │ │ └── user_ids.csv └── user-files │ ├── resources │ └── myresources.csv │ └── simulations │ ├── MyBasicSimulation.scala │ └── PersistentVolumeSampleSimulation.scala ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── main.go └── pkg ├── cloudstorages ├── azure.go ├── azure_test.go ├── cloudstorage.go ├── cloudstorage_test.go ├── gcp.go ├── gcp_test.go ├── s3.go ├── s3_test.go └── suite_test.go ├── commands ├── commands.go ├── commands_test.go └── suite_test.go ├── notificationservices ├── notificationservice.go ├── notificationservice_test.go ├── slack.go └── suite_test.go └── utils └── utils.go /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/trivy-results.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/ISSUE_TEMPLATE/trivy-results.tpl -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/daily-vul-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.github/workflows/daily-vul-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1alpha1/gatling_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/api/v1alpha1/gatling_types.go -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /assets/gatling-html-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-html-report.png -------------------------------------------------------------------------------- /assets/gatling-operator-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-operator-arch.svg -------------------------------------------------------------------------------- /assets/gatling-operator-arch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-operator-arch.xml -------------------------------------------------------------------------------- /assets/gatling-operator-pod-before-v0.8.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-operator-pod-before-v0.8.1.svg -------------------------------------------------------------------------------- /assets/gatling-operator-pod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-operator-pod.svg -------------------------------------------------------------------------------- /assets/gatling-operator-pod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/gatling-operator-pod.xml -------------------------------------------------------------------------------- /assets/slack-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/assets/slack-notification.png -------------------------------------------------------------------------------- /config/crd-ref-docs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd-ref-docs/config.yaml -------------------------------------------------------------------------------- /config/crd-ref-docs/templates/markdown/gv_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd-ref-docs/templates/markdown/gv_details.tpl -------------------------------------------------------------------------------- /config/crd-ref-docs/templates/markdown/gv_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd-ref-docs/templates/markdown/gv_list.tpl -------------------------------------------------------------------------------- /config/crd-ref-docs/templates/markdown/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd-ref-docs/templates/markdown/type.tpl -------------------------------------------------------------------------------- /config/crd-ref-docs/templates/markdown/type_members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd-ref-docs/templates/markdown/type_members.tpl -------------------------------------------------------------------------------- /config/crd/bases/gatling-operator.tech.zozo.com_gatlings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd/bases/gatling-operator.tech.zozo.com_gatlings.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_gatlings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd/patches/cainjection_in_gatlings.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_gatlings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/crd/patches/webhook_in_gatlings.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/kind/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/kind/cluster.yaml -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/gatling_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/gatling_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/gatling_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/gatling_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/gatling-notification-slack-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/gatling-notification-slack-secrets.yaml -------------------------------------------------------------------------------- /config/samples/gatling-operator_v1alpha1_gatling01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/gatling-operator_v1alpha1_gatling01.yaml -------------------------------------------------------------------------------- /config/samples/gatling-operator_v1alpha1_gatling02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/gatling-operator_v1alpha1_gatling02.yaml -------------------------------------------------------------------------------- /config/samples/gatling-operator_v1alpha1_gatling03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/gatling-operator_v1alpha1_gatling03.yaml -------------------------------------------------------------------------------- /config/samples/gatling-worker-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/gatling-worker-service-account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /controllers/gatling_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/controllers/gatling_controller.go -------------------------------------------------------------------------------- /controllers/gatling_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/controllers/gatling_controller_test.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/build-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/docs/build-guide.md -------------------------------------------------------------------------------- /docs/quickstart-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/docs/quickstart-guide.md -------------------------------------------------------------------------------- /docs/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/docs/user-guide.md -------------------------------------------------------------------------------- /gatling/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/Dockerfile -------------------------------------------------------------------------------- /gatling/conf/gatling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/conf/gatling.conf -------------------------------------------------------------------------------- /gatling/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/conf/logback.xml -------------------------------------------------------------------------------- /gatling/sample/resources/goods_ids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/sample/resources/goods_ids.csv -------------------------------------------------------------------------------- /gatling/sample/resources/user_ids.csv: -------------------------------------------------------------------------------- 1 | user_id 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | -------------------------------------------------------------------------------- /gatling/user-files/resources/myresources.csv: -------------------------------------------------------------------------------- 1 | alphabet 2 | "a" 3 | "b" 4 | "c" 5 | -------------------------------------------------------------------------------- /gatling/user-files/simulations/MyBasicSimulation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/user-files/simulations/MyBasicSimulation.scala -------------------------------------------------------------------------------- /gatling/user-files/simulations/PersistentVolumeSampleSimulation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/gatling/user-files/simulations/PersistentVolumeSampleSimulation.scala -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/main.go -------------------------------------------------------------------------------- /pkg/cloudstorages/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/azure.go -------------------------------------------------------------------------------- /pkg/cloudstorages/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/azure_test.go -------------------------------------------------------------------------------- /pkg/cloudstorages/cloudstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/cloudstorage.go -------------------------------------------------------------------------------- /pkg/cloudstorages/cloudstorage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/cloudstorage_test.go -------------------------------------------------------------------------------- /pkg/cloudstorages/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/gcp.go -------------------------------------------------------------------------------- /pkg/cloudstorages/gcp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/gcp_test.go -------------------------------------------------------------------------------- /pkg/cloudstorages/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/s3.go -------------------------------------------------------------------------------- /pkg/cloudstorages/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/s3_test.go -------------------------------------------------------------------------------- /pkg/cloudstorages/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/cloudstorages/suite_test.go -------------------------------------------------------------------------------- /pkg/commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/commands/commands.go -------------------------------------------------------------------------------- /pkg/commands/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/commands/commands_test.go -------------------------------------------------------------------------------- /pkg/commands/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/commands/suite_test.go -------------------------------------------------------------------------------- /pkg/notificationservices/notificationservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/notificationservices/notificationservice.go -------------------------------------------------------------------------------- /pkg/notificationservices/notificationservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/notificationservices/notificationservice_test.go -------------------------------------------------------------------------------- /pkg/notificationservices/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/notificationservices/slack.go -------------------------------------------------------------------------------- /pkg/notificationservices/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/notificationservices/suite_test.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st-tech/gatling-operator/HEAD/pkg/utils/utils.go --------------------------------------------------------------------------------