├── .firebaserc ├── .githooks └── pre-commit ├── .gitignore ├── DEVELOPMENT.md ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── api └── v1 │ ├── glooshot.proto │ └── solo-kit.json ├── changelog ├── v0.0.1 │ └── init.yaml ├── v0.0.2 │ ├── better-logging.yaml │ ├── bookstore-demo.yaml │ ├── cobra-cli.yaml │ ├── go-utils.yaml │ ├── helm-build.yaml │ ├── installation.yaml │ ├── new-apis.yaml │ ├── prepared-query.yaml │ ├── prometheus-checker.yaml │ ├── prometheus-helm-chart.yaml │ ├── refactor.yaml │ ├── starter.yaml │ ├── test.yaml │ ├── translator.yaml │ └── watch-crds.yaml ├── v0.0.3 │ └── helm.yaml ├── v0.0.4 │ └── tutorial-update.yaml └── v0.0.5 │ ├── record.yaml │ └── version.yaml ├── ci ├── check-code-and-docs-gen.sh ├── github_known_hosts ├── id_rsa.enc ├── pin_repos.go ├── prepare-test-cluster.sh └── upload_github_release_assets.go ├── cloudbuild-cache.yaml ├── cloudbuild.yaml ├── cmd ├── build │ └── main.go ├── cli │ └── main.go └── glooshot │ ├── Dockerfile │ └── main.go ├── docs └── docs │ └── v1 │ ├── github.com │ └── solo-io │ │ ├── gloo │ │ └── projects │ │ │ └── gloo │ │ │ └── api │ │ │ └── v1 │ │ │ ├── circuit_breaker.proto.sk.md │ │ │ ├── connection.proto.sk.md │ │ │ ├── extensions.proto.sk.md │ │ │ ├── load_balancer.proto.sk.md │ │ │ ├── plugins.proto.sk.md │ │ │ ├── plugins │ │ │ ├── aws │ │ │ │ └── aws.proto.sk.md │ │ │ ├── azure │ │ │ │ └── azure.proto.sk.md │ │ │ ├── consul │ │ │ │ └── consul.proto.sk.md │ │ │ ├── faultinjection │ │ │ │ └── fault.proto.sk.md │ │ │ ├── grpc │ │ │ │ └── grpc.proto.sk.md │ │ │ ├── grpc_web │ │ │ │ └── grpc_web.proto.sk.md │ │ │ ├── hcm │ │ │ │ └── hcm.proto.sk.md │ │ │ ├── kubernetes │ │ │ │ └── kubernetes.proto.sk.md │ │ │ ├── rest │ │ │ │ └── rest.proto.sk.md │ │ │ ├── retries │ │ │ │ └── retries.proto.sk.md │ │ │ ├── service_spec.proto.sk.md │ │ │ ├── static │ │ │ │ └── static.proto.sk.md │ │ │ ├── subset_spec.proto.sk.md │ │ │ └── transformation │ │ │ │ ├── parameters.proto.sk.md │ │ │ │ ├── prefix_rewrite.proto.sk.md │ │ │ │ └── transformation.proto.sk.md │ │ │ ├── proxy.proto.sk.md │ │ │ ├── ssl.proto.sk.md │ │ │ └── subset.proto.sk.md │ │ ├── glooshot │ │ └── api │ │ │ └── v1 │ │ │ └── glooshot.proto.sk.md │ │ ├── solo-kit │ │ └── api │ │ │ └── v1 │ │ │ ├── metadata.proto.sk.md │ │ │ ├── ref.proto.sk.md │ │ │ ├── solo-kit.proto.sk.md │ │ │ └── status.proto.sk.md │ │ └── supergloo │ │ └── api │ │ ├── external │ │ └── istio │ │ │ ├── authorization │ │ │ └── v1alpha1 │ │ │ │ └── policy.proto.sk.md │ │ │ ├── networking │ │ │ └── v1alpha3 │ │ │ │ └── destination_rule.proto.sk.md │ │ │ └── rbac │ │ │ └── v1alpha1 │ │ │ └── rbac.proto.sk.md │ │ └── v1 │ │ ├── ingress.proto.sk.md │ │ ├── install.proto.sk.md │ │ ├── mesh.proto.sk.md │ │ ├── routing.proto.sk.md │ │ ├── security.proto.sk.md │ │ └── selector.proto.sk.md │ ├── glooshot.solo.io.project.sk.md │ ├── gogoproto │ └── gogo.proto.sk.md │ ├── google │ └── protobuf │ │ ├── descriptor.proto.sk.md │ │ ├── duration.proto.sk.md │ │ ├── struct.proto.sk.md │ │ ├── timestamp.proto.sk.md │ │ └── wrappers.proto.sk.md │ ├── istio │ └── networking │ │ └── v1alpha3 │ │ └── virtual_service.proto.sk.md │ └── networking │ └── v1alpha3 │ ├── gateway.proto.sk.md │ └── sidecar.proto.sk.md ├── examples ├── bookinfo │ ├── README.md │ ├── bookinfo.yaml │ ├── demo.sh │ ├── fault-abort-ratings-repeat.yaml │ ├── fault-abort-ratings.yaml │ ├── ns-bookinfo │ │ └── fault-abort-ratings-timeout-bookinfo.yaml │ ├── old │ │ ├── fault-abort-ratings-metric-repeat.yaml │ │ ├── fault-abort-ratings-metric.yaml │ │ └── fault-abort-ratings-timeout.yaml │ └── overview.md └── crds │ ├── kubectl_abort.yaml │ ├── kubectl_delay.yaml │ └── kubectl_min.yaml ├── firebase.json ├── generate.go ├── img └── glooshot.png ├── install └── helm │ ├── glooshot │ ├── .gitignore │ ├── .helmignore │ ├── Chart-template.yaml │ ├── generate │ │ ├── chart.go │ │ ├── cmd │ │ │ └── generate.go │ │ ├── requirements.go │ │ └── values.go │ ├── requirements-template.yaml │ ├── templates │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── crds.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── serviceaccount.yaml │ └── values-template.yaml │ └── grafana │ └── values.yaml ├── pkg ├── api │ └── v1 │ │ ├── api_event_loop.sk.go │ │ ├── api_event_loop_test.go │ │ ├── api_simple_event_loop.sk.go │ │ ├── api_snapshot.sk.go │ │ ├── api_snapshot_emitter.sk.go │ │ ├── api_snapshot_emitter_test.go │ │ ├── api_snapshot_simple_emitter.sk.go │ │ ├── experiment.sk.go │ │ ├── experiment_client.sk.go │ │ ├── experiment_client_test.go │ │ ├── experiment_reconciler.sk.go │ │ ├── glooshot.pb.go │ │ ├── glooshot.solo.io_suite_test.go │ │ ├── mocks │ │ ├── api_snapshot_emitter.sk.go │ │ ├── api_snapshot_simple_emitter.sk.go │ │ ├── experiment_client.sk.go │ │ ├── experiment_reconciler.sk.go │ │ ├── report_client.sk.go │ │ └── report_reconciler.sk.go │ │ ├── report.sk.go │ │ ├── report_client.sk.go │ │ ├── report_client_test.go │ │ └── report_reconciler.sk.go ├── checker │ ├── check_experiment.go │ ├── check_experiment_test.go │ ├── checker_suite_test.go │ ├── failure_check_syncer.go │ ├── failure_check_syncer_test.go │ └── metrics │ │ └── istio_metrics.go ├── cli │ ├── app.go │ ├── cmd │ │ ├── create │ │ │ └── cmd.go │ │ ├── deleteexp │ │ │ └── cmd.go │ │ ├── get │ │ │ └── get.go │ │ ├── initexp │ │ │ └── init.go │ │ ├── register │ │ │ └── cmd.go │ │ └── run │ │ │ └── run_experiment.go │ ├── completion.go │ ├── config.go │ ├── context.go │ ├── controller │ │ └── delete.go │ ├── flagutils │ │ └── metadata.go │ ├── gsutil │ │ └── client.go │ ├── options │ │ └── options.go │ └── printer │ │ └── printers.go ├── promquery │ ├── client.go │ ├── client_test.go │ └── promquery_suite_test.go ├── resultreporter │ └── reporter.go ├── setup │ ├── options │ │ └── options.go │ ├── setup.go │ └── stats.go ├── starter │ ├── experiment_starter.go │ ├── experiment_starter_test.go │ └── starter_suite_test.go ├── translator │ ├── syncer.go │ ├── translator_suite_test.go │ └── translator_test.go ├── utils │ └── experiments.go └── version │ └── version.go ├── solo-project.yaml └── test ├── data └── generators.go ├── e2e ├── e2e_suite_test.go └── session_test.go ├── inputs └── experiment.go ├── install ├── cli_test.go ├── install_suite_test.go └── install_test.go ├── tutorial_bookinfo ├── README.md ├── setup_test.go ├── tutorial_bookinfo_suite_test.go ├── tutorial_bookinfo_test.go └── utils.go └── utils └── local.go /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/.firebaserc -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/glooshot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/api/v1/glooshot.proto -------------------------------------------------------------------------------- /api/v1/solo-kit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/api/v1/solo-kit.json -------------------------------------------------------------------------------- /changelog/v0.0.1/init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.1/init.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/better-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/better-logging.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/bookstore-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/bookstore-demo.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/cobra-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/cobra-cli.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/go-utils.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/go-utils.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/helm-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/helm-build.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/installation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/installation.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/new-apis.yaml: -------------------------------------------------------------------------------- 1 | changelog: 2 | - type: NON_USER_FACING 3 | description: Refine & comment API protos 4 | -------------------------------------------------------------------------------- /changelog/v0.0.2/prepared-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/prepared-query.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/prometheus-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/prometheus-checker.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/prometheus-helm-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/prometheus-helm-chart.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/refactor.yaml: -------------------------------------------------------------------------------- 1 | changelog: 2 | - type: NON_USER_FACING 3 | description: Some cleanup and refactoring. 4 | -------------------------------------------------------------------------------- /changelog/v0.0.2/starter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/starter.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/test.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/translator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/translator.yaml -------------------------------------------------------------------------------- /changelog/v0.0.2/watch-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.2/watch-crds.yaml -------------------------------------------------------------------------------- /changelog/v0.0.3/helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.3/helm.yaml -------------------------------------------------------------------------------- /changelog/v0.0.4/tutorial-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.4/tutorial-update.yaml -------------------------------------------------------------------------------- /changelog/v0.0.5/record.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.5/record.yaml -------------------------------------------------------------------------------- /changelog/v0.0.5/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/changelog/v0.0.5/version.yaml -------------------------------------------------------------------------------- /ci/check-code-and-docs-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/check-code-and-docs-gen.sh -------------------------------------------------------------------------------- /ci/github_known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/github_known_hosts -------------------------------------------------------------------------------- /ci/id_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/id_rsa.enc -------------------------------------------------------------------------------- /ci/pin_repos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/pin_repos.go -------------------------------------------------------------------------------- /ci/prepare-test-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/prepare-test-cluster.sh -------------------------------------------------------------------------------- /ci/upload_github_release_assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/ci/upload_github_release_assets.go -------------------------------------------------------------------------------- /cloudbuild-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cloudbuild-cache.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cmd/build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cmd/build/main.go -------------------------------------------------------------------------------- /cmd/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cmd/cli/main.go -------------------------------------------------------------------------------- /cmd/glooshot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cmd/glooshot/Dockerfile -------------------------------------------------------------------------------- /cmd/glooshot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/cmd/glooshot/main.go -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/aws/aws.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/aws/aws.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/azure/azure.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/azure/azure.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/consul/consul.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/consul/consul.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/faultinjection/fault.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/faultinjection/fault.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/grpc/grpc.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/grpc/grpc.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/grpc_web/grpc_web.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/grpc_web/grpc_web.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/hcm/hcm.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/hcm/hcm.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/kubernetes/kubernetes.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/kubernetes/kubernetes.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/rest/rest.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/rest/rest.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/retries/retries.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/retries/retries.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/service_spec.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/service_spec.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/static/static.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/static/static.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/subset_spec.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/subset_spec.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/parameters.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/parameters.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/prefix_rewrite.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/prefix_rewrite.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/transformation.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/plugins/transformation/transformation.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/ssl.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/ssl.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/glooshot/api/v1/glooshot.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/glooshot/api/v1/glooshot.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/authorization/v1alpha1/policy.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/authorization/v1alpha1/policy.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/networking/v1alpha3/destination_rule.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/networking/v1alpha3/destination_rule.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/rbac/v1alpha1/rbac.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/external/istio/rbac/v1alpha1/rbac.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/ingress.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/ingress.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/install.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/install.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/mesh.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/mesh.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/routing.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/routing.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/security.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/security.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/github.com/solo-io/supergloo/api/v1/selector.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/github.com/solo-io/supergloo/api/v1/selector.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/glooshot.solo.io.project.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/glooshot.solo.io.project.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/gogoproto/gogo.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/gogoproto/gogo.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/google/protobuf/descriptor.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/google/protobuf/descriptor.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/google/protobuf/duration.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/google/protobuf/duration.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/google/protobuf/struct.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/google/protobuf/struct.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/google/protobuf/timestamp.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/google/protobuf/timestamp.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/google/protobuf/wrappers.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/google/protobuf/wrappers.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/istio/networking/v1alpha3/virtual_service.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/istio/networking/v1alpha3/virtual_service.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/networking/v1alpha3/gateway.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/networking/v1alpha3/gateway.proto.sk.md -------------------------------------------------------------------------------- /docs/docs/v1/networking/v1alpha3/sidecar.proto.sk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/docs/docs/v1/networking/v1alpha3/sidecar.proto.sk.md -------------------------------------------------------------------------------- /examples/bookinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/README.md -------------------------------------------------------------------------------- /examples/bookinfo/bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/bookinfo.yaml -------------------------------------------------------------------------------- /examples/bookinfo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/demo.sh -------------------------------------------------------------------------------- /examples/bookinfo/fault-abort-ratings-repeat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/fault-abort-ratings-repeat.yaml -------------------------------------------------------------------------------- /examples/bookinfo/fault-abort-ratings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/fault-abort-ratings.yaml -------------------------------------------------------------------------------- /examples/bookinfo/ns-bookinfo/fault-abort-ratings-timeout-bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/ns-bookinfo/fault-abort-ratings-timeout-bookinfo.yaml -------------------------------------------------------------------------------- /examples/bookinfo/old/fault-abort-ratings-metric-repeat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/old/fault-abort-ratings-metric-repeat.yaml -------------------------------------------------------------------------------- /examples/bookinfo/old/fault-abort-ratings-metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/old/fault-abort-ratings-metric.yaml -------------------------------------------------------------------------------- /examples/bookinfo/old/fault-abort-ratings-timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/old/fault-abort-ratings-timeout.yaml -------------------------------------------------------------------------------- /examples/bookinfo/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/bookinfo/overview.md -------------------------------------------------------------------------------- /examples/crds/kubectl_abort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/crds/kubectl_abort.yaml -------------------------------------------------------------------------------- /examples/crds/kubectl_delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/crds/kubectl_delay.yaml -------------------------------------------------------------------------------- /examples/crds/kubectl_min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/examples/crds/kubectl_min.yaml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/firebase.json -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/generate.go -------------------------------------------------------------------------------- /img/glooshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/img/glooshot.png -------------------------------------------------------------------------------- /install/helm/glooshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/.gitignore -------------------------------------------------------------------------------- /install/helm/glooshot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/.helmignore -------------------------------------------------------------------------------- /install/helm/glooshot/Chart-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/Chart-template.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/generate/chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/generate/chart.go -------------------------------------------------------------------------------- /install/helm/glooshot/generate/cmd/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/generate/cmd/generate.go -------------------------------------------------------------------------------- /install/helm/glooshot/generate/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/generate/requirements.go -------------------------------------------------------------------------------- /install/helm/glooshot/generate/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/generate/values.go -------------------------------------------------------------------------------- /install/helm/glooshot/requirements-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/requirements-template.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/clusterrole.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/configmap.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/crds.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/deployment.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/namespace.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/role.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/rolebinding.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /install/helm/glooshot/values-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/glooshot/values-template.yaml -------------------------------------------------------------------------------- /install/helm/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/install/helm/grafana/values.yaml -------------------------------------------------------------------------------- /pkg/api/v1/api_event_loop.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_event_loop.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/api_event_loop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_event_loop_test.go -------------------------------------------------------------------------------- /pkg/api/v1/api_simple_event_loop.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_simple_event_loop.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/api_snapshot.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_snapshot.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/api_snapshot_emitter.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_snapshot_emitter.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/api_snapshot_emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_snapshot_emitter_test.go -------------------------------------------------------------------------------- /pkg/api/v1/api_snapshot_simple_emitter.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/api_snapshot_simple_emitter.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/experiment.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/experiment.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/experiment_client.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/experiment_client.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/experiment_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/experiment_client_test.go -------------------------------------------------------------------------------- /pkg/api/v1/experiment_reconciler.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/experiment_reconciler.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/glooshot.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/glooshot.pb.go -------------------------------------------------------------------------------- /pkg/api/v1/glooshot.solo.io_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/glooshot.solo.io_suite_test.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/api_snapshot_emitter.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/api_snapshot_emitter.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/api_snapshot_simple_emitter.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/api_snapshot_simple_emitter.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/experiment_client.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/experiment_client.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/experiment_reconciler.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/experiment_reconciler.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/report_client.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/report_client.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/mocks/report_reconciler.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/mocks/report_reconciler.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/report.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/report.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/report_client.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/report_client.sk.go -------------------------------------------------------------------------------- /pkg/api/v1/report_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/report_client_test.go -------------------------------------------------------------------------------- /pkg/api/v1/report_reconciler.sk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/api/v1/report_reconciler.sk.go -------------------------------------------------------------------------------- /pkg/checker/check_experiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/check_experiment.go -------------------------------------------------------------------------------- /pkg/checker/check_experiment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/check_experiment_test.go -------------------------------------------------------------------------------- /pkg/checker/checker_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/checker_suite_test.go -------------------------------------------------------------------------------- /pkg/checker/failure_check_syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/failure_check_syncer.go -------------------------------------------------------------------------------- /pkg/checker/failure_check_syncer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/failure_check_syncer_test.go -------------------------------------------------------------------------------- /pkg/checker/metrics/istio_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/checker/metrics/istio_metrics.go -------------------------------------------------------------------------------- /pkg/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/app.go -------------------------------------------------------------------------------- /pkg/cli/cmd/create/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/create/cmd.go -------------------------------------------------------------------------------- /pkg/cli/cmd/deleteexp/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/deleteexp/cmd.go -------------------------------------------------------------------------------- /pkg/cli/cmd/get/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/get/get.go -------------------------------------------------------------------------------- /pkg/cli/cmd/initexp/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/initexp/init.go -------------------------------------------------------------------------------- /pkg/cli/cmd/register/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/register/cmd.go -------------------------------------------------------------------------------- /pkg/cli/cmd/run/run_experiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/cmd/run/run_experiment.go -------------------------------------------------------------------------------- /pkg/cli/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/completion.go -------------------------------------------------------------------------------- /pkg/cli/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/config.go -------------------------------------------------------------------------------- /pkg/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/context.go -------------------------------------------------------------------------------- /pkg/cli/controller/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/controller/delete.go -------------------------------------------------------------------------------- /pkg/cli/flagutils/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/flagutils/metadata.go -------------------------------------------------------------------------------- /pkg/cli/gsutil/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/gsutil/client.go -------------------------------------------------------------------------------- /pkg/cli/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/options/options.go -------------------------------------------------------------------------------- /pkg/cli/printer/printers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/cli/printer/printers.go -------------------------------------------------------------------------------- /pkg/promquery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/promquery/client.go -------------------------------------------------------------------------------- /pkg/promquery/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/promquery/client_test.go -------------------------------------------------------------------------------- /pkg/promquery/promquery_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/promquery/promquery_suite_test.go -------------------------------------------------------------------------------- /pkg/resultreporter/reporter.go: -------------------------------------------------------------------------------- 1 | package resultreporter 2 | -------------------------------------------------------------------------------- /pkg/setup/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/setup/options/options.go -------------------------------------------------------------------------------- /pkg/setup/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/setup/setup.go -------------------------------------------------------------------------------- /pkg/setup/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/setup/stats.go -------------------------------------------------------------------------------- /pkg/starter/experiment_starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/starter/experiment_starter.go -------------------------------------------------------------------------------- /pkg/starter/experiment_starter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/starter/experiment_starter_test.go -------------------------------------------------------------------------------- /pkg/starter/starter_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/starter/starter_suite_test.go -------------------------------------------------------------------------------- /pkg/translator/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/translator/syncer.go -------------------------------------------------------------------------------- /pkg/translator/translator_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/translator/translator_suite_test.go -------------------------------------------------------------------------------- /pkg/translator/translator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/translator/translator_test.go -------------------------------------------------------------------------------- /pkg/utils/experiments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/utils/experiments.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /solo-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/solo-project.yaml -------------------------------------------------------------------------------- /test/data/generators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/data/generators.go -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/e2e/session_test.go -------------------------------------------------------------------------------- /test/inputs/experiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/inputs/experiment.go -------------------------------------------------------------------------------- /test/install/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/install/cli_test.go -------------------------------------------------------------------------------- /test/install/install_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/install/install_suite_test.go -------------------------------------------------------------------------------- /test/install/install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/install/install_test.go -------------------------------------------------------------------------------- /test/tutorial_bookinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/tutorial_bookinfo/README.md -------------------------------------------------------------------------------- /test/tutorial_bookinfo/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/tutorial_bookinfo/setup_test.go -------------------------------------------------------------------------------- /test/tutorial_bookinfo/tutorial_bookinfo_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/tutorial_bookinfo/tutorial_bookinfo_suite_test.go -------------------------------------------------------------------------------- /test/tutorial_bookinfo/tutorial_bookinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/tutorial_bookinfo/tutorial_bookinfo_test.go -------------------------------------------------------------------------------- /test/tutorial_bookinfo/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/tutorial_bookinfo/utils.go -------------------------------------------------------------------------------- /test/utils/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solo-io/glooshot/HEAD/test/utils/local.go --------------------------------------------------------------------------------