├── .dockerignore ├── .github └── workflows │ ├── checks.yml │ ├── codeql-analysis.yml │ ├── krew.yaml │ └── upgrade_automation.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .krew.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── 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 │ ├── end2end │ │ ├── Makefile │ │ ├── end2end.sh │ │ ├── functional-test-config.yaml │ │ └── run-tests.py │ ├── golang_support_tools │ │ ├── go.mod │ │ ├── go.sum │ │ └── tools.go │ ├── golang_test_targets │ │ ├── Makefile │ │ ├── Readme.rst │ │ ├── download_tooling.sh │ │ ├── go-gen.sh │ │ └── goimports │ ├── golangci_file │ │ ├── .golangci.yml │ │ ├── Readme.rst │ │ └── update.sh │ └── pull_request_template │ │ ├── Readme.rst │ │ ├── pull_request_template.md │ │ └── update.sh ├── update.cfg └── update.sh ├── cmd ├── controller │ ├── cmd │ │ ├── init_certs.go │ │ ├── root.go │ │ └── webhook.go │ └── main.go ├── kubectl-flyte │ ├── cmd │ │ ├── compile.go │ │ ├── create.go │ │ ├── create_test.go │ │ ├── delete.go │ │ ├── get.go │ │ ├── printers │ │ │ ├── node.go │ │ │ └── workflow.go │ │ ├── root.go │ │ ├── string_map_value.go │ │ ├── string_map_value_test.go │ │ ├── testdata │ │ │ ├── array-node-cache-serialize.yaml.golden │ │ │ ├── array-node-cache.yaml.golden │ │ │ ├── array-node-inputs.yaml.golden │ │ │ ├── array-node.yaml.golden │ │ │ ├── gate-node-approve.yaml.golden │ │ │ ├── gate-node-signal.yaml.golden │ │ │ ├── gate-node-sleep.yaml.golden │ │ │ ├── inputs.json.golden │ │ │ ├── inputs.pb.golden │ │ │ ├── inputs.yaml.golden │ │ │ ├── launchplan.yaml.golden │ │ │ ├── workflow.json.golden │ │ │ ├── workflow.pb.golden │ │ │ ├── workflow.yaml.golden │ │ │ ├── workflow_w_inputs.json.golden │ │ │ ├── workflow_w_inputs.pb.golden │ │ │ └── workflow_w_inputs.yaml.golden │ │ ├── util.go │ │ └── visualize.go │ └── main.go └── manager │ ├── cmd │ └── root.go │ └── main.go ├── codecov.yml ├── events ├── admin_eventsink.go ├── admin_eventsink_integration_test.go ├── admin_eventsink_test.go ├── config.go ├── config_flags.go ├── config_flags_test.go ├── errors │ ├── errors.go │ └── errors_test.go ├── event_recorder.go ├── event_recorder_test.go ├── eventsink.go ├── eventsink_test.go ├── local_eventsink.go ├── local_writer.go ├── mocks │ ├── event_recorder.go │ ├── event_sink.go │ ├── eventsink.go │ ├── node_event_recorder.go │ ├── task_event_recorder.go │ ├── workflow_event_recorder.go │ └── writer.go ├── node_event_recorder.go ├── node_event_recorder_test.go ├── task_event_recorder.go ├── task_event_recorder_test.go ├── test_utils.go ├── workflow_event_recorder.go └── workflow_event_recorder_test.go ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── custom-boilerplate.go.txt ├── tools.go ├── update-codegen.sh └── verify-codegen.sh ├── kubectl-flyte.json ├── manager ├── config │ ├── config.go │ ├── config_flags.go │ ├── config_flags_test.go │ ├── doc.go │ └── shardtype_enumer.go ├── doc.go ├── manager.go ├── manager_test.go └── shardstrategy │ ├── doc.go │ ├── environment.go │ ├── hash.go │ ├── hash_test.go │ ├── mocks │ └── shard_strategy.go │ ├── shard_strategy.go │ └── shard_strategy_test.go ├── pkg ├── apis │ └── flyteworkflow │ │ ├── crd.go │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── array.go │ │ ├── branch.go │ │ ├── branch_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── execution_config.go │ │ ├── execution_config_test.go │ │ ├── gate.go │ │ ├── identifier.go │ │ ├── iface.go │ │ ├── mocks │ │ ├── BaseNode.go │ │ ├── BaseWorkflow.go │ │ ├── BaseWorkflowWithStatus.go │ │ ├── ExecutableArrayNode.go │ │ ├── ExecutableArrayNodeStatus.go │ │ ├── ExecutableBranchNode.go │ │ ├── ExecutableBranchNodeStatus.go │ │ ├── ExecutableDynamicNodeStatus.go │ │ ├── ExecutableGateNode.go │ │ ├── ExecutableGateNodeStatus.go │ │ ├── ExecutableIfBlock.go │ │ ├── ExecutableNode.go │ │ ├── ExecutableNodeStatus.go │ │ ├── ExecutableSubWorkflow.go │ │ ├── ExecutableSubWorkflowNodeStatus.go │ │ ├── ExecutableTask.go │ │ ├── ExecutableTaskNodeStatus.go │ │ ├── ExecutableWorkflow.go │ │ ├── ExecutableWorkflowNode.go │ │ ├── ExecutableWorkflowNodeStatus.go │ │ ├── ExecutableWorkflowStatus.go │ │ ├── ExecutionTimeInfo.go │ │ ├── Meta.go │ │ ├── MetaExtended.go │ │ ├── Mutable.go │ │ ├── MutableArrayNodeStatus.go │ │ ├── MutableBranchNodeStatus.go │ │ ├── MutableDynamicNodeStatus.go │ │ ├── MutableGateNodeStatus.go │ │ ├── MutableNodeStatus.go │ │ ├── MutableSubWorkflowNodeStatus.go │ │ ├── MutableTaskNodeStatus.go │ │ ├── MutableWorkflowNodeStatus.go │ │ ├── NodeGetter.go │ │ ├── NodeStatusGetter.go │ │ ├── NodeStatusVisitor.go │ │ ├── SubWorkflowGetter.go │ │ ├── TaskDetailsGetter.go │ │ ├── WorkflowMeta.go │ │ └── WorkflowMetaExtended.go │ │ ├── node_status.go │ │ ├── node_status_test.go │ │ ├── nodes.go │ │ ├── register.go │ │ ├── subworkflow.go │ │ ├── tasks.go │ │ ├── tasks_test.go │ │ ├── testdata │ │ ├── branch.json │ │ ├── connections.json │ │ ├── task.yaml │ │ └── workflowspec.yaml │ │ ├── workflow.go │ │ ├── workflow_status.go │ │ ├── workflow_status_test.go │ │ ├── workflow_test.go │ │ └── zz_generated.deepcopy.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── flyteworkflow │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_flyteworkflow.go │ │ │ └── fake_flyteworkflow_client.go │ │ │ ├── flyteworkflow.go │ │ │ ├── flyteworkflow_client.go │ │ │ └── generated_expansion.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── flyteworkflow │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── flyteworkflow.go │ │ │ │ └── interface.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── flyteworkflow │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── flyteworkflow.go ├── compiler │ ├── admin.go │ ├── admin_test.go │ ├── builders.go │ ├── common │ │ ├── builder.go │ │ ├── id_set.go │ │ ├── index.go │ │ ├── mocks │ │ │ ├── interface_provider.go │ │ │ ├── node.go │ │ │ ├── node_builder.go │ │ │ ├── task.go │ │ │ ├── workflow.go │ │ │ └── workflow_builder.go │ │ └── reader.go │ ├── errors │ │ ├── compiler_error_test.go │ │ ├── compiler_errors.go │ │ ├── config.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── sets.go │ │ └── sets_test.go │ ├── requirements.go │ ├── requirements_test.go │ ├── task_compiler.go │ ├── task_compiler_test.go │ ├── test │ │ ├── compiler_test.go │ │ └── testdata │ │ │ ├── app-workflows-work-one-python-task-w-f-inputs.pb │ │ │ ├── app-workflows-work-one-python-task-w-f-inputs.yaml │ │ │ ├── app-workflows-work-one-python-task-w-f.pb │ │ │ ├── app-workflows-work-one-python-task-w-f.yaml │ │ │ ├── branch │ │ │ ├── 5_myapp.workflows.cereal.mycereal_2.json │ │ │ ├── compiled │ │ │ │ ├── 5_myapp.workflows.cereal.mycereal_2.json │ │ │ │ ├── mycereal_condition_has_no_deps.json │ │ │ │ ├── success_1.json │ │ │ │ ├── success_10_simple.json │ │ │ │ ├── success_2.json │ │ │ │ ├── success_3.json │ │ │ │ ├── success_4.json │ │ │ │ ├── success_5.json │ │ │ │ ├── success_6.json │ │ │ │ ├── success_7_nested.json │ │ │ │ ├── success_8_nested.json │ │ │ │ └── success_9_nested.json │ │ │ ├── k8s │ │ │ │ ├── 5_myapp.workflows.cereal.mycereal_2.json │ │ │ │ ├── mycereal_condition_has_no_deps.json │ │ │ │ ├── success_1.json │ │ │ │ ├── success_10_simple.json │ │ │ │ ├── success_2.json │ │ │ │ ├── success_3.json │ │ │ │ ├── success_4.json │ │ │ │ ├── success_5.json │ │ │ │ ├── success_6.json │ │ │ │ ├── success_7_nested.json │ │ │ │ ├── success_8_nested.json │ │ │ │ └── success_9_nested.json │ │ │ ├── mycereal_condition_has_no_deps.json │ │ │ ├── success_1.json │ │ │ ├── success_10_simple.json │ │ │ ├── success_2.json │ │ │ ├── success_3.json │ │ │ ├── success_4.json │ │ │ ├── success_5.json │ │ │ ├── success_6.json │ │ │ ├── success_7_nested.json │ │ │ ├── success_8_nested.json │ │ │ └── success_9_nested.json │ │ │ ├── dynamic │ │ │ └── success_1.json │ │ │ └── snacks-core │ │ │ ├── 000_core.containerization.multi_images.svm_trainer_1.pb │ │ │ ├── 000_core.containerization.multi_images.svm_trainer_1_task.yaml │ │ │ ├── 001_core.containerization.multi_images.svm_predictor_1.pb │ │ │ ├── 001_core.containerization.multi_images.svm_predictor_1_task.yaml │ │ │ ├── 002_core.containerization.multi_images.my_workflow_2.pb │ │ │ ├── 002_core.containerization.multi_images.my_workflow_2_wf.yaml │ │ │ ├── 003_core.containerization.multi_images.my_workflow_3.pb │ │ │ ├── 004_ellipse-area-metadata-shell_1.pb │ │ │ ├── 004_ellipse-area-metadata-shell_1_task.yaml │ │ │ ├── 005_ellipse-area-metadata-python_1.pb │ │ │ ├── 005_ellipse-area-metadata-python_1_task.yaml │ │ │ ├── 006_ellipse-area-metadata-r_1.pb │ │ │ ├── 006_ellipse-area-metadata-r_1_task.yaml │ │ │ ├── 007_ellipse-area-metadata-haskell_1.pb │ │ │ ├── 007_ellipse-area-metadata-haskell_1_task.yaml │ │ │ ├── 008_ellipse-area-metadata-julia_1.pb │ │ │ ├── 008_ellipse-area-metadata-julia_1_task.yaml │ │ │ ├── 009_core.containerization.raw_container.report_all_calculated_areas_1.pb │ │ │ ├── 009_core.containerization.raw_container.report_all_calculated_areas_1_task.yaml │ │ │ ├── 010_core.containerization.raw_container.wf_2.pb │ │ │ ├── 010_core.containerization.raw_container.wf_2_wf.yaml │ │ │ ├── 011_core.containerization.raw_container.wf_3.pb │ │ │ ├── 012_core.containerization.use_secrets.secret_task_1.pb │ │ │ ├── 012_core.containerization.use_secrets.secret_task_1_task.yaml │ │ │ ├── 013_core.containerization.use_secrets.user_info_task_1.pb │ │ │ ├── 013_core.containerization.use_secrets.user_info_task_1_task.yaml │ │ │ ├── 014_core.containerization.use_secrets.secret_file_task_1.pb │ │ │ ├── 014_core.containerization.use_secrets.secret_file_task_1_task.yaml │ │ │ ├── 015_core.containerization.use_secrets.my_secret_workflow_2.pb │ │ │ ├── 015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml │ │ │ ├── 016_core.containerization.use_secrets.my_secret_workflow_3.pb │ │ │ ├── 017_core.control_flow.chain_tasks.read_1.pb │ │ │ ├── 017_core.control_flow.chain_tasks.read_1_task.yaml │ │ │ ├── 018_core.control_flow.chain_tasks.write_1.pb │ │ │ ├── 018_core.control_flow.chain_tasks.write_1_task.yaml │ │ │ ├── 019_core.control_flow.chain_tasks.chain_tasks_wf_2.pb │ │ │ ├── 019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml │ │ │ ├── 020_core.control_flow.chain_tasks.chain_tasks_wf_3.pb │ │ │ ├── 021_core.control_flow.checkpoint.use_checkpoint_1.pb │ │ │ ├── 021_core.control_flow.checkpoint.use_checkpoint_1_task.yaml │ │ │ ├── 022_core.control_flow.checkpoint.example_2.pb │ │ │ ├── 022_core.control_flow.checkpoint.example_2_wf.yaml │ │ │ ├── 023_core.control_flow.checkpoint.example_3.pb │ │ │ ├── 024_core.control_flow.conditions.square_1.pb │ │ │ ├── 024_core.control_flow.conditions.square_1_task.yaml │ │ │ ├── 025_core.control_flow.conditions.double_1.pb │ │ │ ├── 025_core.control_flow.conditions.double_1_task.yaml │ │ │ ├── 026_core.control_flow.conditions.multiplier_2.pb │ │ │ ├── 026_core.control_flow.conditions.multiplier_2_wf.yaml │ │ │ ├── 027_core.control_flow.conditions.multiplier_3.pb │ │ │ ├── 028_core.control_flow.conditions.multiplier_2_2.pb │ │ │ ├── 028_core.control_flow.conditions.multiplier_2_2_wf.yaml │ │ │ ├── 029_core.control_flow.conditions.multiplier_2_3.pb │ │ │ ├── 030_core.control_flow.conditions.multiplier_3_2.pb │ │ │ ├── 030_core.control_flow.conditions.multiplier_3_2_wf.yaml │ │ │ ├── 031_core.control_flow.conditions.multiplier_3_3.pb │ │ │ ├── 032_core.control_flow.conditions.coin_toss_1.pb │ │ │ ├── 032_core.control_flow.conditions.coin_toss_1_task.yaml │ │ │ ├── 033_core.control_flow.conditions.failed_1.pb │ │ │ ├── 033_core.control_flow.conditions.failed_1_task.yaml │ │ │ ├── 034_core.control_flow.conditions.success_1.pb │ │ │ ├── 034_core.control_flow.conditions.success_1_task.yaml │ │ │ ├── 035_core.control_flow.conditions.basic_boolean_wf_2.pb │ │ │ ├── 035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml │ │ │ ├── 036_core.control_flow.conditions.basic_boolean_wf_3.pb │ │ │ ├── 037_core.control_flow.conditions.bool_input_wf_2.pb │ │ │ ├── 037_core.control_flow.conditions.bool_input_wf_2_wf.yaml │ │ │ ├── 038_core.control_flow.conditions.bool_input_wf_3.pb │ │ │ ├── 039_core.control_flow.conditions.nested_conditions_2.pb │ │ │ ├── 039_core.control_flow.conditions.nested_conditions_2_wf.yaml │ │ │ ├── 040_core.control_flow.conditions.nested_conditions_3.pb │ │ │ ├── 041_core.control_flow.conditions.calc_sum_1.pb │ │ │ ├── 041_core.control_flow.conditions.calc_sum_1_task.yaml │ │ │ ├── 042_core.control_flow.conditions.consume_outputs_2.pb │ │ │ ├── 042_core.control_flow.conditions.consume_outputs_2_wf.yaml │ │ │ ├── 043_core.control_flow.conditions.consume_outputs_3.pb │ │ │ ├── 044_core.control_flow.dynamics.return_index_1.pb │ │ │ ├── 044_core.control_flow.dynamics.return_index_1_task.yaml │ │ │ ├── 045_core.control_flow.dynamics.update_list_1.pb │ │ │ ├── 045_core.control_flow.dynamics.update_list_1_task.yaml │ │ │ ├── 046_core.control_flow.dynamics.derive_count_1.pb │ │ │ ├── 046_core.control_flow.dynamics.derive_count_1_task.yaml │ │ │ ├── 047_core.control_flow.dynamics.count_characters_1.pb │ │ │ ├── 047_core.control_flow.dynamics.count_characters_1_task.yaml │ │ │ ├── 048_core.control_flow.dynamics.wf_2.pb │ │ │ ├── 048_core.control_flow.dynamics.wf_2_wf.yaml │ │ │ ├── 049_core.control_flow.dynamics.wf_3.pb │ │ │ ├── 050_core.control_flow.map_task.a_mappable_task_1.pb │ │ │ ├── 050_core.control_flow.map_task.a_mappable_task_1_task.yaml │ │ │ ├── 051_core.control_flow.map_task.coalesce_1.pb │ │ │ ├── 051_core.control_flow.map_task.coalesce_1_task.yaml │ │ │ ├── 052_core.control_flow.map_task.mapper_a_mappable_task_0_1.pb │ │ │ ├── 052_core.control_flow.map_task.mapper_a_mappable_task_0_1_task.yaml │ │ │ ├── 053_core.control_flow.map_task.my_map_workflow_2.pb │ │ │ ├── 053_core.control_flow.map_task.my_map_workflow_2_wf.yaml │ │ │ ├── 054_core.control_flow.map_task.my_map_workflow_3.pb │ │ │ ├── 055_core.control_flow.merge_sort.split_1.pb │ │ │ ├── 055_core.control_flow.merge_sort.split_1_task.yaml │ │ │ ├── 056_core.control_flow.merge_sort.merge_1.pb │ │ │ ├── 056_core.control_flow.merge_sort.merge_1_task.yaml │ │ │ ├── 057_core.control_flow.merge_sort.sort_locally_1.pb │ │ │ ├── 057_core.control_flow.merge_sort.sort_locally_1_task.yaml │ │ │ ├── 058_core.control_flow.merge_sort.merge_sort_remotely_1.pb │ │ │ ├── 058_core.control_flow.merge_sort.merge_sort_remotely_1_task.yaml │ │ │ ├── 059_core.control_flow.merge_sort.merge_sort_2.pb │ │ │ ├── 059_core.control_flow.merge_sort.merge_sort_2_wf.yaml │ │ │ ├── 060_core.control_flow.merge_sort.merge_sort_3.pb │ │ │ ├── 061_core.control_flow.subworkflows.t1_1.pb │ │ │ ├── 061_core.control_flow.subworkflows.t1_1_task.yaml │ │ │ ├── 062_core.control_flow.subworkflows.my_subwf_2.pb │ │ │ ├── 062_core.control_flow.subworkflows.my_subwf_2_wf.yaml │ │ │ ├── 063_core.control_flow.subworkflows.my_subwf_3.pb │ │ │ ├── 064_core.control_flow.subworkflows.parent_wf_2.pb │ │ │ ├── 065_core.control_flow.subworkflows.parent_wf_3.pb │ │ │ ├── 066_core.control_flow.subworkflows.nested_parent_wf_2.pb │ │ │ ├── 067_core.control_flow.subworkflows.nested_parent_wf_3.pb │ │ │ ├── 068_core.control_flow.subworkflows.count_freq_words_1.pb │ │ │ ├── 068_core.control_flow.subworkflows.count_freq_words_1_task.yaml │ │ │ ├── 069_core.control_flow.subworkflows.ext_workflow_2.pb │ │ │ ├── 069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml │ │ │ ├── 070_core.control_flow.subworkflows.ext_workflow_3.pb │ │ │ ├── 071_parent_workflow_execution_3.pb │ │ │ ├── 072_core.control_flow.subworkflows.count_repetitive_words_1.pb │ │ │ ├── 072_core.control_flow.subworkflows.count_repetitive_words_1_task.yaml │ │ │ ├── 075_my-objectstore-sensor_1.pb │ │ │ ├── 075_my-objectstore-sensor_1_task.yaml │ │ │ ├── 076_core.extend_flyte.custom_task_plugin.print_file_1.pb │ │ │ ├── 076_core.extend_flyte.custom_task_plugin.print_file_1_task.yaml │ │ │ ├── 077_core.extend_flyte.custom_task_plugin.my_workflow_2.pb │ │ │ ├── 077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml │ │ │ ├── 078_core.extend_flyte.custom_task_plugin.my_workflow_3.pb │ │ │ ├── 079_core.extend_flyte.custom_types.generate_1.pb │ │ │ ├── 079_core.extend_flyte.custom_types.generate_1_task.yaml │ │ │ ├── 080_core.extend_flyte.custom_types.consume_1.pb │ │ │ ├── 080_core.extend_flyte.custom_types.consume_1_task.yaml │ │ │ ├── 081_core.extend_flyte.custom_types.wf_2.pb │ │ │ ├── 081_core.extend_flyte.custom_types.wf_2_wf.yaml │ │ │ ├── 082_core.extend_flyte.custom_types.wf_3.pb │ │ │ ├── 083_core.flyte_basics.basic_workflow.t1_1.pb │ │ │ ├── 083_core.flyte_basics.basic_workflow.t1_1_task.yaml │ │ │ ├── 084_core.flyte_basics.basic_workflow.t2_1.pb │ │ │ ├── 084_core.flyte_basics.basic_workflow.t2_1_task.yaml │ │ │ ├── 085_core.flyte_basics.basic_workflow.my_wf_2.pb │ │ │ ├── 085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml │ │ │ ├── 086_core.flyte_basics.basic_workflow.my_wf_3.pb │ │ │ ├── 087_core.flyte_basics.decorating_tasks.t1_1.pb │ │ │ ├── 087_core.flyte_basics.decorating_tasks.t1_1_task.yaml │ │ │ ├── 088_core.flyte_basics.decorating_tasks.t2_1.pb │ │ │ ├── 088_core.flyte_basics.decorating_tasks.t2_1_task.yaml │ │ │ ├── 089_core.flyte_basics.decorating_tasks.wf_2.pb │ │ │ ├── 089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml │ │ │ ├── 090_core.flyte_basics.decorating_tasks.wf_3.pb │ │ │ ├── 091_core.flyte_basics.decorating_workflows.setup_1.pb │ │ │ ├── 091_core.flyte_basics.decorating_workflows.setup_1_task.yaml │ │ │ ├── 092_core.flyte_basics.decorating_workflows.teardown_1.pb │ │ │ ├── 092_core.flyte_basics.decorating_workflows.teardown_1_task.yaml │ │ │ ├── 093_core.flyte_basics.decorating_workflows.t1_1.pb │ │ │ ├── 093_core.flyte_basics.decorating_workflows.t1_1_task.yaml │ │ │ ├── 094_core.flyte_basics.decorating_workflows.t2_1.pb │ │ │ ├── 094_core.flyte_basics.decorating_workflows.t2_1_task.yaml │ │ │ ├── 095_core.flyte_basics.decorating_workflows.wf_2.pb │ │ │ ├── 095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml │ │ │ ├── 096_core.flyte_basics.decorating_workflows.wf_3.pb │ │ │ ├── 097_core.flyte_basics.documented_workflow.add_data_1.pb │ │ │ ├── 097_core.flyte_basics.documented_workflow.add_data_1_task.yaml │ │ │ ├── 098_core.flyte_basics.documented_workflow.sphinx_docstring_2.pb │ │ │ ├── 098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml │ │ │ ├── 099_core.flyte_basics.documented_workflow.sphinx_docstring_3.pb │ │ │ ├── 100_core.flyte_basics.documented_workflow.numpy_docstring_2.pb │ │ │ ├── 100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml │ │ │ ├── 101_core.flyte_basics.documented_workflow.numpy_docstring_3.pb │ │ │ ├── 102_core.flyte_basics.documented_workflow.google_docstring_2.pb │ │ │ ├── 102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml │ │ │ ├── 103_core.flyte_basics.documented_workflow.google_docstring_3.pb │ │ │ ├── 104_core.flyte_basics.files.normalize_columns_1.pb │ │ │ ├── 104_core.flyte_basics.files.normalize_columns_1_task.yaml │ │ │ ├── 105_core.flyte_basics.files.normalize_csv_file_2.pb │ │ │ ├── 105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml │ │ │ ├── 106_core.flyte_basics.files.normalize_csv_file_3.pb │ │ │ ├── 107_core.flyte_basics.folders.download_files_1.pb │ │ │ ├── 107_core.flyte_basics.folders.download_files_1_task.yaml │ │ │ ├── 108_core.flyte_basics.folders.normalize_all_files_1.pb │ │ │ ├── 108_core.flyte_basics.folders.normalize_all_files_1_task.yaml │ │ │ ├── 109_core.flyte_basics.folders.download_and_normalize_csv_files_2.pb │ │ │ ├── 109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml │ │ │ ├── 110_core.flyte_basics.folders.download_and_normalize_csv_files_3.pb │ │ │ ├── 111_core.flyte_basics.hello_world.say_hello_1.pb │ │ │ ├── 111_core.flyte_basics.hello_world.say_hello_1_task.yaml │ │ │ ├── 112_core.flyte_basics.hello_world.my_wf_2.pb │ │ │ ├── 112_core.flyte_basics.hello_world.my_wf_2_wf.yaml │ │ │ ├── 113_core.flyte_basics.hello_world.my_wf_3.pb │ │ │ ├── 114_core.flyte_basics.imperative_wf_style.t1_1.pb │ │ │ ├── 114_core.flyte_basics.imperative_wf_style.t1_1_task.yaml │ │ │ ├── 115_core.flyte_basics.imperative_wf_style.t2_1.pb │ │ │ ├── 115_core.flyte_basics.imperative_wf_style.t2_1_task.yaml │ │ │ ├── 116_core.flyte_basics.imperative_wf_style.t3_1.pb │ │ │ ├── 116_core.flyte_basics.imperative_wf_style.t3_1_task.yaml │ │ │ ├── 117_my.imperative.workflow.example_2.pb │ │ │ ├── 117_my.imperative.workflow.example_2_wf.yaml │ │ │ ├── 118_my.imperative.workflow.example_3.pb │ │ │ ├── 119_core.flyte_basics.lp.square_1.pb │ │ │ ├── 119_core.flyte_basics.lp.square_1_task.yaml │ │ │ ├── 120_core.flyte_basics.lp.my_wf_2.pb │ │ │ ├── 120_core.flyte_basics.lp.my_wf_2_wf.yaml │ │ │ ├── 121_core.flyte_basics.lp.my_wf_3.pb │ │ │ ├── 122_default_4_lp_3.pb │ │ │ ├── 123_always_2_lp_3.pb │ │ │ ├── 124_core.flyte_basics.lp.greet_1.pb │ │ │ ├── 124_core.flyte_basics.lp.greet_1_task.yaml │ │ │ ├── 125_core.flyte_basics.lp.go_greet_2.pb │ │ │ ├── 125_core.flyte_basics.lp.go_greet_2_wf.yaml │ │ │ ├── 126_core.flyte_basics.lp.go_greet_3.pb │ │ │ ├── 127_morning_greeting_3.pb │ │ │ ├── 128_core.flyte_basics.named_outputs.say_hello_1.pb │ │ │ ├── 128_core.flyte_basics.named_outputs.say_hello_1_task.yaml │ │ │ ├── 129_core.flyte_basics.named_outputs.my_wf_2.pb │ │ │ ├── 129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml │ │ │ ├── 130_core.flyte_basics.named_outputs.my_wf_3.pb │ │ │ ├── 133__bash.task_1_1.pb │ │ │ ├── 133__bash.task_1_1_task.yaml │ │ │ ├── 134_task_1_1.pb │ │ │ ├── 134_task_1_1_task.yaml │ │ │ ├── 135__bash.task_2_1.pb │ │ │ ├── 135__bash.task_2_1_task.yaml │ │ │ ├── 136_task_2_1.pb │ │ │ ├── 136_task_2_1_task.yaml │ │ │ ├── 137__bash.task_3_1.pb │ │ │ ├── 137__bash.task_3_1_task.yaml │ │ │ ├── 138_task_3_1.pb │ │ │ ├── 138_task_3_1_task.yaml │ │ │ ├── 139_core.flyte_basics.shell_task.create_entities_1.pb │ │ │ ├── 139_core.flyte_basics.shell_task.create_entities_1_task.yaml │ │ │ ├── 140_core.flyte_basics.shell_task.wf_2.pb │ │ │ ├── 140_core.flyte_basics.shell_task.wf_2_wf.yaml │ │ │ ├── 141_core.flyte_basics.shell_task.wf_3.pb │ │ │ ├── 142_core.flyte_basics.task.square_1.pb │ │ │ ├── 142_core.flyte_basics.task.square_1_task.yaml │ │ │ ├── 143_core.flyte_basics.task_cache.square_1.pb │ │ │ ├── 143_core.flyte_basics.task_cache.square_1_task.yaml │ │ │ ├── 144_core.flyte_basics.task_cache.uncached_data_reading_task_1.pb │ │ │ ├── 144_core.flyte_basics.task_cache.uncached_data_reading_task_1_task.yaml │ │ │ ├── 145_core.flyte_basics.task_cache.cached_data_processing_task_1.pb │ │ │ ├── 145_core.flyte_basics.task_cache.cached_data_processing_task_1_task.yaml │ │ │ ├── 146_core.flyte_basics.task_cache.compare_dataframes_1.pb │ │ │ ├── 146_core.flyte_basics.task_cache.compare_dataframes_1_task.yaml │ │ │ ├── 147_core.flyte_basics.task_cache.cached_dataframe_wf_2.pb │ │ │ ├── 147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml │ │ │ ├── 148_core.flyte_basics.task_cache.cached_dataframe_wf_3.pb │ │ │ ├── 149_core.flyte_basics.task_cache_serialize.square_1.pb │ │ │ ├── 149_core.flyte_basics.task_cache_serialize.square_1_task.yaml │ │ │ ├── 150_core.scheduled_workflows.lp_schedules.format_date_1.pb │ │ │ ├── 150_core.scheduled_workflows.lp_schedules.format_date_1_task.yaml │ │ │ ├── 151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2.pb │ │ │ ├── 151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml │ │ │ ├── 152_core.scheduled_workflows.lp_schedules.date_formatter_wf_3.pb │ │ │ ├── 153_my_cron_scheduled_lp_3.pb │ │ │ ├── 154_core.scheduled_workflows.lp_schedules.be_positive_1.pb │ │ │ ├── 154_core.scheduled_workflows.lp_schedules.be_positive_1_task.yaml │ │ │ ├── 155_core.scheduled_workflows.lp_schedules.positive_wf_2.pb │ │ │ ├── 155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml │ │ │ ├── 156_core.scheduled_workflows.lp_schedules.positive_wf_3.pb │ │ │ ├── 157_my_fixed_rate_lp_3.pb │ │ │ ├── 158_core.type_system.custom_objects.stringify_1.pb │ │ │ ├── 158_core.type_system.custom_objects.stringify_1_task.yaml │ │ │ ├── 159_core.type_system.custom_objects.add_1.pb │ │ │ ├── 159_core.type_system.custom_objects.add_1_task.yaml │ │ │ ├── 160_core.type_system.custom_objects.upload_result_1.pb │ │ │ ├── 160_core.type_system.custom_objects.upload_result_1_task.yaml │ │ │ ├── 161_core.type_system.custom_objects.download_result_1.pb │ │ │ ├── 161_core.type_system.custom_objects.download_result_1_task.yaml │ │ │ ├── 162_core.type_system.custom_objects.wf_2.pb │ │ │ ├── 162_core.type_system.custom_objects.wf_2_wf.yaml │ │ │ ├── 163_core.type_system.custom_objects.wf_3.pb │ │ │ ├── 164_core.type_system.enums.enum_stringify_1.pb │ │ │ ├── 164_core.type_system.enums.enum_stringify_1_task.yaml │ │ │ ├── 165_core.type_system.enums.string_to_enum_1.pb │ │ │ ├── 165_core.type_system.enums.string_to_enum_1_task.yaml │ │ │ ├── 166_core.type_system.enums.enum_wf_2.pb │ │ │ ├── 166_core.type_system.enums.enum_wf_2_wf.yaml │ │ │ ├── 167_core.type_system.enums.enum_wf_3.pb │ │ │ ├── 168_core.type_system.flyte_pickle.greet_1.pb │ │ │ ├── 168_core.type_system.flyte_pickle.greet_1_task.yaml │ │ │ ├── 169_core.type_system.flyte_pickle.welcome_2.pb │ │ │ ├── 169_core.type_system.flyte_pickle.welcome_2_wf.yaml │ │ │ ├── 170_core.type_system.flyte_pickle.welcome_3.pb │ │ │ ├── 171_core.type_system.schema.get_df_1.pb │ │ │ ├── 171_core.type_system.schema.get_df_1_task.yaml │ │ │ ├── 172_core.type_system.schema.add_df_1.pb │ │ │ ├── 172_core.type_system.schema.add_df_1_task.yaml │ │ │ ├── 173_core.type_system.schema.df_wf_2.pb │ │ │ ├── 173_core.type_system.schema.df_wf_2_wf.yaml │ │ │ ├── 174_core.type_system.schema.df_wf_3.pb │ │ │ ├── 175_core.type_system.structured_dataset.get_df_1.pb │ │ │ ├── 175_core.type_system.structured_dataset.get_df_1_task.yaml │ │ │ ├── 176_core.type_system.structured_dataset.get_schema_df_1.pb │ │ │ ├── 176_core.type_system.structured_dataset.get_schema_df_1_task.yaml │ │ │ ├── 177_core.type_system.structured_dataset.get_subset_df_1.pb │ │ │ ├── 177_core.type_system.structured_dataset.get_subset_df_1_task.yaml │ │ │ ├── 178_core.type_system.structured_dataset.to_numpy_1.pb │ │ │ ├── 178_core.type_system.structured_dataset.to_numpy_1_task.yaml │ │ │ ├── 179_core.type_system.structured_dataset.pandas_compatibility_wf_2.pb │ │ │ ├── 179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml │ │ │ ├── 180_core.type_system.structured_dataset.pandas_compatibility_wf_3.pb │ │ │ ├── 181_core.type_system.structured_dataset.schema_compatibility_wf_2.pb │ │ │ ├── 181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml │ │ │ ├── 182_core.type_system.structured_dataset.schema_compatibility_wf_3.pb │ │ │ ├── 183_core.type_system.typed_schema.t1_1.pb │ │ │ ├── 183_core.type_system.typed_schema.t1_1_task.yaml │ │ │ ├── 184_core.type_system.typed_schema.t2_1.pb │ │ │ ├── 184_core.type_system.typed_schema.t2_1_task.yaml │ │ │ ├── 185_core.type_system.typed_schema.wf_2.pb │ │ │ ├── 185_core.type_system.typed_schema.wf_2_wf.yaml │ │ │ ├── 186_core.type_system.typed_schema.wf_3.pb │ │ │ ├── compiled │ │ │ ├── 000_core.containerization.multi_images.svm_trainer_1_task.json │ │ │ ├── 000_core.containerization.multi_images.svm_trainer_1_task.yaml │ │ │ ├── 001_core.containerization.multi_images.svm_predictor_1_task.json │ │ │ ├── 001_core.containerization.multi_images.svm_predictor_1_task.yaml │ │ │ ├── 002_core.containerization.multi_images.my_workflow_2_wf.json │ │ │ ├── 002_core.containerization.multi_images.my_workflow_2_wf.yaml │ │ │ ├── 004_ellipse-area-metadata-shell_1_task.json │ │ │ ├── 004_ellipse-area-metadata-shell_1_task.yaml │ │ │ ├── 005_ellipse-area-metadata-python_1_task.json │ │ │ ├── 005_ellipse-area-metadata-python_1_task.yaml │ │ │ ├── 006_ellipse-area-metadata-r_1_task.json │ │ │ ├── 006_ellipse-area-metadata-r_1_task.yaml │ │ │ ├── 007_ellipse-area-metadata-haskell_1_task.json │ │ │ ├── 007_ellipse-area-metadata-haskell_1_task.yaml │ │ │ ├── 008_ellipse-area-metadata-julia_1_task.json │ │ │ ├── 008_ellipse-area-metadata-julia_1_task.yaml │ │ │ ├── 009_core.containerization.raw_container.report_all_calculated_areas_1_task.json │ │ │ ├── 009_core.containerization.raw_container.report_all_calculated_areas_1_task.yaml │ │ │ ├── 010_core.containerization.raw_container.wf_2_wf.json │ │ │ ├── 010_core.containerization.raw_container.wf_2_wf.yaml │ │ │ ├── 012_core.containerization.use_secrets.secret_task_1_task.json │ │ │ ├── 012_core.containerization.use_secrets.secret_task_1_task.yaml │ │ │ ├── 013_core.containerization.use_secrets.user_info_task_1_task.json │ │ │ ├── 013_core.containerization.use_secrets.user_info_task_1_task.yaml │ │ │ ├── 014_core.containerization.use_secrets.secret_file_task_1_task.json │ │ │ ├── 014_core.containerization.use_secrets.secret_file_task_1_task.yaml │ │ │ ├── 015_core.containerization.use_secrets.my_secret_workflow_2_wf.json │ │ │ ├── 015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml │ │ │ ├── 017_core.control_flow.chain_tasks.read_1_task.json │ │ │ ├── 017_core.control_flow.chain_tasks.read_1_task.yaml │ │ │ ├── 018_core.control_flow.chain_tasks.write_1_task.json │ │ │ ├── 018_core.control_flow.chain_tasks.write_1_task.yaml │ │ │ ├── 019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.json │ │ │ ├── 019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml │ │ │ ├── 021_core.control_flow.checkpoint.use_checkpoint_1_task.json │ │ │ ├── 021_core.control_flow.checkpoint.use_checkpoint_1_task.yaml │ │ │ ├── 022_core.control_flow.checkpoint.example_2_wf.json │ │ │ ├── 022_core.control_flow.checkpoint.example_2_wf.yaml │ │ │ ├── 024_core.control_flow.conditions.square_1_task.json │ │ │ ├── 024_core.control_flow.conditions.square_1_task.yaml │ │ │ ├── 025_core.control_flow.conditions.double_1_task.json │ │ │ ├── 025_core.control_flow.conditions.double_1_task.yaml │ │ │ ├── 026_core.control_flow.conditions.multiplier_2_wf.json │ │ │ ├── 026_core.control_flow.conditions.multiplier_2_wf.yaml │ │ │ ├── 028_core.control_flow.conditions.multiplier_2_2_wf.json │ │ │ ├── 028_core.control_flow.conditions.multiplier_2_2_wf.yaml │ │ │ ├── 030_core.control_flow.conditions.multiplier_3_2_wf.json │ │ │ ├── 030_core.control_flow.conditions.multiplier_3_2_wf.yaml │ │ │ ├── 032_core.control_flow.conditions.coin_toss_1_task.json │ │ │ ├── 032_core.control_flow.conditions.coin_toss_1_task.yaml │ │ │ ├── 033_core.control_flow.conditions.failed_1_task.json │ │ │ ├── 033_core.control_flow.conditions.failed_1_task.yaml │ │ │ ├── 034_core.control_flow.conditions.success_1_task.json │ │ │ ├── 034_core.control_flow.conditions.success_1_task.yaml │ │ │ ├── 035_core.control_flow.conditions.basic_boolean_wf_2_wf.json │ │ │ ├── 035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml │ │ │ ├── 037_core.control_flow.conditions.bool_input_wf_2_wf.json │ │ │ ├── 037_core.control_flow.conditions.bool_input_wf_2_wf.yaml │ │ │ ├── 039_core.control_flow.conditions.nested_conditions_2_wf.json │ │ │ ├── 039_core.control_flow.conditions.nested_conditions_2_wf.yaml │ │ │ ├── 041_core.control_flow.conditions.calc_sum_1_task.json │ │ │ ├── 041_core.control_flow.conditions.calc_sum_1_task.yaml │ │ │ ├── 042_core.control_flow.conditions.consume_outputs_2_wf.json │ │ │ ├── 042_core.control_flow.conditions.consume_outputs_2_wf.yaml │ │ │ ├── 044_core.control_flow.dynamics.return_index_1_task.json │ │ │ ├── 044_core.control_flow.dynamics.return_index_1_task.yaml │ │ │ ├── 045_core.control_flow.dynamics.update_list_1_task.json │ │ │ ├── 045_core.control_flow.dynamics.update_list_1_task.yaml │ │ │ ├── 046_core.control_flow.dynamics.derive_count_1_task.json │ │ │ ├── 046_core.control_flow.dynamics.derive_count_1_task.yaml │ │ │ ├── 047_core.control_flow.dynamics.count_characters_1_task.json │ │ │ ├── 047_core.control_flow.dynamics.count_characters_1_task.yaml │ │ │ ├── 048_core.control_flow.dynamics.wf_2_wf.json │ │ │ ├── 048_core.control_flow.dynamics.wf_2_wf.yaml │ │ │ ├── 050_core.control_flow.map_task.a_mappable_task_1_task.json │ │ │ ├── 050_core.control_flow.map_task.a_mappable_task_1_task.yaml │ │ │ ├── 051_core.control_flow.map_task.coalesce_1_task.json │ │ │ ├── 051_core.control_flow.map_task.coalesce_1_task.yaml │ │ │ ├── 052_core.control_flow.map_task.mapper_a_mappable_task_0_1_task.json │ │ │ ├── 052_core.control_flow.map_task.mapper_a_mappable_task_0_1_task.yaml │ │ │ ├── 053_core.control_flow.map_task.my_map_workflow_2_wf.json │ │ │ ├── 053_core.control_flow.map_task.my_map_workflow_2_wf.yaml │ │ │ ├── 055_core.control_flow.merge_sort.split_1_task.json │ │ │ ├── 055_core.control_flow.merge_sort.split_1_task.yaml │ │ │ ├── 056_core.control_flow.merge_sort.merge_1_task.json │ │ │ ├── 056_core.control_flow.merge_sort.merge_1_task.yaml │ │ │ ├── 057_core.control_flow.merge_sort.sort_locally_1_task.json │ │ │ ├── 057_core.control_flow.merge_sort.sort_locally_1_task.yaml │ │ │ ├── 058_core.control_flow.merge_sort.merge_sort_remotely_1_task.json │ │ │ ├── 058_core.control_flow.merge_sort.merge_sort_remotely_1_task.yaml │ │ │ ├── 059_core.control_flow.merge_sort.merge_sort_2_wf.json │ │ │ ├── 059_core.control_flow.merge_sort.merge_sort_2_wf.yaml │ │ │ ├── 061_core.control_flow.subworkflows.t1_1_task.json │ │ │ ├── 061_core.control_flow.subworkflows.t1_1_task.yaml │ │ │ ├── 062_core.control_flow.subworkflows.my_subwf_2_wf.json │ │ │ ├── 062_core.control_flow.subworkflows.my_subwf_2_wf.yaml │ │ │ ├── 068_core.control_flow.subworkflows.count_freq_words_1_task.json │ │ │ ├── 068_core.control_flow.subworkflows.count_freq_words_1_task.yaml │ │ │ ├── 069_core.control_flow.subworkflows.ext_workflow_2_wf.json │ │ │ ├── 069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml │ │ │ ├── 072_core.control_flow.subworkflows.count_repetitive_words_1_task.json │ │ │ ├── 072_core.control_flow.subworkflows.count_repetitive_words_1_task.yaml │ │ │ ├── 075_my-objectstore-sensor_1_task.json │ │ │ ├── 075_my-objectstore-sensor_1_task.yaml │ │ │ ├── 076_core.extend_flyte.custom_task_plugin.print_file_1_task.json │ │ │ ├── 076_core.extend_flyte.custom_task_plugin.print_file_1_task.yaml │ │ │ ├── 077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.json │ │ │ ├── 077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml │ │ │ ├── 079_core.extend_flyte.custom_types.generate_1_task.json │ │ │ ├── 079_core.extend_flyte.custom_types.generate_1_task.yaml │ │ │ ├── 080_core.extend_flyte.custom_types.consume_1_task.json │ │ │ ├── 080_core.extend_flyte.custom_types.consume_1_task.yaml │ │ │ ├── 081_core.extend_flyte.custom_types.wf_2_wf.json │ │ │ ├── 081_core.extend_flyte.custom_types.wf_2_wf.yaml │ │ │ ├── 083_core.flyte_basics.basic_workflow.t1_1_task.json │ │ │ ├── 083_core.flyte_basics.basic_workflow.t1_1_task.yaml │ │ │ ├── 084_core.flyte_basics.basic_workflow.t2_1_task.json │ │ │ ├── 084_core.flyte_basics.basic_workflow.t2_1_task.yaml │ │ │ ├── 085_core.flyte_basics.basic_workflow.my_wf_2_wf.json │ │ │ ├── 085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml │ │ │ ├── 087_core.flyte_basics.decorating_tasks.t1_1_task.json │ │ │ ├── 087_core.flyte_basics.decorating_tasks.t1_1_task.yaml │ │ │ ├── 088_core.flyte_basics.decorating_tasks.t2_1_task.json │ │ │ ├── 088_core.flyte_basics.decorating_tasks.t2_1_task.yaml │ │ │ ├── 089_core.flyte_basics.decorating_tasks.wf_2_wf.json │ │ │ ├── 089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml │ │ │ ├── 091_core.flyte_basics.decorating_workflows.setup_1_task.json │ │ │ ├── 091_core.flyte_basics.decorating_workflows.setup_1_task.yaml │ │ │ ├── 092_core.flyte_basics.decorating_workflows.teardown_1_task.json │ │ │ ├── 092_core.flyte_basics.decorating_workflows.teardown_1_task.yaml │ │ │ ├── 093_core.flyte_basics.decorating_workflows.t1_1_task.json │ │ │ ├── 093_core.flyte_basics.decorating_workflows.t1_1_task.yaml │ │ │ ├── 094_core.flyte_basics.decorating_workflows.t2_1_task.json │ │ │ ├── 094_core.flyte_basics.decorating_workflows.t2_1_task.yaml │ │ │ ├── 095_core.flyte_basics.decorating_workflows.wf_2_wf.json │ │ │ ├── 095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml │ │ │ ├── 097_core.flyte_basics.documented_workflow.add_data_1_task.json │ │ │ ├── 097_core.flyte_basics.documented_workflow.add_data_1_task.yaml │ │ │ ├── 098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.json │ │ │ ├── 098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml │ │ │ ├── 100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.json │ │ │ ├── 100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml │ │ │ ├── 102_core.flyte_basics.documented_workflow.google_docstring_2_wf.json │ │ │ ├── 102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml │ │ │ ├── 104_core.flyte_basics.files.normalize_columns_1_task.json │ │ │ ├── 104_core.flyte_basics.files.normalize_columns_1_task.yaml │ │ │ ├── 105_core.flyte_basics.files.normalize_csv_file_2_wf.json │ │ │ ├── 105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml │ │ │ ├── 107_core.flyte_basics.folders.download_files_1_task.json │ │ │ ├── 107_core.flyte_basics.folders.download_files_1_task.yaml │ │ │ ├── 108_core.flyte_basics.folders.normalize_all_files_1_task.json │ │ │ ├── 108_core.flyte_basics.folders.normalize_all_files_1_task.yaml │ │ │ ├── 109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.json │ │ │ ├── 109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml │ │ │ ├── 111_core.flyte_basics.hello_world.say_hello_1_task.json │ │ │ ├── 111_core.flyte_basics.hello_world.say_hello_1_task.yaml │ │ │ ├── 112_core.flyte_basics.hello_world.my_wf_2_wf.json │ │ │ ├── 112_core.flyte_basics.hello_world.my_wf_2_wf.yaml │ │ │ ├── 114_core.flyte_basics.imperative_wf_style.t1_1_task.json │ │ │ ├── 114_core.flyte_basics.imperative_wf_style.t1_1_task.yaml │ │ │ ├── 115_core.flyte_basics.imperative_wf_style.t2_1_task.json │ │ │ ├── 115_core.flyte_basics.imperative_wf_style.t2_1_task.yaml │ │ │ ├── 116_core.flyte_basics.imperative_wf_style.t3_1_task.json │ │ │ ├── 116_core.flyte_basics.imperative_wf_style.t3_1_task.yaml │ │ │ ├── 117_my.imperative.workflow.example_2_wf.json │ │ │ ├── 117_my.imperative.workflow.example_2_wf.yaml │ │ │ ├── 119_core.flyte_basics.lp.square_1_task.json │ │ │ ├── 119_core.flyte_basics.lp.square_1_task.yaml │ │ │ ├── 120_core.flyte_basics.lp.my_wf_2_wf.json │ │ │ ├── 120_core.flyte_basics.lp.my_wf_2_wf.yaml │ │ │ ├── 124_core.flyte_basics.lp.greet_1_task.json │ │ │ ├── 124_core.flyte_basics.lp.greet_1_task.yaml │ │ │ ├── 125_core.flyte_basics.lp.go_greet_2_wf.json │ │ │ ├── 125_core.flyte_basics.lp.go_greet_2_wf.yaml │ │ │ ├── 128_core.flyte_basics.named_outputs.say_hello_1_task.json │ │ │ ├── 128_core.flyte_basics.named_outputs.say_hello_1_task.yaml │ │ │ ├── 129_core.flyte_basics.named_outputs.my_wf_2_wf.json │ │ │ ├── 129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml │ │ │ ├── 133__bash.task_1_1_task.json │ │ │ ├── 133__bash.task_1_1_task.yaml │ │ │ ├── 134_task_1_1_task.json │ │ │ ├── 134_task_1_1_task.yaml │ │ │ ├── 135__bash.task_2_1_task.json │ │ │ ├── 135__bash.task_2_1_task.yaml │ │ │ ├── 136_task_2_1_task.json │ │ │ ├── 136_task_2_1_task.yaml │ │ │ ├── 137__bash.task_3_1_task.json │ │ │ ├── 137__bash.task_3_1_task.yaml │ │ │ ├── 138_task_3_1_task.json │ │ │ ├── 138_task_3_1_task.yaml │ │ │ ├── 139_core.flyte_basics.shell_task.create_entities_1_task.json │ │ │ ├── 139_core.flyte_basics.shell_task.create_entities_1_task.yaml │ │ │ ├── 140_core.flyte_basics.shell_task.wf_2_wf.json │ │ │ ├── 140_core.flyte_basics.shell_task.wf_2_wf.yaml │ │ │ ├── 142_core.flyte_basics.task.square_1_task.json │ │ │ ├── 142_core.flyte_basics.task.square_1_task.yaml │ │ │ ├── 143_core.flyte_basics.task_cache.square_1_task.json │ │ │ ├── 143_core.flyte_basics.task_cache.square_1_task.yaml │ │ │ ├── 144_core.flyte_basics.task_cache.uncached_data_reading_task_1_task.json │ │ │ ├── 144_core.flyte_basics.task_cache.uncached_data_reading_task_1_task.yaml │ │ │ ├── 145_core.flyte_basics.task_cache.cached_data_processing_task_1_task.json │ │ │ ├── 145_core.flyte_basics.task_cache.cached_data_processing_task_1_task.yaml │ │ │ ├── 146_core.flyte_basics.task_cache.compare_dataframes_1_task.json │ │ │ ├── 146_core.flyte_basics.task_cache.compare_dataframes_1_task.yaml │ │ │ ├── 147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.json │ │ │ ├── 147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml │ │ │ ├── 149_core.flyte_basics.task_cache_serialize.square_1_task.json │ │ │ ├── 149_core.flyte_basics.task_cache_serialize.square_1_task.yaml │ │ │ ├── 150_core.scheduled_workflows.lp_schedules.format_date_1_task.json │ │ │ ├── 150_core.scheduled_workflows.lp_schedules.format_date_1_task.yaml │ │ │ ├── 151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.json │ │ │ ├── 151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml │ │ │ ├── 154_core.scheduled_workflows.lp_schedules.be_positive_1_task.json │ │ │ ├── 154_core.scheduled_workflows.lp_schedules.be_positive_1_task.yaml │ │ │ ├── 155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.json │ │ │ ├── 155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml │ │ │ ├── 158_core.type_system.custom_objects.stringify_1_task.json │ │ │ ├── 158_core.type_system.custom_objects.stringify_1_task.yaml │ │ │ ├── 159_core.type_system.custom_objects.add_1_task.json │ │ │ ├── 159_core.type_system.custom_objects.add_1_task.yaml │ │ │ ├── 160_core.type_system.custom_objects.upload_result_1_task.json │ │ │ ├── 160_core.type_system.custom_objects.upload_result_1_task.yaml │ │ │ ├── 161_core.type_system.custom_objects.download_result_1_task.json │ │ │ ├── 161_core.type_system.custom_objects.download_result_1_task.yaml │ │ │ ├── 162_core.type_system.custom_objects.wf_2_wf.json │ │ │ ├── 162_core.type_system.custom_objects.wf_2_wf.yaml │ │ │ ├── 164_core.type_system.enums.enum_stringify_1_task.json │ │ │ ├── 164_core.type_system.enums.enum_stringify_1_task.yaml │ │ │ ├── 165_core.type_system.enums.string_to_enum_1_task.json │ │ │ ├── 165_core.type_system.enums.string_to_enum_1_task.yaml │ │ │ ├── 166_core.type_system.enums.enum_wf_2_wf.json │ │ │ ├── 166_core.type_system.enums.enum_wf_2_wf.yaml │ │ │ ├── 168_core.type_system.flyte_pickle.greet_1_task.json │ │ │ ├── 168_core.type_system.flyte_pickle.greet_1_task.yaml │ │ │ ├── 169_core.type_system.flyte_pickle.welcome_2_wf.json │ │ │ ├── 169_core.type_system.flyte_pickle.welcome_2_wf.yaml │ │ │ ├── 171_core.type_system.schema.get_df_1_task.json │ │ │ ├── 171_core.type_system.schema.get_df_1_task.yaml │ │ │ ├── 172_core.type_system.schema.add_df_1_task.json │ │ │ ├── 172_core.type_system.schema.add_df_1_task.yaml │ │ │ ├── 173_core.type_system.schema.df_wf_2_wf.json │ │ │ ├── 173_core.type_system.schema.df_wf_2_wf.yaml │ │ │ ├── 175_core.type_system.structured_dataset.get_df_1_task.json │ │ │ ├── 175_core.type_system.structured_dataset.get_df_1_task.yaml │ │ │ ├── 176_core.type_system.structured_dataset.get_schema_df_1_task.json │ │ │ ├── 176_core.type_system.structured_dataset.get_schema_df_1_task.yaml │ │ │ ├── 177_core.type_system.structured_dataset.get_subset_df_1_task.json │ │ │ ├── 177_core.type_system.structured_dataset.get_subset_df_1_task.yaml │ │ │ ├── 178_core.type_system.structured_dataset.to_numpy_1_task.json │ │ │ ├── 178_core.type_system.structured_dataset.to_numpy_1_task.yaml │ │ │ ├── 179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.json │ │ │ ├── 179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml │ │ │ ├── 181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.json │ │ │ ├── 181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml │ │ │ ├── 183_core.type_system.typed_schema.t1_1_task.json │ │ │ ├── 183_core.type_system.typed_schema.t1_1_task.yaml │ │ │ ├── 184_core.type_system.typed_schema.t2_1_task.json │ │ │ ├── 184_core.type_system.typed_schema.t2_1_task.yaml │ │ │ ├── 185_core.type_system.typed_schema.wf_2_wf.json │ │ │ └── 185_core.type_system.typed_schema.wf_2_wf.yaml │ │ │ └── k8s │ │ │ ├── 002_core.containerization.multi_images.my_workflow_2_wf.yaml │ │ │ ├── 010_core.containerization.raw_container.wf_2_wf.yaml │ │ │ ├── 015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml │ │ │ ├── 019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml │ │ │ ├── 022_core.control_flow.checkpoint.example_2_wf.yaml │ │ │ ├── 026_core.control_flow.conditions.multiplier_2_wf.yaml │ │ │ ├── 028_core.control_flow.conditions.multiplier_2_2_wf.yaml │ │ │ ├── 030_core.control_flow.conditions.multiplier_3_2_wf.yaml │ │ │ ├── 035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml │ │ │ ├── 037_core.control_flow.conditions.bool_input_wf_2_wf.yaml │ │ │ ├── 039_core.control_flow.conditions.nested_conditions_2_wf.yaml │ │ │ ├── 042_core.control_flow.conditions.consume_outputs_2_wf.yaml │ │ │ ├── 048_core.control_flow.dynamics.wf_2_wf.yaml │ │ │ ├── 053_core.control_flow.map_task.my_map_workflow_2_wf.yaml │ │ │ ├── 059_core.control_flow.merge_sort.merge_sort_2_wf.yaml │ │ │ ├── 062_core.control_flow.subworkflows.my_subwf_2_wf.yaml │ │ │ ├── 069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml │ │ │ ├── 077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml │ │ │ ├── 081_core.extend_flyte.custom_types.wf_2_wf.yaml │ │ │ ├── 085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml │ │ │ ├── 089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml │ │ │ ├── 095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml │ │ │ ├── 098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml │ │ │ ├── 100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml │ │ │ ├── 102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml │ │ │ ├── 105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml │ │ │ ├── 109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml │ │ │ ├── 112_core.flyte_basics.hello_world.my_wf_2_wf.yaml │ │ │ ├── 117_my.imperative.workflow.example_2_wf.yaml │ │ │ ├── 120_core.flyte_basics.lp.my_wf_2_wf.yaml │ │ │ ├── 125_core.flyte_basics.lp.go_greet_2_wf.yaml │ │ │ ├── 129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml │ │ │ ├── 140_core.flyte_basics.shell_task.wf_2_wf.yaml │ │ │ ├── 147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml │ │ │ ├── 151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml │ │ │ ├── 155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml │ │ │ ├── 162_core.type_system.custom_objects.wf_2_wf.yaml │ │ │ ├── 166_core.type_system.enums.enum_wf_2_wf.yaml │ │ │ ├── 169_core.type_system.flyte_pickle.welcome_2_wf.yaml │ │ │ ├── 173_core.type_system.schema.df_wf_2_wf.yaml │ │ │ ├── 179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml │ │ │ ├── 181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml │ │ │ └── 185_core.type_system.typed_schema.wf_2_wf.yaml │ ├── testdata │ │ └── beta-one-second-functional-test.dot.golden │ ├── transformers │ │ └── k8s │ │ │ ├── builder_mock_test.go │ │ │ ├── inputs.go │ │ │ ├── inputs_test.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── testdata │ │ │ └── compiled_closure_branch_nested.json │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── workflow.go │ │ │ └── workflow_test.go │ ├── typing │ │ └── variable.go │ ├── utils.go │ ├── utils_test.go │ ├── validators │ │ ├── bindings.go │ │ ├── bindings_test.go │ │ ├── branch.go │ │ ├── branch_test.go │ │ ├── condition.go │ │ ├── interface.go │ │ ├── interface_test.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── typing.go │ │ ├── typing_test.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── vars.go │ ├── workflow_compiler.go │ └── workflow_compiler_test.go ├── controller │ ├── completed_workflows.go │ ├── completed_workflows_test.go │ ├── composite_workqueue.go │ ├── composite_workqueue_test.go │ ├── config │ │ ├── config.go │ │ ├── config_flags.go │ │ └── config_flags_test.go │ ├── controller.go │ ├── controller_test.go │ ├── executors │ │ ├── dag_structure.go │ │ ├── dag_structure_test.go │ │ ├── execution_context.go │ │ ├── execution_context_test.go │ │ ├── kube.go │ │ ├── kube_test.go │ │ ├── mocks │ │ │ ├── client.go │ │ │ ├── client_builder.go │ │ │ ├── control_flow.go │ │ │ ├── dag_structure.go │ │ │ ├── dag_structure_with_start_node.go │ │ │ ├── execution_context.go │ │ │ ├── fake.go │ │ │ ├── immutable_execution_context.go │ │ │ ├── immutable_parent_info.go │ │ │ ├── node_lookup.go │ │ │ ├── parent_info_getter.go │ │ │ ├── sub_workflow_getter.go │ │ │ ├── task_details_getter.go │ │ │ └── workflow.go │ │ ├── node_lookup.go │ │ ├── node_lookup_test.go │ │ └── workflow.go │ ├── finalizer.go │ ├── finalizer_test.go │ ├── garbage_collector.go │ ├── garbage_collector_test.go │ ├── handler.go │ ├── handler_test.go │ ├── nodes │ │ ├── array │ │ │ ├── execution_context.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── node_execution_context.go │ │ │ ├── node_execution_context_builder.go │ │ │ ├── node_lookup.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ ├── branch │ │ │ ├── comparator.go │ │ │ ├── comparator_test.go │ │ │ ├── evaluator.go │ │ │ ├── evaluator_test.go │ │ │ ├── handler.go │ │ │ └── handler_test.go │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── catalog │ │ │ ├── config.go │ │ │ ├── config_flags.go │ │ │ ├── config_flags_test.go │ │ │ ├── datacatalog │ │ │ │ ├── datacatalog.go │ │ │ │ ├── datacatalog_test.go │ │ │ │ ├── transformer.go │ │ │ │ └── transformer_test.go │ │ │ └── noop_catalog.go │ │ ├── common │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ ├── core_phase.go │ │ ├── core_phase_test.go │ │ ├── dynamic │ │ │ ├── dynamic_workflow.go │ │ │ ├── dynamic_workflow_test.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── mocks │ │ │ │ └── task_node_handler.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ ├── end │ │ │ ├── handler.go │ │ │ └── handler_test.go │ │ ├── errors │ │ │ ├── codes.go │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── executor.go │ │ ├── executor_test.go │ │ ├── factory │ │ │ └── handler_factory.go │ │ ├── gate │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ └── mocks │ │ │ │ └── signal_service_client.go │ │ ├── handler │ │ │ ├── ephase_enumer.go │ │ │ ├── state.go │ │ │ ├── state_test.go │ │ │ ├── transition.go │ │ │ ├── transition_info.go │ │ │ ├── transition_info_test.go │ │ │ └── transition_test.go │ │ ├── interfaces │ │ │ ├── handler.go │ │ │ ├── handler_factory.go │ │ │ ├── mocks │ │ │ │ ├── cacheable_node_handler.go │ │ │ │ ├── event_recorder.go │ │ │ │ ├── handler_factory.go │ │ │ │ ├── node.go │ │ │ │ ├── node_execution_context.go │ │ │ │ ├── node_execution_context_builder.go │ │ │ │ ├── node_execution_metadata.go │ │ │ │ ├── node_executor.go │ │ │ │ ├── node_handler.go │ │ │ │ ├── node_state_reader.go │ │ │ │ ├── node_state_writer.go │ │ │ │ ├── setup_context.go │ │ │ │ └── task_reader.go │ │ │ ├── node.go │ │ │ ├── node_exec_context.go │ │ │ └── state.go │ │ ├── mocks │ │ │ └── output_resolver.go │ │ ├── node_exec_context.go │ │ ├── node_exec_context_test.go │ │ ├── node_state_manager.go │ │ ├── output_resolver.go │ │ ├── output_resolver_test.go │ │ ├── predicate.go │ │ ├── predicate_test.go │ │ ├── recovery │ │ │ ├── client.go │ │ │ └── mocks │ │ │ │ └── client.go │ │ ├── resolve.go │ │ ├── resolve_test.go │ │ ├── setup_context.go │ │ ├── start │ │ │ ├── handler.go │ │ │ └── handler_test.go │ │ ├── subworkflow │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── launchplan.go │ │ │ ├── launchplan │ │ │ │ ├── admin.go │ │ │ │ ├── admin_test.go │ │ │ │ ├── adminconfig.go │ │ │ │ ├── adminconfig_flags.go │ │ │ │ ├── adminconfig_flags_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── launchplan.go │ │ │ │ ├── mocks │ │ │ │ │ ├── executor.go │ │ │ │ │ ├── flyte_admin.go │ │ │ │ │ └── reader.go │ │ │ │ ├── noop.go │ │ │ │ └── noop_test.go │ │ │ ├── launchplan_test.go │ │ │ ├── subworkflow.go │ │ │ ├── subworkflow_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── task │ │ │ ├── backoff │ │ │ │ ├── atomic_time.go │ │ │ │ ├── controller.go │ │ │ │ ├── handler.go │ │ │ │ ├── handler_map.go │ │ │ │ ├── handler_test.go │ │ │ │ ├── safe_resourcelist.go │ │ │ │ └── safe_resourcelist_test.go │ │ │ ├── cache.go │ │ │ ├── codex │ │ │ │ ├── gob_codec.go │ │ │ │ └── gob_codec_test.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_flags.go │ │ │ │ └── config_flags_test.go │ │ │ ├── event_recorder.go │ │ │ ├── event_recorder_test.go │ │ │ ├── fakeplugins │ │ │ │ ├── next_phase_state_plugin.go │ │ │ │ └── task_replayer_plugin.go │ │ │ ├── future_file_reader.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── k8s │ │ │ │ ├── event_watcher.go │ │ │ │ ├── event_watcher_test.go │ │ │ │ ├── plugin_collector.go │ │ │ │ ├── plugin_collector_test.go │ │ │ │ ├── plugin_context.go │ │ │ │ ├── plugin_manager.go │ │ │ │ ├── plugin_manager_test.go │ │ │ │ ├── task_exec_context.go │ │ │ │ └── task_exec_context_test.go │ │ │ ├── plugin_config.go │ │ │ ├── plugin_config_test.go │ │ │ ├── plugin_state_manager.go │ │ │ ├── remote_workflow_store.go │ │ │ ├── remote_workflow_store_test.go │ │ │ ├── resourcemanager │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_flags.go │ │ │ │ │ └── config_flags_test.go │ │ │ │ ├── mocks │ │ │ │ │ └── redis_client.go │ │ │ │ ├── noop_resourcemanager.go │ │ │ │ ├── redis_client.go │ │ │ │ ├── redis_resourcemanager.go │ │ │ │ ├── redis_resourcemanager_test.go │ │ │ │ ├── resourceconstraints.go │ │ │ │ ├── resourcemanager.go │ │ │ │ ├── resourcemanager_test.go │ │ │ │ └── resourcemanager_util.go │ │ │ ├── secretmanager │ │ │ │ ├── config.go │ │ │ │ ├── config_flags.go │ │ │ │ ├── config_flags_test.go │ │ │ │ └── secrets.go │ │ │ ├── setup_ctx.go │ │ │ ├── setup_ctx_test.go │ │ │ ├── taskexec_context.go │ │ │ ├── taskexec_context_test.go │ │ │ ├── transformer.go │ │ │ └── transformer_test.go │ │ ├── task_reader.go │ │ ├── transformers.go │ │ ├── transformers_test.go │ │ ├── var_name_parser.go │ │ └── var_name_parser_test.go │ ├── workers.go │ ├── workers_test.go │ ├── workflow │ │ ├── errors │ │ │ ├── codes.go │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── executor.go │ │ ├── executor_test.go │ │ └── testdata │ │ │ └── benchmark_wf.yaml │ ├── workflowstore │ │ ├── config.go │ │ ├── config_flags.go │ │ ├── config_flags_test.go │ │ ├── errors.go │ │ ├── factory.go │ │ ├── iface.go │ │ ├── inmemory.go │ │ ├── mocks │ │ │ └── FlyteWorkflow.go │ │ ├── passthrough.go │ │ ├── passthrough_test.go │ │ ├── resource_version_caching.go │ │ ├── resource_version_caching_test.go │ │ ├── terminated_tracking.go │ │ └── terminated_tracking_test.go │ ├── workqueue.go │ └── workqueue_test.go ├── leaderelection │ └── leader_election.go ├── signals │ ├── signal.go │ ├── signal_posix.go │ └── signal_windows.go ├── utils │ ├── assert │ │ └── literals.go │ ├── bindings.go │ ├── bindings_test.go │ ├── error_codes.go │ ├── failing_datastore.go │ ├── failing_datastore_test.go │ ├── helpers.go │ ├── helpers_test.go │ ├── k8s.go │ └── k8s_test.go ├── visualize │ ├── nodeq.go │ ├── sort.go │ └── visualize.go └── webhook │ ├── aws_secret_manager.go │ ├── aws_secret_manager_test.go │ ├── config │ ├── config.go │ ├── config_flags.go │ ├── config_flags_test.go │ ├── kvversion_enumer.go │ └── secretmanagertype_enumer.go │ ├── entrypoint.go │ ├── gcp_secret_manager.go │ ├── gcp_secret_manager_test.go │ ├── global_secrets.go │ ├── global_secrets_test.go │ ├── init_cert.go │ ├── k8s_secrets.go │ ├── k8s_secrets_test.go │ ├── mocks │ ├── global_secret_provider.go │ ├── mutator.go │ └── secrets_injector.go │ ├── pod.go │ ├── pod_test.go │ ├── secrets.go │ ├── secrets_test.go │ ├── testdata │ └── ca.crt │ ├── utils.go │ ├── utils_test.go │ ├── vault_secret_manager.go │ └── vault_secret_manager_test.go ├── plugins └── loader.go ├── propeller-config.yaml ├── pull_request_template.md ├── raw_examples ├── README.md ├── example-condition.yaml ├── example-inputs.yaml └── example-noinputs.yaml ├── script └── fold-logs.py └── version ├── version.go └── version_test.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.github/workflows/krew.yaml -------------------------------------------------------------------------------- /.github/workflows/upgrade_automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.github/workflows/upgrade_automation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.krew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/.krew.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/code_of_conduct/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/code_of_conduct/README.rst -------------------------------------------------------------------------------- /boilerplate/flyte/code_of_conduct/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/code_of_conduct/update.sh -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/docker_build/Makefile -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/docker_build/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/docker_build/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/docker_build/docker_build.sh -------------------------------------------------------------------------------- /boilerplate/flyte/end2end/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/end2end/Makefile -------------------------------------------------------------------------------- /boilerplate/flyte/end2end/end2end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/end2end/end2end.sh -------------------------------------------------------------------------------- /boilerplate/flyte/end2end/functional-test-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/end2end/functional-test-config.yaml -------------------------------------------------------------------------------- /boilerplate/flyte/end2end/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/end2end/run-tests.py -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_support_tools/go.mod -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_support_tools/go.sum -------------------------------------------------------------------------------- /boilerplate/flyte/golang_support_tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_support_tools/tools.go -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_test_targets/Makefile -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_test_targets/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/download_tooling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_test_targets/download_tooling.sh -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/go-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_test_targets/go-gen.sh -------------------------------------------------------------------------------- /boilerplate/flyte/golang_test_targets/goimports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golang_test_targets/goimports -------------------------------------------------------------------------------- /boilerplate/flyte/golangci_file/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golangci_file/.golangci.yml -------------------------------------------------------------------------------- /boilerplate/flyte/golangci_file/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golangci_file/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/golangci_file/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/golangci_file/update.sh -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/pull_request_template/Readme.rst -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/pull_request_template/pull_request_template.md -------------------------------------------------------------------------------- /boilerplate/flyte/pull_request_template/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/flyte/pull_request_template/update.sh -------------------------------------------------------------------------------- /boilerplate/update.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/update.cfg -------------------------------------------------------------------------------- /boilerplate/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/boilerplate/update.sh -------------------------------------------------------------------------------- /cmd/controller/cmd/init_certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/controller/cmd/init_certs.go -------------------------------------------------------------------------------- /cmd/controller/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/controller/cmd/root.go -------------------------------------------------------------------------------- /cmd/controller/cmd/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/controller/cmd/webhook.go -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/compile.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/create.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/create_test.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/delete.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/get.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/printers/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/printers/node.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/printers/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/printers/workflow.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/root.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/string_map_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/string_map_value.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/string_map_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/string_map_value_test.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/array-node-cache-serialize.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/array-node-cache-serialize.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/array-node-cache.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/array-node-cache.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/array-node-inputs.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/array-node-inputs.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/array-node.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/array-node.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/gate-node-approve.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/gate-node-approve.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/gate-node-signal.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/gate-node-signal.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/gate-node-sleep.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/gate-node-sleep.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/inputs.json.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/inputs.json.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/inputs.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/inputs.pb.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/inputs.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/inputs.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/launchplan.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/launchplan.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow.json.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow.json.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow.pb.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.json.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.json.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.pb.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/testdata/workflow_w_inputs.yaml.golden -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/util.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/cmd/visualize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/cmd/visualize.go -------------------------------------------------------------------------------- /cmd/kubectl-flyte/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/kubectl-flyte/main.go -------------------------------------------------------------------------------- /cmd/manager/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/manager/cmd/root.go -------------------------------------------------------------------------------- /cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/cmd/manager/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/codecov.yml -------------------------------------------------------------------------------- /events/admin_eventsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/admin_eventsink.go -------------------------------------------------------------------------------- /events/admin_eventsink_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/admin_eventsink_integration_test.go -------------------------------------------------------------------------------- /events/admin_eventsink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/admin_eventsink_test.go -------------------------------------------------------------------------------- /events/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/config.go -------------------------------------------------------------------------------- /events/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/config_flags.go -------------------------------------------------------------------------------- /events/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/config_flags_test.go -------------------------------------------------------------------------------- /events/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/errors/errors.go -------------------------------------------------------------------------------- /events/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/errors/errors_test.go -------------------------------------------------------------------------------- /events/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/event_recorder.go -------------------------------------------------------------------------------- /events/event_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/event_recorder_test.go -------------------------------------------------------------------------------- /events/eventsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/eventsink.go -------------------------------------------------------------------------------- /events/eventsink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/eventsink_test.go -------------------------------------------------------------------------------- /events/local_eventsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/local_eventsink.go -------------------------------------------------------------------------------- /events/local_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/local_writer.go -------------------------------------------------------------------------------- /events/mocks/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/event_recorder.go -------------------------------------------------------------------------------- /events/mocks/event_sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/event_sink.go -------------------------------------------------------------------------------- /events/mocks/eventsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/eventsink.go -------------------------------------------------------------------------------- /events/mocks/node_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/node_event_recorder.go -------------------------------------------------------------------------------- /events/mocks/task_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/task_event_recorder.go -------------------------------------------------------------------------------- /events/mocks/workflow_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/workflow_event_recorder.go -------------------------------------------------------------------------------- /events/mocks/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/mocks/writer.go -------------------------------------------------------------------------------- /events/node_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/node_event_recorder.go -------------------------------------------------------------------------------- /events/node_event_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/node_event_recorder_test.go -------------------------------------------------------------------------------- /events/task_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/task_event_recorder.go -------------------------------------------------------------------------------- /events/task_event_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/task_event_recorder_test.go -------------------------------------------------------------------------------- /events/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/test_utils.go -------------------------------------------------------------------------------- /events/workflow_event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/workflow_event_recorder.go -------------------------------------------------------------------------------- /events/workflow_event_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/events/workflow_event_recorder_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/custom-boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /kubectl-flyte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/kubectl-flyte.json -------------------------------------------------------------------------------- /manager/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/config/config.go -------------------------------------------------------------------------------- /manager/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/config/config_flags.go -------------------------------------------------------------------------------- /manager/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/config/config_flags_test.go -------------------------------------------------------------------------------- /manager/config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/config/doc.go -------------------------------------------------------------------------------- /manager/config/shardtype_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/config/shardtype_enumer.go -------------------------------------------------------------------------------- /manager/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/doc.go -------------------------------------------------------------------------------- /manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/manager.go -------------------------------------------------------------------------------- /manager/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/manager_test.go -------------------------------------------------------------------------------- /manager/shardstrategy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/doc.go -------------------------------------------------------------------------------- /manager/shardstrategy/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/environment.go -------------------------------------------------------------------------------- /manager/shardstrategy/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/hash.go -------------------------------------------------------------------------------- /manager/shardstrategy/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/hash_test.go -------------------------------------------------------------------------------- /manager/shardstrategy/mocks/shard_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/mocks/shard_strategy.go -------------------------------------------------------------------------------- /manager/shardstrategy/shard_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/shard_strategy.go -------------------------------------------------------------------------------- /manager/shardstrategy/shard_strategy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/manager/shardstrategy/shard_strategy_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/crd.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/register.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/array.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/branch.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/branch_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/error.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/execution_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/execution_config.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/gate.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/identifier.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/iface.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/BaseNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/BaseNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/BaseWorkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/BaseWorkflow.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/BaseWorkflowWithStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/BaseWorkflowWithStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableSubWorkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableSubWorkflow.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableSubWorkflowNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableSubWorkflowNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTaskNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTaskNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNode.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutionTimeInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutionTimeInfo.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/Mutable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/Mutable.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableBranchNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableBranchNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableGateNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableGateNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableSubWorkflowNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableSubWorkflowNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableTaskNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableTaskNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/NodeGetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/NodeGetter.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/NodeStatusGetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/NodeStatusGetter.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/NodeStatusVisitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/NodeStatusVisitor.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/SubWorkflowGetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/SubWorkflowGetter.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/TaskDetailsGetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/TaskDetailsGetter.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/WorkflowMeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/WorkflowMeta.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/mocks/WorkflowMetaExtended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/mocks/WorkflowMetaExtended.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/node_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/node_status.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/node_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/node_status_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/nodes.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/subworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/subworkflow.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/tasks.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/tasks_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/testdata/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/testdata/branch.json -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/testdata/connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/testdata/connections.json -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/testdata/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/testdata/task.yaml -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/testdata/workflowspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/testdata/workflowspec.yaml -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/workflow.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/workflow_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/workflow_status.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/workflow_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/workflow_status_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/workflow_test.go -------------------------------------------------------------------------------- /pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/fake/fake_flyteworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/fake/fake_flyteworkflow.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/flyteworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/flyteworkflow.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/flyteworkflow_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/flyteworkflow_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/flyteworkflow/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/flyteworkflow/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/flyteworkflow/v1alpha1/flyteworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/flyteworkflow/v1alpha1/flyteworkflow.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/flyteworkflow/v1alpha1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/flyteworkflow/v1alpha1/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go -------------------------------------------------------------------------------- /pkg/client/listers/flyteworkflow/v1alpha1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/listers/flyteworkflow/v1alpha1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/flyteworkflow/v1alpha1/flyteworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/client/listers/flyteworkflow/v1alpha1/flyteworkflow.go -------------------------------------------------------------------------------- /pkg/compiler/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/admin.go -------------------------------------------------------------------------------- /pkg/compiler/admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/admin_test.go -------------------------------------------------------------------------------- /pkg/compiler/builders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/builders.go -------------------------------------------------------------------------------- /pkg/compiler/common/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/builder.go -------------------------------------------------------------------------------- /pkg/compiler/common/id_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/id_set.go -------------------------------------------------------------------------------- /pkg/compiler/common/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/index.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/interface_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/interface_provider.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/node.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/node_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/node_builder.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/task.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/workflow.go -------------------------------------------------------------------------------- /pkg/compiler/common/mocks/workflow_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/mocks/workflow_builder.go -------------------------------------------------------------------------------- /pkg/compiler/common/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/common/reader.go -------------------------------------------------------------------------------- /pkg/compiler/errors/compiler_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/compiler_error_test.go -------------------------------------------------------------------------------- /pkg/compiler/errors/compiler_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/compiler_errors.go -------------------------------------------------------------------------------- /pkg/compiler/errors/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/config.go -------------------------------------------------------------------------------- /pkg/compiler/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/error.go -------------------------------------------------------------------------------- /pkg/compiler/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/error_test.go -------------------------------------------------------------------------------- /pkg/compiler/errors/sets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/sets.go -------------------------------------------------------------------------------- /pkg/compiler/errors/sets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/errors/sets_test.go -------------------------------------------------------------------------------- /pkg/compiler/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/requirements.go -------------------------------------------------------------------------------- /pkg/compiler/requirements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/requirements_test.go -------------------------------------------------------------------------------- /pkg/compiler/task_compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/task_compiler.go -------------------------------------------------------------------------------- /pkg/compiler/task_compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/task_compiler_test.go -------------------------------------------------------------------------------- /pkg/compiler/test/compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/compiler_test.go -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f-inputs.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f-inputs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/app-workflows-work-one-python-task-w-f.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/5_myapp.workflows.cereal.mycereal_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/5_myapp.workflows.cereal.mycereal_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/5_myapp.workflows.cereal.mycereal_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/5_myapp.workflows.cereal.mycereal_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/mycereal_condition_has_no_deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/mycereal_condition_has_no_deps.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_1.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_10_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_10_simple.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_3.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_4.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_5.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_6.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_7_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_7_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_8_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_8_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/compiled/success_9_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/compiled/success_9_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/5_myapp.workflows.cereal.mycereal_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/5_myapp.workflows.cereal.mycereal_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/mycereal_condition_has_no_deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/mycereal_condition_has_no_deps.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_1.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_10_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_10_simple.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_3.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_4.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_5.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_6.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_7_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_7_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_8_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_8_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/k8s/success_9_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/k8s/success_9_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/mycereal_condition_has_no_deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/mycereal_condition_has_no_deps.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_1.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_10_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_10_simple.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_2.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_3.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_4.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_5.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_6.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_7_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_7_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_8_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_8_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/branch/success_9_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/branch/success_9_nested.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/dynamic/success_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/dynamic/success_1.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/004_ellipse-area-metadata-shell_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/004_ellipse-area-metadata-shell_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/004_ellipse-area-metadata-shell_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/004_ellipse-area-metadata-shell_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/005_ellipse-area-metadata-python_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/005_ellipse-area-metadata-python_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/005_ellipse-area-metadata-python_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/005_ellipse-area-metadata-python_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/006_ellipse-area-metadata-r_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/006_ellipse-area-metadata-r_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/006_ellipse-area-metadata-r_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/006_ellipse-area-metadata-r_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/007_ellipse-area-metadata-haskell_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/007_ellipse-area-metadata-haskell_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/007_ellipse-area-metadata-haskell_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/007_ellipse-area-metadata-haskell_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/008_ellipse-area-metadata-julia_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/008_ellipse-area-metadata-julia_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/008_ellipse-area-metadata-julia_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/008_ellipse-area-metadata-julia_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/010_core.containerization.raw_container.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/010_core.containerization.raw_container.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/011_core.containerization.raw_container.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/011_core.containerization.raw_container.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/017_core.control_flow.chain_tasks.read_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/017_core.control_flow.chain_tasks.read_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/017_core.control_flow.chain_tasks.read_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/017_core.control_flow.chain_tasks.read_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/018_core.control_flow.chain_tasks.write_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/018_core.control_flow.chain_tasks.write_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/022_core.control_flow.checkpoint.example_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/022_core.control_flow.checkpoint.example_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/022_core.control_flow.checkpoint.example_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/022_core.control_flow.checkpoint.example_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/023_core.control_flow.checkpoint.example_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/023_core.control_flow.checkpoint.example_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/024_core.control_flow.conditions.square_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/024_core.control_flow.conditions.square_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/025_core.control_flow.conditions.double_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/025_core.control_flow.conditions.double_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/026_core.control_flow.conditions.multiplier_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/026_core.control_flow.conditions.multiplier_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/027_core.control_flow.conditions.multiplier_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/027_core.control_flow.conditions.multiplier_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/028_core.control_flow.conditions.multiplier_2_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/028_core.control_flow.conditions.multiplier_2_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/029_core.control_flow.conditions.multiplier_2_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/029_core.control_flow.conditions.multiplier_2_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/030_core.control_flow.conditions.multiplier_3_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/030_core.control_flow.conditions.multiplier_3_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/031_core.control_flow.conditions.multiplier_3_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/031_core.control_flow.conditions.multiplier_3_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/032_core.control_flow.conditions.coin_toss_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/032_core.control_flow.conditions.coin_toss_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/033_core.control_flow.conditions.failed_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/033_core.control_flow.conditions.failed_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/034_core.control_flow.conditions.success_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/034_core.control_flow.conditions.success_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/041_core.control_flow.conditions.calc_sum_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/041_core.control_flow.conditions.calc_sum_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/044_core.control_flow.dynamics.return_index_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/044_core.control_flow.dynamics.return_index_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/045_core.control_flow.dynamics.update_list_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/045_core.control_flow.dynamics.update_list_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/046_core.control_flow.dynamics.derive_count_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/046_core.control_flow.dynamics.derive_count_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/048_core.control_flow.dynamics.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/048_core.control_flow.dynamics.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/048_core.control_flow.dynamics.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/048_core.control_flow.dynamics.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/049_core.control_flow.dynamics.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/049_core.control_flow.dynamics.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/051_core.control_flow.map_task.coalesce_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/051_core.control_flow.map_task.coalesce_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/055_core.control_flow.merge_sort.split_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/055_core.control_flow.merge_sort.split_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/055_core.control_flow.merge_sort.split_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/055_core.control_flow.merge_sort.split_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/056_core.control_flow.merge_sort.merge_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/056_core.control_flow.merge_sort.merge_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/059_core.control_flow.merge_sort.merge_sort_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/059_core.control_flow.merge_sort.merge_sort_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/060_core.control_flow.merge_sort.merge_sort_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/060_core.control_flow.merge_sort.merge_sort_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/061_core.control_flow.subworkflows.t1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/061_core.control_flow.subworkflows.t1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/062_core.control_flow.subworkflows.my_subwf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/062_core.control_flow.subworkflows.my_subwf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/063_core.control_flow.subworkflows.my_subwf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/063_core.control_flow.subworkflows.my_subwf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/071_parent_workflow_execution_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/071_parent_workflow_execution_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/075_my-objectstore-sensor_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/075_my-objectstore-sensor_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/075_my-objectstore-sensor_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/075_my-objectstore-sensor_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/079_core.extend_flyte.custom_types.generate_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/079_core.extend_flyte.custom_types.generate_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/080_core.extend_flyte.custom_types.consume_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/080_core.extend_flyte.custom_types.consume_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/081_core.extend_flyte.custom_types.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/081_core.extend_flyte.custom_types.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/081_core.extend_flyte.custom_types.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/081_core.extend_flyte.custom_types.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/082_core.extend_flyte.custom_types.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/082_core.extend_flyte.custom_types.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/083_core.flyte_basics.basic_workflow.t1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/083_core.flyte_basics.basic_workflow.t1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/084_core.flyte_basics.basic_workflow.t2_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/084_core.flyte_basics.basic_workflow.t2_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/085_core.flyte_basics.basic_workflow.my_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/085_core.flyte_basics.basic_workflow.my_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/086_core.flyte_basics.basic_workflow.my_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/086_core.flyte_basics.basic_workflow.my_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/087_core.flyte_basics.decorating_tasks.t1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/087_core.flyte_basics.decorating_tasks.t1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/088_core.flyte_basics.decorating_tasks.t2_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/088_core.flyte_basics.decorating_tasks.t2_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/089_core.flyte_basics.decorating_tasks.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/089_core.flyte_basics.decorating_tasks.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/090_core.flyte_basics.decorating_tasks.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/090_core.flyte_basics.decorating_tasks.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/111_core.flyte_basics.hello_world.say_hello_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/111_core.flyte_basics.hello_world.say_hello_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/112_core.flyte_basics.hello_world.my_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/112_core.flyte_basics.hello_world.my_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/113_core.flyte_basics.hello_world.my_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/113_core.flyte_basics.hello_world.my_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/117_my.imperative.workflow.example_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/117_my.imperative.workflow.example_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/117_my.imperative.workflow.example_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/117_my.imperative.workflow.example_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/118_my.imperative.workflow.example_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/118_my.imperative.workflow.example_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/119_core.flyte_basics.lp.square_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/119_core.flyte_basics.lp.square_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/119_core.flyte_basics.lp.square_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/119_core.flyte_basics.lp.square_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/120_core.flyte_basics.lp.my_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/120_core.flyte_basics.lp.my_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/120_core.flyte_basics.lp.my_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/120_core.flyte_basics.lp.my_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/121_core.flyte_basics.lp.my_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/121_core.flyte_basics.lp.my_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/122_default_4_lp_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/122_default_4_lp_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/123_always_2_lp_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/123_always_2_lp_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/124_core.flyte_basics.lp.greet_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/124_core.flyte_basics.lp.greet_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/124_core.flyte_basics.lp.greet_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/124_core.flyte_basics.lp.greet_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/125_core.flyte_basics.lp.go_greet_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/125_core.flyte_basics.lp.go_greet_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/125_core.flyte_basics.lp.go_greet_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/125_core.flyte_basics.lp.go_greet_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/126_core.flyte_basics.lp.go_greet_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/126_core.flyte_basics.lp.go_greet_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/127_morning_greeting_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/127_morning_greeting_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/129_core.flyte_basics.named_outputs.my_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/129_core.flyte_basics.named_outputs.my_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/130_core.flyte_basics.named_outputs.my_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/130_core.flyte_basics.named_outputs.my_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/133__bash.task_1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/133__bash.task_1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/133__bash.task_1_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/133__bash.task_1_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/134_task_1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/134_task_1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/134_task_1_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/134_task_1_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/135__bash.task_2_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/135__bash.task_2_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/135__bash.task_2_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/135__bash.task_2_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/136_task_2_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/136_task_2_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/136_task_2_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/136_task_2_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/137__bash.task_3_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/137__bash.task_3_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/137__bash.task_3_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/137__bash.task_3_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/138_task_3_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/138_task_3_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/138_task_3_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/138_task_3_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/140_core.flyte_basics.shell_task.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/140_core.flyte_basics.shell_task.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/140_core.flyte_basics.shell_task.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/140_core.flyte_basics.shell_task.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/141_core.flyte_basics.shell_task.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/141_core.flyte_basics.shell_task.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/142_core.flyte_basics.task.square_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/142_core.flyte_basics.task.square_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/142_core.flyte_basics.task.square_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/142_core.flyte_basics.task.square_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/143_core.flyte_basics.task_cache.square_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/143_core.flyte_basics.task_cache.square_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/153_my_cron_scheduled_lp_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/153_my_cron_scheduled_lp_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/157_my_fixed_rate_lp_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/157_my_fixed_rate_lp_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/159_core.type_system.custom_objects.add_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/159_core.type_system.custom_objects.add_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/162_core.type_system.custom_objects.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/162_core.type_system.custom_objects.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/162_core.type_system.custom_objects.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/162_core.type_system.custom_objects.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/163_core.type_system.custom_objects.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/163_core.type_system.custom_objects.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/164_core.type_system.enums.enum_stringify_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/164_core.type_system.enums.enum_stringify_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/165_core.type_system.enums.string_to_enum_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/165_core.type_system.enums.string_to_enum_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/166_core.type_system.enums.enum_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/166_core.type_system.enums.enum_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/166_core.type_system.enums.enum_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/166_core.type_system.enums.enum_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/167_core.type_system.enums.enum_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/167_core.type_system.enums.enum_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/168_core.type_system.flyte_pickle.greet_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/168_core.type_system.flyte_pickle.greet_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/169_core.type_system.flyte_pickle.welcome_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/169_core.type_system.flyte_pickle.welcome_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/170_core.type_system.flyte_pickle.welcome_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/170_core.type_system.flyte_pickle.welcome_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/171_core.type_system.schema.get_df_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/171_core.type_system.schema.get_df_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/171_core.type_system.schema.get_df_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/171_core.type_system.schema.get_df_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/172_core.type_system.schema.add_df_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/172_core.type_system.schema.add_df_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/172_core.type_system.schema.add_df_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/172_core.type_system.schema.add_df_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/173_core.type_system.schema.df_wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/173_core.type_system.schema.df_wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/173_core.type_system.schema.df_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/173_core.type_system.schema.df_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/174_core.type_system.schema.df_wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/174_core.type_system.schema.df_wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/183_core.type_system.typed_schema.t1_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/183_core.type_system.typed_schema.t1_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/183_core.type_system.typed_schema.t1_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/183_core.type_system.typed_schema.t1_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/184_core.type_system.typed_schema.t2_1.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/184_core.type_system.typed_schema.t2_1.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/184_core.type_system.typed_schema.t2_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/184_core.type_system.typed_schema.t2_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/185_core.type_system.typed_schema.wf_2.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/185_core.type_system.typed_schema.wf_2.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/185_core.type_system.typed_schema.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/185_core.type_system.typed_schema.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/186_core.type_system.typed_schema.wf_3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/186_core.type_system.typed_schema.wf_3.pb -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/006_ellipse-area-metadata-r_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/006_ellipse-area-metadata-r_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/006_ellipse-area-metadata-r_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/006_ellipse-area-metadata-r_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/075_my-objectstore-sensor_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/075_my-objectstore-sensor_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/075_my-objectstore-sensor_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/075_my-objectstore-sensor_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/133__bash.task_1_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/133__bash.task_1_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/133__bash.task_1_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/133__bash.task_1_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/134_task_1_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/134_task_1_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/134_task_1_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/134_task_1_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/135__bash.task_2_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/135__bash.task_2_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/135__bash.task_2_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/135__bash.task_2_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/136_task_2_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/136_task_2_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/136_task_2_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/136_task_2_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/137__bash.task_3_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/137__bash.task_3_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/137__bash.task_3_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/137__bash.task_3_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/138_task_3_1_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/138_task_3_1_task.json -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/compiled/138_task_3_1_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/compiled/138_task_3_1_task.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml -------------------------------------------------------------------------------- /pkg/compiler/testdata/beta-one-second-functional-test.dot.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/testdata/beta-one-second-functional-test.dot.golden -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/builder_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/builder_mock_test.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/inputs.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/inputs_test.go: -------------------------------------------------------------------------------- 1 | package k8s 2 | -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/node.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/node_test.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/testdata/compiled_closure_branch_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/testdata/compiled_closure_branch_nested.json -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/utils.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/utils_test.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/workflow.go -------------------------------------------------------------------------------- /pkg/compiler/transformers/k8s/workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/transformers/k8s/workflow_test.go -------------------------------------------------------------------------------- /pkg/compiler/typing/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/typing/variable.go -------------------------------------------------------------------------------- /pkg/compiler/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/utils.go -------------------------------------------------------------------------------- /pkg/compiler/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/utils_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/bindings.go -------------------------------------------------------------------------------- /pkg/compiler/validators/bindings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/bindings_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/branch.go -------------------------------------------------------------------------------- /pkg/compiler/validators/branch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/branch_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/condition.go -------------------------------------------------------------------------------- /pkg/compiler/validators/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/interface.go -------------------------------------------------------------------------------- /pkg/compiler/validators/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/interface_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/node.go -------------------------------------------------------------------------------- /pkg/compiler/validators/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/node_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/typing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/typing.go -------------------------------------------------------------------------------- /pkg/compiler/validators/typing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/typing_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/utils.go -------------------------------------------------------------------------------- /pkg/compiler/validators/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/utils_test.go -------------------------------------------------------------------------------- /pkg/compiler/validators/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/validators/vars.go -------------------------------------------------------------------------------- /pkg/compiler/workflow_compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/workflow_compiler.go -------------------------------------------------------------------------------- /pkg/compiler/workflow_compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/compiler/workflow_compiler_test.go -------------------------------------------------------------------------------- /pkg/controller/completed_workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/completed_workflows.go -------------------------------------------------------------------------------- /pkg/controller/completed_workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/completed_workflows_test.go -------------------------------------------------------------------------------- /pkg/controller/composite_workqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/composite_workqueue.go -------------------------------------------------------------------------------- /pkg/controller/composite_workqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/composite_workqueue_test.go -------------------------------------------------------------------------------- /pkg/controller/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/config/config.go -------------------------------------------------------------------------------- /pkg/controller/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/config/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/config/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/executors/dag_structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/dag_structure.go -------------------------------------------------------------------------------- /pkg/controller/executors/dag_structure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/dag_structure_test.go -------------------------------------------------------------------------------- /pkg/controller/executors/execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/execution_context.go -------------------------------------------------------------------------------- /pkg/controller/executors/execution_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/execution_context_test.go -------------------------------------------------------------------------------- /pkg/controller/executors/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/kube.go -------------------------------------------------------------------------------- /pkg/controller/executors/kube_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/kube_test.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/client.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/client_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/client_builder.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/control_flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/control_flow.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/dag_structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/dag_structure.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/dag_structure_with_start_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/dag_structure_with_start_node.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/execution_context.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/fake.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/immutable_execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/immutable_execution_context.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/immutable_parent_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/immutable_parent_info.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/node_lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/node_lookup.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/parent_info_getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/parent_info_getter.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/sub_workflow_getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/sub_workflow_getter.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/task_details_getter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/task_details_getter.go -------------------------------------------------------------------------------- /pkg/controller/executors/mocks/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/mocks/workflow.go -------------------------------------------------------------------------------- /pkg/controller/executors/node_lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/node_lookup.go -------------------------------------------------------------------------------- /pkg/controller/executors/node_lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/node_lookup_test.go -------------------------------------------------------------------------------- /pkg/controller/executors/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/executors/workflow.go -------------------------------------------------------------------------------- /pkg/controller/finalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/finalizer.go -------------------------------------------------------------------------------- /pkg/controller/finalizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/finalizer_test.go -------------------------------------------------------------------------------- /pkg/controller/garbage_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/garbage_collector.go -------------------------------------------------------------------------------- /pkg/controller/garbage_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/garbage_collector_test.go -------------------------------------------------------------------------------- /pkg/controller/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/handler.go -------------------------------------------------------------------------------- /pkg/controller/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/execution_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/node_execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/node_execution_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/node_execution_context_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/node_execution_context_builder.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/node_lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/node_lookup.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/utils.go -------------------------------------------------------------------------------- /pkg/controller/nodes/array/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/array/utils_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/comparator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/comparator.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/comparator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/comparator_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/evaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/evaluator.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/evaluator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/evaluator_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/branch/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/branch/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/cache.go -------------------------------------------------------------------------------- /pkg/controller/nodes/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/cache_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/config.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/datacatalog/datacatalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/datacatalog/datacatalog.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/datacatalog/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/datacatalog/transformer.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/datacatalog/transformer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/datacatalog/transformer_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/catalog/noop_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/catalog/noop_catalog.go -------------------------------------------------------------------------------- /pkg/controller/nodes/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/common/utils.go -------------------------------------------------------------------------------- /pkg/controller/nodes/common/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/common/utils_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/core_phase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/core_phase.go -------------------------------------------------------------------------------- /pkg/controller/nodes/core_phase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/core_phase_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/dynamic_workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/dynamic_workflow.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/dynamic_workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/dynamic_workflow_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/mocks/task_node_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/mocks/task_node_handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/utils.go -------------------------------------------------------------------------------- /pkg/controller/nodes/dynamic/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/dynamic/utils_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/end/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/end/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/end/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/end/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/errors/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/errors/codes.go -------------------------------------------------------------------------------- /pkg/controller/nodes/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/errors/errors.go -------------------------------------------------------------------------------- /pkg/controller/nodes/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/errors/errors_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/executor.go -------------------------------------------------------------------------------- /pkg/controller/nodes/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/executor_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/factory/handler_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/factory/handler_factory.go -------------------------------------------------------------------------------- /pkg/controller/nodes/gate/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/gate/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/gate/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/gate/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/gate/mocks/signal_service_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/gate/mocks/signal_service_client.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/ephase_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/ephase_enumer.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/state.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/state_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/transition.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/transition_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/transition_info.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/transition_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/transition_info_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/handler/transition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/handler/transition_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/handler_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/handler_factory.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/cacheable_node_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/cacheable_node_handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/event_recorder.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/handler_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/handler_factory.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_execution_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_execution_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_execution_context_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_execution_context_builder.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_executor.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_state_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_state_reader.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/node_state_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/node_state_writer.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/setup_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/setup_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/mocks/task_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/mocks/task_reader.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/node.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/node_exec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/node_exec_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/interfaces/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/interfaces/state.go -------------------------------------------------------------------------------- /pkg/controller/nodes/mocks/output_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/mocks/output_resolver.go -------------------------------------------------------------------------------- /pkg/controller/nodes/node_exec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/node_exec_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/node_exec_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/node_exec_context_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/node_state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/node_state_manager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/output_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/output_resolver.go -------------------------------------------------------------------------------- /pkg/controller/nodes/output_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/output_resolver_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/predicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/predicate.go -------------------------------------------------------------------------------- /pkg/controller/nodes/predicate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/predicate_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/recovery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/recovery/client.go -------------------------------------------------------------------------------- /pkg/controller/nodes/recovery/mocks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/recovery/mocks/client.go -------------------------------------------------------------------------------- /pkg/controller/nodes/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/resolve.go -------------------------------------------------------------------------------- /pkg/controller/nodes/resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/resolve_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/setup_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/setup_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/start/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/start/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/start/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/start/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/admin.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/admin_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/adminconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/adminconfig.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/adminconfig_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/adminconfig_flags.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/adminconfig_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/adminconfig_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/errors.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/errors_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/launchplan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/launchplan.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/noop.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan/noop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan/noop_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/launchplan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/launchplan_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/subworkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/subworkflow.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/subworkflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/subworkflow_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/util.go -------------------------------------------------------------------------------- /pkg/controller/nodes/subworkflow/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/subworkflow/util_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/atomic_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/atomic_time.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/controller.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/handler_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/handler_map.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/safe_resourcelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/safe_resourcelist.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/backoff/safe_resourcelist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/backoff/safe_resourcelist_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/cache.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/codex/gob_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/codex/gob_codec.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/codex/gob_codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/codex/gob_codec_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/config/config.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/config/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/config/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/event_recorder.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/event_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/event_recorder_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/fakeplugins/next_phase_state_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/fakeplugins/next_phase_state_plugin.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/fakeplugins/task_replayer_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/fakeplugins/task_replayer_plugin.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/future_file_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/future_file_reader.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/handler.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/handler_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/event_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/event_watcher.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/event_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/event_watcher_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/plugin_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/plugin_collector.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/plugin_collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/plugin_collector_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/plugin_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/plugin_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/plugin_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/plugin_manager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/plugin_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/plugin_manager_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/task_exec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/task_exec_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/k8s/task_exec_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/k8s/task_exec_context_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/plugin_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/plugin_config.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/plugin_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/plugin_config_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/plugin_state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/plugin_state_manager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/remote_workflow_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/remote_workflow_store.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/remote_workflow_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/remote_workflow_store_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/config/config.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/config/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/config/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/mocks/redis_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/mocks/redis_client.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/noop_resourcemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/noop_resourcemanager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/redis_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/redis_client.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/redis_resourcemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/redis_resourcemanager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/redis_resourcemanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/redis_resourcemanager_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/resourceconstraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/resourceconstraints.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/resourcemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/resourcemanager.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/resourcemanager/resourcemanager_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/resourcemanager/resourcemanager_util.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/secretmanager/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/secretmanager/config.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/secretmanager/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/secretmanager/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/secretmanager/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/secretmanager/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/secretmanager/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/secretmanager/secrets.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/setup_ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/setup_ctx.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/setup_ctx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/setup_ctx_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/taskexec_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/taskexec_context.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/taskexec_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/taskexec_context_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/transformer.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task/transformer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task/transformer_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/task_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/task_reader.go -------------------------------------------------------------------------------- /pkg/controller/nodes/transformers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/transformers.go -------------------------------------------------------------------------------- /pkg/controller/nodes/transformers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/transformers_test.go -------------------------------------------------------------------------------- /pkg/controller/nodes/var_name_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/var_name_parser.go -------------------------------------------------------------------------------- /pkg/controller/nodes/var_name_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/nodes/var_name_parser_test.go -------------------------------------------------------------------------------- /pkg/controller/workers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workers.go -------------------------------------------------------------------------------- /pkg/controller/workers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workers_test.go -------------------------------------------------------------------------------- /pkg/controller/workflow/errors/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/errors/codes.go -------------------------------------------------------------------------------- /pkg/controller/workflow/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/errors/errors.go -------------------------------------------------------------------------------- /pkg/controller/workflow/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/errors/errors_test.go -------------------------------------------------------------------------------- /pkg/controller/workflow/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/executor.go -------------------------------------------------------------------------------- /pkg/controller/workflow/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/executor_test.go -------------------------------------------------------------------------------- /pkg/controller/workflow/testdata/benchmark_wf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflow/testdata/benchmark_wf.yaml -------------------------------------------------------------------------------- /pkg/controller/workflowstore/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/config.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/config_flags.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/config_flags_test.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/errors.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/factory.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/iface.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/inmemory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/inmemory.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/mocks/FlyteWorkflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/mocks/FlyteWorkflow.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/passthrough.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/passthrough.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/passthrough_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/passthrough_test.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/resource_version_caching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/resource_version_caching.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/resource_version_caching_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/resource_version_caching_test.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/terminated_tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/terminated_tracking.go -------------------------------------------------------------------------------- /pkg/controller/workflowstore/terminated_tracking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workflowstore/terminated_tracking_test.go -------------------------------------------------------------------------------- /pkg/controller/workqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workqueue.go -------------------------------------------------------------------------------- /pkg/controller/workqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/controller/workqueue_test.go -------------------------------------------------------------------------------- /pkg/leaderelection/leader_election.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/leaderelection/leader_election.go -------------------------------------------------------------------------------- /pkg/signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/signals/signal.go -------------------------------------------------------------------------------- /pkg/signals/signal_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/signals/signal_posix.go -------------------------------------------------------------------------------- /pkg/signals/signal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/signals/signal_windows.go -------------------------------------------------------------------------------- /pkg/utils/assert/literals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/assert/literals.go -------------------------------------------------------------------------------- /pkg/utils/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/bindings.go -------------------------------------------------------------------------------- /pkg/utils/bindings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/bindings_test.go -------------------------------------------------------------------------------- /pkg/utils/error_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/error_codes.go -------------------------------------------------------------------------------- /pkg/utils/failing_datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/failing_datastore.go -------------------------------------------------------------------------------- /pkg/utils/failing_datastore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/failing_datastore_test.go -------------------------------------------------------------------------------- /pkg/utils/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/helpers.go -------------------------------------------------------------------------------- /pkg/utils/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/helpers_test.go -------------------------------------------------------------------------------- /pkg/utils/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/k8s.go -------------------------------------------------------------------------------- /pkg/utils/k8s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/utils/k8s_test.go -------------------------------------------------------------------------------- /pkg/visualize/nodeq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/visualize/nodeq.go -------------------------------------------------------------------------------- /pkg/visualize/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/visualize/sort.go -------------------------------------------------------------------------------- /pkg/visualize/visualize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/visualize/visualize.go -------------------------------------------------------------------------------- /pkg/webhook/aws_secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/aws_secret_manager.go -------------------------------------------------------------------------------- /pkg/webhook/aws_secret_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/aws_secret_manager_test.go -------------------------------------------------------------------------------- /pkg/webhook/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/config/config.go -------------------------------------------------------------------------------- /pkg/webhook/config/config_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/config/config_flags.go -------------------------------------------------------------------------------- /pkg/webhook/config/config_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/config/config_flags_test.go -------------------------------------------------------------------------------- /pkg/webhook/config/kvversion_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/config/kvversion_enumer.go -------------------------------------------------------------------------------- /pkg/webhook/config/secretmanagertype_enumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/config/secretmanagertype_enumer.go -------------------------------------------------------------------------------- /pkg/webhook/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/entrypoint.go -------------------------------------------------------------------------------- /pkg/webhook/gcp_secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/gcp_secret_manager.go -------------------------------------------------------------------------------- /pkg/webhook/gcp_secret_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/gcp_secret_manager_test.go -------------------------------------------------------------------------------- /pkg/webhook/global_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/global_secrets.go -------------------------------------------------------------------------------- /pkg/webhook/global_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/global_secrets_test.go -------------------------------------------------------------------------------- /pkg/webhook/init_cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/init_cert.go -------------------------------------------------------------------------------- /pkg/webhook/k8s_secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/k8s_secrets.go -------------------------------------------------------------------------------- /pkg/webhook/k8s_secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/k8s_secrets_test.go -------------------------------------------------------------------------------- /pkg/webhook/mocks/global_secret_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/mocks/global_secret_provider.go -------------------------------------------------------------------------------- /pkg/webhook/mocks/mutator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/mocks/mutator.go -------------------------------------------------------------------------------- /pkg/webhook/mocks/secrets_injector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/mocks/secrets_injector.go -------------------------------------------------------------------------------- /pkg/webhook/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/pod.go -------------------------------------------------------------------------------- /pkg/webhook/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/pod_test.go -------------------------------------------------------------------------------- /pkg/webhook/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/secrets.go -------------------------------------------------------------------------------- /pkg/webhook/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/secrets_test.go -------------------------------------------------------------------------------- /pkg/webhook/testdata/ca.crt: -------------------------------------------------------------------------------- 1 | SGVsbG8gV29ybGQK 2 | -------------------------------------------------------------------------------- /pkg/webhook/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/utils.go -------------------------------------------------------------------------------- /pkg/webhook/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/utils_test.go -------------------------------------------------------------------------------- /pkg/webhook/vault_secret_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/vault_secret_manager.go -------------------------------------------------------------------------------- /pkg/webhook/vault_secret_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pkg/webhook/vault_secret_manager_test.go -------------------------------------------------------------------------------- /plugins/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/plugins/loader.go -------------------------------------------------------------------------------- /propeller-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/propeller-config.yaml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /raw_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/raw_examples/README.md -------------------------------------------------------------------------------- /raw_examples/example-condition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/raw_examples/example-condition.yaml -------------------------------------------------------------------------------- /raw_examples/example-inputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/raw_examples/example-inputs.yaml -------------------------------------------------------------------------------- /raw_examples/example-noinputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/raw_examples/example-noinputs.yaml -------------------------------------------------------------------------------- /script/fold-logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/script/fold-logs.py -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/version/version.go -------------------------------------------------------------------------------- /version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyteorg/flytepropeller/HEAD/version/version_test.go --------------------------------------------------------------------------------