├── .github └── workflows │ ├── boilerplate-automation.yml │ ├── master.yml │ ├── pull_request.yml │ └── upgrade_automation.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── boilerplate ├── flyte │ ├── code_of_conduct │ │ ├── CODE_OF_CONDUCT.md │ │ ├── README.rst │ │ └── update.sh │ ├── docker_build │ │ ├── Makefile │ │ ├── Readme.rst │ │ └── docker_build.sh │ ├── golang_support_tools │ │ ├── go.mod │ │ ├── go.sum │ │ └── tools.go │ ├── golang_test_targets │ │ ├── Makefile │ │ ├── Readme.rst │ │ ├── download_tooling.sh │ │ ├── go-gen.sh │ │ └── goimports │ └── pull_request_template │ │ ├── Readme.rst │ │ ├── pull_request_template.md │ │ └── update.sh ├── update.cfg └── update.sh ├── go.mod ├── go.sum ├── go └── tasks │ ├── aws │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── config_flags.go │ └── config_flags_test.go │ ├── config │ └── config.go │ ├── config_load_test.go │ ├── errors │ └── errors.go │ ├── logs │ ├── config.go │ ├── logconfig_flags.go │ ├── logconfig_flags_test.go │ ├── logging_utils.go │ └── logging_utils_test.go │ ├── pluginmachinery │ ├── bundle │ │ ├── fail_fast.go │ │ └── fail_fast_test.go │ ├── catalog │ │ ├── async_client.go │ │ ├── async_client_impl.go │ │ ├── async_client_impl_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── config.go │ │ ├── config_flags.go │ │ ├── config_flags_test.go │ │ ├── hashing.go │ │ ├── hashing_test.go │ │ ├── mocks │ │ │ ├── async_client.go │ │ │ ├── client.go │ │ │ ├── download_future.go │ │ │ ├── download_response.go │ │ │ ├── future.go │ │ │ └── upload_future.go │ │ ├── reader_processor.go │ │ ├── response.go │ │ └── writer_processor.go │ ├── core │ │ ├── allocationstatus_enumer.go │ │ ├── exec_context.go │ │ ├── exec_metadata.go │ │ ├── kube_client.go │ │ ├── mocks │ │ │ ├── events_recorder.go │ │ │ ├── fake_k8s_cache.go │ │ │ ├── fake_k8s_client.go │ │ │ ├── kube_client.go │ │ │ ├── plugin.go │ │ │ ├── plugin_state_reader.go │ │ │ ├── plugin_state_writer.go │ │ │ ├── resource_manager.go │ │ │ ├── resource_negotiator.go │ │ │ ├── resource_registrar.go │ │ │ ├── secret_manager.go │ │ │ ├── setup_context.go │ │ │ ├── task_execution_context.go │ │ │ ├── task_execution_id.go │ │ │ ├── task_execution_metadata.go │ │ │ ├── task_overrides.go │ │ │ ├── task_reader.go │ │ │ └── task_template_path.go │ │ ├── phase.go │ │ ├── phase_enumer.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── resource_manager.go │ │ ├── secret_manager.go │ │ ├── setup_context.go │ │ ├── state.go │ │ ├── template │ │ │ ├── template.go │ │ │ └── template_test.go │ │ ├── transition.go │ │ ├── transition_test.go │ │ └── transitiontype_enumer.go │ ├── encoding │ │ ├── encoder.go │ │ └── encoder_test.go │ ├── flytek8s │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── k8spluginconfig_flags.go │ │ │ └── k8spluginconfig_flags_test.go │ │ ├── container_helper.go │ │ ├── container_helper_test.go │ │ ├── copilot.go │ │ ├── copilot_test.go │ │ ├── k8s_resource_adds.go │ │ ├── k8s_resource_adds_test.go │ │ ├── pod_helper.go │ │ ├── pod_helper_test.go │ │ ├── pod_template_store.go │ │ ├── pod_template_store_test.go │ │ ├── resourcecustomizationmode_enumer.go │ │ ├── testdata │ │ │ ├── config.yaml │ │ │ └── imagepull-failurepod.json │ │ ├── utils.go │ │ └── utils_test.go │ ├── google │ │ ├── config.go │ │ ├── default_token_source_factory.go │ │ ├── gke_task_workload_identity_token_source_factory.go │ │ ├── gke_task_workload_identity_token_source_factory_test.go │ │ └── token_source_factory.go │ ├── internal │ │ └── webapi │ │ │ ├── allocation_token.go │ │ │ ├── allocation_token_test.go │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── launcher.go │ │ │ ├── launcher_test.go │ │ │ ├── metrics.go │ │ │ ├── mocks │ │ │ └── client.go │ │ │ ├── monitor.go │ │ │ ├── monitor_test.go │ │ │ ├── phase_enumer.go │ │ │ ├── plugin_context.go │ │ │ ├── state.go │ │ │ └── state_test.go │ ├── io │ │ ├── iface.go │ │ └── mocks │ │ │ ├── checkpoint_paths.go │ │ │ ├── input_file_paths.go │ │ │ ├── input_reader.go │ │ │ ├── output_data_sandbox.go │ │ │ ├── output_file_paths.go │ │ │ ├── output_reader.go │ │ │ ├── output_writer.go │ │ │ └── raw_output_paths.go │ ├── ioutils │ │ ├── buffered_output_writer.go │ │ ├── cached_input_reader.go │ │ ├── data_sharder.go │ │ ├── doc.go │ │ ├── in_memory_output_reader.go │ │ ├── in_memory_output_reader_test.go │ │ ├── paths.go │ │ ├── paths_test.go │ │ ├── precomputed_shardselector.go │ │ ├── precomputed_shardselector_test.go │ │ ├── raw_output_path.go │ │ ├── raw_output_path_test.go │ │ ├── remote_file_input_reader.go │ │ ├── remote_file_input_reader_test.go │ │ ├── remote_file_output_reader.go │ │ ├── remote_file_output_reader_test.go │ │ ├── remote_file_output_writer.go │ │ ├── remote_file_output_writer_test.go │ │ ├── task_reader.go │ │ └── task_reader_test.go │ ├── k8s │ │ ├── client.go │ │ ├── config.go │ │ ├── mocks │ │ │ ├── client_builder.go │ │ │ ├── plugin.go │ │ │ ├── plugin_abort_override.go │ │ │ ├── plugin_context.go │ │ │ └── resource.go │ │ └── plugin.go │ ├── registry.go │ ├── tasklog │ │ ├── plugin.go │ │ ├── template.go │ │ ├── template_test.go │ │ └── templatescheme_enumer.go │ ├── utils │ │ ├── dns.go │ │ ├── dns_test.go │ │ ├── error_collection.go │ │ ├── error_collection_test.go │ │ ├── maps.go │ │ ├── maps_test.go │ │ ├── marshal_utils.go │ │ ├── marshal_utils_test.go │ │ ├── secrets │ │ │ ├── marshaler.go │ │ │ └── marshaler_test.go │ │ ├── transformers.go │ │ └── transformers_test.go │ ├── webapi │ │ ├── example │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_test.go │ │ │ ├── config_test.go │ │ │ ├── plugin.go │ │ │ └── testdata │ │ │ │ └── admin_plugin.yaml │ │ ├── mocks │ │ │ ├── async_plugin.go │ │ │ ├── delete_context.go │ │ │ ├── get_context.go │ │ │ ├── plugin_setup_context.go │ │ │ ├── remote_resource.go │ │ │ ├── resource.go │ │ │ ├── status_context.go │ │ │ ├── sync_plugin.go │ │ │ ├── task_execution_context.go │ │ │ └── task_execution_context_reader.go │ │ ├── plugin.go │ │ ├── pluginconfig.go │ │ ├── pluginconfig_flags.go │ │ └── pluginconfig_flags_test.go │ └── workqueue │ │ ├── config.go │ │ ├── mocks │ │ ├── indexed_work_queue.go │ │ ├── processor.go │ │ ├── work_item.go │ │ └── work_item_info.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ └── workstatus_enumer.go │ ├── plugins │ ├── array │ │ ├── array_tests_base.go │ │ ├── arraystatus │ │ │ ├── status.go │ │ │ └── status_test.go │ │ ├── awsbatch │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_flags.go │ │ │ │ └── config_flags_test.go │ │ │ ├── definition │ │ │ │ ├── job_def_cache.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ ├── executor.go │ │ │ ├── executor_metrics.go │ │ │ ├── executor_test.go │ │ │ ├── job_config.go │ │ │ ├── job_config_test.go │ │ │ ├── job_definition.go │ │ │ ├── job_definition_test.go │ │ │ ├── jobs_store.go │ │ │ ├── jobs_store_test.go │ │ │ ├── launcher.go │ │ │ ├── launcher_test.go │ │ │ ├── mocks │ │ │ │ ├── batch.go │ │ │ │ ├── batch_service_client.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_key.go │ │ │ │ └── client.go │ │ │ ├── monitor.go │ │ │ ├── monitor_test.go │ │ │ ├── state.go │ │ │ ├── task_links.go │ │ │ ├── task_links_test.go │ │ │ ├── testdata │ │ │ │ └── cr.yaml │ │ │ ├── transformer.go │ │ │ └── transformer_test.go │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── core │ │ │ ├── metadata.go │ │ │ ├── metadata_test.go │ │ │ ├── phase_enumer.go │ │ │ ├── state.go │ │ │ └── state_test.go │ │ ├── errorcollector │ │ │ ├── collector.go │ │ │ ├── collector_test.go │ │ │ ├── index_range.go │ │ │ ├── index_range_test.go │ │ │ ├── range_collection.go │ │ │ ├── range_collection_test.go │ │ │ ├── range_stack.go │ │ │ └── range_stack_test.go │ │ ├── inputs.go │ │ ├── inputs_test.go │ │ ├── k8s │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_test.go │ │ │ ├── executor.go │ │ │ ├── integration_test.go │ │ │ ├── management.go │ │ │ ├── management_test.go │ │ │ ├── subtask.go │ │ │ ├── subtask_exec_context.go │ │ │ └── subtask_exec_context_test.go │ │ ├── outputs.go │ │ ├── outputs_test.go │ │ └── subtask_phase.go │ ├── awsutils │ │ └── awsutils.go │ ├── hive │ │ ├── client │ │ │ ├── mocks │ │ │ │ └── qubole_client.go │ │ │ ├── qubole_client.go │ │ │ ├── qubole_client_test.go │ │ │ └── qubole_status.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ └── config_flags_test.go │ │ ├── execution_state.go │ │ ├── execution_state_test.go │ │ ├── executions_cache.go │ │ ├── executions_cache_test.go │ │ ├── executor.go │ │ ├── executor_metrics.go │ │ └── test_helpers.go │ ├── k8s │ │ ├── dask │ │ │ ├── dask.go │ │ │ └── dask_test.go │ │ ├── kfoperators │ │ │ ├── common │ │ │ │ ├── common_operator.go │ │ │ │ ├── common_operator_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_flags.go │ │ │ │ └── config_flags_test.go │ │ │ ├── mpi │ │ │ │ ├── mpi.go │ │ │ │ └── mpi_test.go │ │ │ ├── pytorch │ │ │ │ ├── pytorch.go │ │ │ │ └── pytorch_test.go │ │ │ └── tensorflow │ │ │ │ ├── tensorflow.go │ │ │ │ └── tensorflow_test.go │ │ ├── pod │ │ │ ├── container_test.go │ │ │ ├── plugin.go │ │ │ ├── sidecar_test.go │ │ │ └── testdata │ │ │ │ └── sidecar_custom │ │ ├── ray │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_test.go │ │ │ ├── config_test.go │ │ │ ├── ray.go │ │ │ ├── ray_test.go │ │ │ └── testdata │ │ │ │ └── config.yaml │ │ ├── sagemaker │ │ │ ├── builtin_training.go │ │ │ ├── builtin_training_test.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_flags.go │ │ │ │ └── config_flags_test.go │ │ │ ├── constants.go │ │ │ ├── custom_training.go │ │ │ ├── custom_training_test.go │ │ │ ├── hyperparameter_tuning.go │ │ │ ├── hyperparameter_tuning_test.go │ │ │ ├── outputs.go │ │ │ ├── outputs_test.go │ │ │ ├── plugin.go │ │ │ ├── plugin_test.go │ │ │ ├── plugin_test_utils.go │ │ │ ├── testdata │ │ │ │ ├── config.yaml │ │ │ │ └── config2.yaml │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ └── spark │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_test.go │ │ │ ├── spark.go │ │ │ └── spark_test.go │ ├── presto │ │ ├── client │ │ │ ├── mocks │ │ │ │ └── presto_client.go │ │ │ ├── noop_presto_client.go │ │ │ ├── presto_client.go │ │ │ ├── presto_status.go │ │ │ └── prestostatus_enumer.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ └── config_flags_test.go │ │ ├── execution_state.go │ │ ├── execution_state_test.go │ │ ├── executions_cache.go │ │ ├── executions_cache_test.go │ │ ├── executor.go │ │ ├── executor_metrics.go │ │ └── helpers_test.go │ └── webapi │ │ ├── agent │ │ ├── config.go │ │ ├── config_test.go │ │ ├── integration_test.go │ │ ├── plugin.go │ │ └── plugin_test.go │ │ ├── athena │ │ ├── config.go │ │ ├── config_flags.go │ │ ├── config_flags_test.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── utils.go │ │ └── utils_test.go │ │ ├── bigquery │ │ ├── config.go │ │ ├── config_flags.go │ │ ├── config_flags_test.go │ │ ├── config_test.go │ │ ├── integration_test.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── query_job.go │ │ └── query_job_test.go │ │ ├── databricks │ │ ├── config.go │ │ ├── config_test.go │ │ ├── integration_test.go │ │ ├── plugin.go │ │ └── plugin_test.go │ │ └── snowflake │ │ ├── config.go │ │ ├── config_test.go │ │ ├── integration_test.go │ │ ├── plugin.go │ │ └── plugin_test.go │ └── testdata │ ├── config.yaml │ └── incorrect-config.yaml ├── pull_request_template.md └── tests └── end_to_end.go /.github/workflows/boilerplate-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.github/workflows/boilerplate-automation.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade_automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.github/workflows/upgrade_automation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | vendor/ 4 | *.swp 5 | artifacts/ 6 | dist/ -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/code_of_conduct/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/code_of_conduct/README.rst -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/code_of_conduct/update.sh -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/docker_build/Makefile -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/docker_build/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/docker_build/docker_build.sh -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_support_tools/go.mod -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_support_tools/go.sum -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_support_tools/tools.go -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_test_targets/Makefile -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_test_targets/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/download_tooling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_test_targets/download_tooling.sh -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/go-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_test_targets/go-gen.sh -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/goimports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/golang_test_targets/goimports -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/pull_request_template/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/pull_request_template/pull_request_template.md -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/flyte/pull_request_template/update.sh -------------------------------------------------------------------------------- /boilerplate/update.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/update.cfg -------------------------------------------------------------------------------- /boilerplate/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/boilerplate/update.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go.sum -------------------------------------------------------------------------------- /go/tasks/aws/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/aws/client.go -------------------------------------------------------------------------------- /go/tasks/aws/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/aws/client_test.go -------------------------------------------------------------------------------- /go/tasks/aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/aws/config.go -------------------------------------------------------------------------------- /go/tasks/aws/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/aws/config_flags.go -------------------------------------------------------------------------------- /go/tasks/aws/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/aws/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/config/config.go -------------------------------------------------------------------------------- /go/tasks/config_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/config_load_test.go -------------------------------------------------------------------------------- /go/tasks/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/errors/errors.go -------------------------------------------------------------------------------- /go/tasks/logs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/logs/config.go -------------------------------------------------------------------------------- /go/tasks/logs/logconfig_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/logs/logconfig_flags.go -------------------------------------------------------------------------------- /go/tasks/logs/logconfig_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/logs/logconfig_flags_test.go -------------------------------------------------------------------------------- /go/tasks/logs/logging_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/logs/logging_utils.go -------------------------------------------------------------------------------- /go/tasks/logs/logging_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/logs/logging_utils_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/bundle/fail_fast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/bundle/fail_fast.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/bundle/fail_fast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/bundle/fail_fast_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/async_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/async_client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/async_client_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/async_client_impl.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/async_client_impl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/async_client_impl_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/client_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/config_flags.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/hashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/hashing.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/hashing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/hashing_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/async_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/async_client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/download_future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/download_future.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/download_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/download_response.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/future.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/mocks/upload_future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/mocks/upload_future.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/reader_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/reader_processor.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/response.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/catalog/writer_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/catalog/writer_processor.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/allocationstatus_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/allocationstatus_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/exec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/exec_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/exec_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/exec_metadata.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/kube_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/kube_client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/events_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/events_recorder.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/fake_k8s_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/fake_k8s_cache.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/fake_k8s_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/fake_k8s_client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/kube_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/kube_client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/plugin_state_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/plugin_state_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/plugin_state_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/plugin_state_writer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/resource_manager.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/resource_negotiator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/resource_negotiator.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/resource_registrar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/resource_registrar.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/secret_manager.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/setup_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/setup_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_execution_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_execution_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_execution_id.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_overrides.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_overrides.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/mocks/task_template_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/mocks/task_template_path.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/phase.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/phase_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/phase_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/resource_manager.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/secret_manager.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/setup_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/setup_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/state.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/template/template.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/template/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/template/template_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/transition.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/transition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/transition_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/core/transitiontype_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/core/transitiontype_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/encoding/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/encoding/encoder.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/encoding/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/encoding/encoder_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/config/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/config/config_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/config/k8spluginconfig_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/config/k8spluginconfig_flags.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/config/k8spluginconfig_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/config/k8spluginconfig_flags_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/container_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/container_helper.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/container_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/container_helper_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/copilot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/copilot.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/copilot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/copilot_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/k8s_resource_adds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/pod_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/pod_helper.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/pod_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/pod_template_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/pod_template_store.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/pod_template_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/pod_template_store_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/resourcecustomizationmode_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/resourcecustomizationmode_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/testdata/config.yaml -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/testdata/imagepull-failurepod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/testdata/imagepull-failurepod.json -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/utils.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/flytek8s/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/flytek8s/utils_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/google/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/google/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/google/default_token_source_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/google/default_token_source_factory.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/google/gke_task_workload_identity_token_source_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/google/gke_task_workload_identity_token_source_factory.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/google/gke_task_workload_identity_token_source_factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/google/gke_task_workload_identity_token_source_factory_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/google/token_source_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/google/token_source_factory.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/allocation_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/allocation_token.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/allocation_token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/allocation_token_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/cache.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/cache_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/core.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/core_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/launcher.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/launcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/launcher_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/metrics.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/mocks/client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/monitor.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/monitor_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/phase_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/phase_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/plugin_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/plugin_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/state.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/internal/webapi/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/internal/webapi/state_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/iface.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/checkpoint_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/checkpoint_paths.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/input_file_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/input_file_paths.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/input_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/input_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/output_data_sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/output_data_sandbox.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/output_file_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/output_file_paths.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/output_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/output_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/output_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/output_writer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/io/mocks/raw_output_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/io/mocks/raw_output_paths.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/buffered_output_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/buffered_output_writer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/cached_input_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/cached_input_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/data_sharder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/data_sharder.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/doc.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/paths.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/paths_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/precomputed_shardselector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/precomputed_shardselector.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/precomputed_shardselector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/precomputed_shardselector_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/raw_output_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/raw_output_path.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/raw_output_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/raw_output_path_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_input_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_input_reader_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/remote_file_output_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/remote_file_output_writer_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/task_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/task_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/ioutils/task_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/ioutils/task_reader_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/client.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/mocks/client_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/mocks/client_builder.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/mocks/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/mocks/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/mocks/plugin_abort_override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/mocks/plugin_abort_override.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/mocks/plugin_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/mocks/plugin_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/mocks/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/mocks/resource.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/k8s/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/k8s/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/registry.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/tasklog/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/tasklog/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/tasklog/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/tasklog/template.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/tasklog/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/tasklog/template_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/dns.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/dns_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/error_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/error_collection.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/error_collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/error_collection_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/maps.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/maps_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/marshal_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/marshal_utils.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/marshal_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/marshal_utils_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/secrets/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/secrets/marshaler.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/secrets/marshaler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/secrets/marshaler_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/transformers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/transformers.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/utils/transformers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/utils/transformers_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/config_flags.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/config_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/example/testdata/admin_plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/example/testdata/admin_plugin.yaml -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/async_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/async_plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/delete_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/delete_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/get_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/get_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/plugin_setup_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/plugin_setup_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/remote_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/remote_resource.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/resource.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/status_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/status_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/task_execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/task_execution_context.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/mocks/task_execution_context_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/mocks/task_execution_context_reader.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/plugin.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/pluginconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/pluginconfig.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/pluginconfig_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/pluginconfig_flags.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/webapi/pluginconfig_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/webapi/pluginconfig_flags_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/config.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/mocks/indexed_work_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/mocks/indexed_work_queue.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/mocks/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/mocks/processor.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/mocks/work_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/mocks/work_item.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/mocks/work_item_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/mocks/work_item_info.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/queue.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/queue_test.go -------------------------------------------------------------------------------- /go/tasks/pluginmachinery/workqueue/workstatus_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/pluginmachinery/workqueue/workstatus_enumer.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/array_tests_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/array_tests_base.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/arraystatus/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/arraystatus/status.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/arraystatus/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/arraystatus/status_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/client.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/client_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/config/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/config/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/config/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/definition/job_def_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/definition/job_def_cache.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/definition/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/definition/utils.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/definition/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/definition/utils_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/executor.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/executor_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/executor_metrics.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/executor_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/job_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/job_config.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/job_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/job_config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/job_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/job_definition.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/job_definition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/job_definition_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/jobs_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/jobs_store.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/jobs_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/jobs_store_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/launcher.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/launcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/launcher_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/mocks/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/mocks/batch.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/mocks/batch_service_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/mocks/batch_service_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/mocks/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/mocks/cache.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/mocks/cache_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/mocks/cache_key.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/mocks/client.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/monitor.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/monitor_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/state.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/task_links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/task_links.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/task_links_test.go: -------------------------------------------------------------------------------- 1 | package awsbatch 2 | -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/testdata/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/testdata/cr.yaml -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/transformer.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/awsbatch/transformer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/awsbatch/transformer_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/catalog.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/catalog_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/core/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/core/metadata.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/core/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/core/metadata_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/core/phase_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/core/phase_enumer.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/core/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/core/state.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/core/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/core/state_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/collector.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/collector_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/index_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/index_range.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/index_range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/index_range_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/range_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/range_collection.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/range_collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/range_collection_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/range_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/range_stack.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/errorcollector/range_stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/errorcollector/range_stack_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/inputs.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/inputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/inputs_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/executor.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/integration_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/management.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/management_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/management_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/subtask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/subtask.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/subtask_exec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/subtask_exec_context.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/k8s/subtask_exec_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/k8s/subtask_exec_context_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/outputs.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/outputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/outputs_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/array/subtask_phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/array/subtask_phase.go -------------------------------------------------------------------------------- /go/tasks/plugins/awsutils/awsutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/awsutils/awsutils.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/client/mocks/qubole_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/client/mocks/qubole_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/client/qubole_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/client/qubole_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/client/qubole_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/client/qubole_client_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/client/qubole_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/client/qubole_status.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/config/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/config/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/config/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/execution_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/execution_state.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/execution_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/execution_state_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/executions_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/executions_cache.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/executions_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/executions_cache_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/executor.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/executor_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/executor_metrics.go -------------------------------------------------------------------------------- /go/tasks/plugins/hive/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/hive/test_helpers.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/dask/dask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/dask/dask.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/dask/dask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/dask/dask_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/common/common_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/common/common_operator.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/common/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/common/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/common/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/common/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/common/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/mpi/mpi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/mpi/mpi.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/pod/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/pod/container_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/pod/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/pod/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/pod/sidecar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/pod/sidecar_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/pod/testdata/sidecar_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/pod/testdata/sidecar_custom -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/ray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/ray.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/ray_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/ray_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/ray/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/ray/testdata/config.yaml -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/builtin_training.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/builtin_training.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/builtin_training_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/builtin_training_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/config/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/config/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/config/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/constants.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/custom_training.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/custom_training.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/custom_training_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/custom_training_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/outputs.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/outputs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/outputs_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/testdata/config.yaml -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/testdata/config2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/testdata/config2.yaml -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/utils.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/sagemaker/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/sagemaker/utils_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/spark/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/spark/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/spark/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/spark/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/spark/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/spark/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/spark/spark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/spark/spark.go -------------------------------------------------------------------------------- /go/tasks/plugins/k8s/spark/spark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/k8s/spark/spark_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/client/mocks/presto_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/client/mocks/presto_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/client/noop_presto_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/client/noop_presto_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/client/presto_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/client/presto_client.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/client/presto_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/client/presto_status.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/client/prestostatus_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/client/prestostatus_enumer.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/config/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/config/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/config/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/execution_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/execution_state.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/execution_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/execution_state_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/executions_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/executions_cache.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/executions_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/executions_cache_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/executor.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/executor_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/executor_metrics.go -------------------------------------------------------------------------------- /go/tasks/plugins/presto/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/presto/helpers_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/agent/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/agent/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/agent/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/agent/config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/agent/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/agent/integration_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/agent/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/agent/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/agent/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/agent/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/utils.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/athena/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/athena/utils_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/config_flags.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/config_flags_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/integration_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/query_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/query_job.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/bigquery/query_job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/bigquery/query_job_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/databricks/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/databricks/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/databricks/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/databricks/config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/databricks/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/databricks/integration_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/databricks/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/databricks/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/databricks/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/databricks/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/snowflake/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/snowflake/config.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/snowflake/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/snowflake/config_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/snowflake/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/snowflake/integration_test.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/snowflake/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/snowflake/plugin.go -------------------------------------------------------------------------------- /go/tasks/plugins/webapi/snowflake/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/plugins/webapi/snowflake/plugin_test.go -------------------------------------------------------------------------------- /go/tasks/testdata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/testdata/config.yaml -------------------------------------------------------------------------------- /go/tasks/testdata/incorrect-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/go/tasks/testdata/incorrect-config.yaml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /tests/end_to_end.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flyteplugins/HEAD/tests/end_to_end.go --------------------------------------------------------------------------------