├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── ci.md │ ├── documentation.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── dependabot.yml ├── label-commenter-config.yml ├── labeler.yml ├── readme │ └── images │ │ ├── community.svg │ │ ├── layer5-community-sign.png │ │ ├── meshery-logo-dark-text-side.svg │ │ ├── meshery-logo-light-text-side.svg │ │ ├── meshsync.svg │ │ ├── slack-128.png │ │ └── slack-dark-128.png ├── release-drafter.yml ├── security-insights.yml ├── stale.yml ├── welcome │ ├── meshery_dark.png │ └── meshery_light.png └── workflows │ ├── build-and-release.yml │ ├── ci.yml │ ├── error-codes-updater.yml │ ├── integration-tests-ci.yml │ ├── label-commenter.yml │ ├── labeler.yml │ ├── multi-platform.yml │ ├── newcomers-alert.yml │ ├── release-drafter.yml │ └── slack.yml ├── .gitignore ├── .golangci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING-gitflow.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── all-certmgs.yaml ├── cert-manager-cainjector-c7d4dbdd9-jlstt.yaml ├── cert-manager-webhook-847d7676c9-89rtq.yaml ├── config.yaml ├── docs ├── design-spec_embedded-meshsync.md └── design-spec_meshsync-infrastructure-synchronization.md ├── go.mod ├── go.sum ├── helpers └── component_info.json ├── install ├── Makefile.core.mk └── Makefile.show-help.mk ├── integration-tests ├── .gitignore ├── infrastructure │ ├── docker-compose.yaml │ ├── meshsync.yaml │ ├── setup.sh │ └── test-deployment.yaml ├── integration_test.go ├── meshsync_as_binary_with_k8s_cluster_integration_test.go ├── meshsync_as_binary_with_k8s_cluster_test_cases_mode_a_broker_test.go ├── meshsync_as_binary_with_k8s_cluster_test_cases_mode_b_file_test.go ├── meshsync_as_library_with_k8s_cluster_custom_broker_integration_test.go ├── meshsync_as_library_with_k8s_cluster_custom_broker_test_cases_test.go └── unmarshal_object_test.go ├── internal ├── channels │ ├── broker.go │ ├── channel.go │ ├── generic.go │ └── system.go ├── config │ ├── config.go │ ├── config_local.go │ ├── crd_config.go │ ├── crd_config_test.go │ ├── default_config.go │ ├── error.go │ ├── pluralise.go │ ├── pluralise_test.go │ └── types.go ├── file │ ├── file.go │ ├── writer.go │ └── yaml_writer.go ├── output │ ├── broker.go │ ├── composite.go │ ├── file.go │ ├── inmemory_deduplicator.go │ ├── inmemory_deduplicator_streaming.go │ ├── inmemory_deduplicator_streaming_test.go │ ├── inmemory_deduplicator_test.go │ ├── output.go │ └── processor.go └── pipeline │ ├── error.go │ ├── handlers.go │ ├── pipeline.go │ └── step.go ├── main.go ├── meshsync ├── discovery.go ├── error.go ├── exec.go ├── handlers.go ├── handlers_test.go ├── logstream.go └── meshsync.go ├── pkg ├── lib │ └── meshsync │ │ ├── meshsync.go │ │ └── options.go ├── model │ ├── exec.go │ ├── log.go │ ├── model.go │ ├── model_converter.go │ ├── preprocessor.go │ └── process.go └── utils │ └── utils.go └── scripts ├── go-mod-tidy.sh └── go-test.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/readme/images/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/community.svg -------------------------------------------------------------------------------- /.github/readme/images/layer5-community-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/layer5-community-sign.png -------------------------------------------------------------------------------- /.github/readme/images/meshery-logo-dark-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/meshery-logo-dark-text-side.svg -------------------------------------------------------------------------------- /.github/readme/images/meshery-logo-light-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/meshery-logo-light-text-side.svg -------------------------------------------------------------------------------- /.github/readme/images/meshsync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/meshsync.svg -------------------------------------------------------------------------------- /.github/readme/images/slack-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/slack-128.png -------------------------------------------------------------------------------- /.github/readme/images/slack-dark-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/readme/images/slack-dark-128.png -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/security-insights.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/security-insights.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/welcome/meshery_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/welcome/meshery_dark.png -------------------------------------------------------------------------------- /.github/welcome/meshery_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/welcome/meshery_light.png -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/error-codes-updater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/error-codes-updater.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/integration-tests-ci.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/multi-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/multi-platform.yml -------------------------------------------------------------------------------- /.github/workflows/newcomers-alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/newcomers-alert.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.github/workflows/slack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING-gitflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/CONTRIBUTING-gitflow.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/README.md -------------------------------------------------------------------------------- /all-certmgs.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cert-manager-cainjector-c7d4dbdd9-jlstt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/cert-manager-cainjector-c7d4dbdd9-jlstt.yaml -------------------------------------------------------------------------------- /cert-manager-webhook-847d7676c9-89rtq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/cert-manager-webhook-847d7676c9-89rtq.yaml -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/config.yaml -------------------------------------------------------------------------------- /docs/design-spec_embedded-meshsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/docs/design-spec_embedded-meshsync.md -------------------------------------------------------------------------------- /docs/design-spec_meshsync-infrastructure-synchronization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/docs/design-spec_meshsync-infrastructure-synchronization.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/go.sum -------------------------------------------------------------------------------- /helpers/component_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/helpers/component_info.json -------------------------------------------------------------------------------- /install/Makefile.core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/install/Makefile.core.mk -------------------------------------------------------------------------------- /install/Makefile.show-help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/install/Makefile.show-help.mk -------------------------------------------------------------------------------- /integration-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *meshsync-output.txt -------------------------------------------------------------------------------- /integration-tests/infrastructure/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/infrastructure/docker-compose.yaml -------------------------------------------------------------------------------- /integration-tests/infrastructure/meshsync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/infrastructure/meshsync.yaml -------------------------------------------------------------------------------- /integration-tests/infrastructure/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/infrastructure/setup.sh -------------------------------------------------------------------------------- /integration-tests/infrastructure/test-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/infrastructure/test-deployment.yaml -------------------------------------------------------------------------------- /integration-tests/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/integration_test.go -------------------------------------------------------------------------------- /integration-tests/meshsync_as_binary_with_k8s_cluster_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/meshsync_as_binary_with_k8s_cluster_integration_test.go -------------------------------------------------------------------------------- /integration-tests/meshsync_as_binary_with_k8s_cluster_test_cases_mode_a_broker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/meshsync_as_binary_with_k8s_cluster_test_cases_mode_a_broker_test.go -------------------------------------------------------------------------------- /integration-tests/meshsync_as_binary_with_k8s_cluster_test_cases_mode_b_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/meshsync_as_binary_with_k8s_cluster_test_cases_mode_b_file_test.go -------------------------------------------------------------------------------- /integration-tests/meshsync_as_library_with_k8s_cluster_custom_broker_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/meshsync_as_library_with_k8s_cluster_custom_broker_integration_test.go -------------------------------------------------------------------------------- /integration-tests/meshsync_as_library_with_k8s_cluster_custom_broker_test_cases_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/meshsync_as_library_with_k8s_cluster_custom_broker_test_cases_test.go -------------------------------------------------------------------------------- /integration-tests/unmarshal_object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/integration-tests/unmarshal_object_test.go -------------------------------------------------------------------------------- /internal/channels/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/channels/broker.go -------------------------------------------------------------------------------- /internal/channels/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/channels/channel.go -------------------------------------------------------------------------------- /internal/channels/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/channels/generic.go -------------------------------------------------------------------------------- /internal/channels/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/channels/system.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/config_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/config_local.go -------------------------------------------------------------------------------- /internal/config/crd_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/crd_config.go -------------------------------------------------------------------------------- /internal/config/crd_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/crd_config_test.go -------------------------------------------------------------------------------- /internal/config/default_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/default_config.go -------------------------------------------------------------------------------- /internal/config/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/error.go -------------------------------------------------------------------------------- /internal/config/pluralise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/pluralise.go -------------------------------------------------------------------------------- /internal/config/pluralise_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/pluralise_test.go -------------------------------------------------------------------------------- /internal/config/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/config/types.go -------------------------------------------------------------------------------- /internal/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/file/file.go -------------------------------------------------------------------------------- /internal/file/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/file/writer.go -------------------------------------------------------------------------------- /internal/file/yaml_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/file/yaml_writer.go -------------------------------------------------------------------------------- /internal/output/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/broker.go -------------------------------------------------------------------------------- /internal/output/composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/composite.go -------------------------------------------------------------------------------- /internal/output/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/file.go -------------------------------------------------------------------------------- /internal/output/inmemory_deduplicator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/inmemory_deduplicator.go -------------------------------------------------------------------------------- /internal/output/inmemory_deduplicator_streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/inmemory_deduplicator_streaming.go -------------------------------------------------------------------------------- /internal/output/inmemory_deduplicator_streaming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/inmemory_deduplicator_streaming_test.go -------------------------------------------------------------------------------- /internal/output/inmemory_deduplicator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/inmemory_deduplicator_test.go -------------------------------------------------------------------------------- /internal/output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/output.go -------------------------------------------------------------------------------- /internal/output/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/output/processor.go -------------------------------------------------------------------------------- /internal/pipeline/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/pipeline/error.go -------------------------------------------------------------------------------- /internal/pipeline/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/pipeline/handlers.go -------------------------------------------------------------------------------- /internal/pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/pipeline/pipeline.go -------------------------------------------------------------------------------- /internal/pipeline/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/internal/pipeline/step.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/main.go -------------------------------------------------------------------------------- /meshsync/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/discovery.go -------------------------------------------------------------------------------- /meshsync/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/error.go -------------------------------------------------------------------------------- /meshsync/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/exec.go -------------------------------------------------------------------------------- /meshsync/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/handlers.go -------------------------------------------------------------------------------- /meshsync/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/handlers_test.go -------------------------------------------------------------------------------- /meshsync/logstream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/logstream.go -------------------------------------------------------------------------------- /meshsync/meshsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/meshsync/meshsync.go -------------------------------------------------------------------------------- /pkg/lib/meshsync/meshsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/lib/meshsync/meshsync.go -------------------------------------------------------------------------------- /pkg/lib/meshsync/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/lib/meshsync/options.go -------------------------------------------------------------------------------- /pkg/model/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/exec.go -------------------------------------------------------------------------------- /pkg/model/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/log.go -------------------------------------------------------------------------------- /pkg/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/model.go -------------------------------------------------------------------------------- /pkg/model/model_converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/model_converter.go -------------------------------------------------------------------------------- /pkg/model/preprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/preprocessor.go -------------------------------------------------------------------------------- /pkg/model/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/model/process.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /scripts/go-mod-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/scripts/go-mod-tidy.sh -------------------------------------------------------------------------------- /scripts/go-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meshery/meshsync/HEAD/scripts/go-test.sh --------------------------------------------------------------------------------