├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions.md ├── PULL_REQUEST_TEMPLATE.md ├── issue_label_bot.yaml ├── renovate.json5 ├── semantic.yml ├── stale.yml └── workflows │ ├── codeql.yml │ └── kfp-tekton-unittests.yml ├── .gitignore ├── .kfp-rebase-version ├── .pylintrc ├── .readthedocs.yml ├── .style.yapf ├── .tekton ├── listener.yaml ├── pipeline.yaml ├── task.yaml └── tekton-catalog │ ├── README.md │ ├── listener.yaml │ ├── pipeline.yaml │ └── tasks.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── VERSION ├── backend ├── Dockerfile ├── Dockerfile.cacheserver ├── Dockerfile.persistenceagent ├── Dockerfile.scheduledworkflow ├── Dockerfile.viewercontroller ├── Makefile ├── README.md ├── api │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── build_kfp_server_api_python_package.sh │ ├── hack │ │ └── generator.sh │ └── v1 │ │ ├── auth.proto │ │ ├── error.proto │ │ ├── experiment.proto │ │ ├── filter.proto │ │ ├── go_client │ │ ├── auth.pb.go │ │ ├── auth.pb.gw.go │ │ ├── error.pb.go │ │ ├── experiment.pb.go │ │ ├── experiment.pb.gw.go │ │ ├── filter.pb.go │ │ ├── healthz.pb.go │ │ ├── healthz.pb.gw.go │ │ ├── job.pb.go │ │ ├── job.pb.gw.go │ │ ├── parameter.pb.go │ │ ├── pipeline.pb.go │ │ ├── pipeline.pb.gw.go │ │ ├── pipeline_spec.pb.go │ │ ├── report.pb.go │ │ ├── report.pb.gw.go │ │ ├── resource_reference.pb.go │ │ ├── run.pb.go │ │ ├── run.pb.gw.go │ │ ├── task.pb.go │ │ ├── task.pb.gw.go │ │ ├── visualization.pb.go │ │ └── visualization.pb.gw.go │ │ ├── go_http_client │ │ ├── experiment_client │ │ │ ├── experiment_client.go │ │ │ └── experiment_service │ │ │ │ ├── experiment_service_archive_experiment_parameters.go │ │ │ │ ├── experiment_service_archive_experiment_responses.go │ │ │ │ ├── experiment_service_client.go │ │ │ │ ├── experiment_service_create_experiment_parameters.go │ │ │ │ ├── experiment_service_create_experiment_responses.go │ │ │ │ ├── experiment_service_delete_experiment_parameters.go │ │ │ │ ├── experiment_service_delete_experiment_responses.go │ │ │ │ ├── experiment_service_get_experiment_parameters.go │ │ │ │ ├── experiment_service_get_experiment_responses.go │ │ │ │ ├── experiment_service_list_experiment_parameters.go │ │ │ │ ├── experiment_service_list_experiment_responses.go │ │ │ │ ├── experiment_service_unarchive_experiment_parameters.go │ │ │ │ └── experiment_service_unarchive_experiment_responses.go │ │ ├── experiment_model │ │ │ ├── googlerpc_status.go │ │ │ ├── protobuf_any.go │ │ │ ├── v1_experiment.go │ │ │ ├── v1_experiment_storage_state.go │ │ │ ├── v1_list_experiments_response.go │ │ │ ├── v1_relationship.go │ │ │ ├── v1_resource_key.go │ │ │ ├── v1_resource_reference.go │ │ │ └── v1_resource_type.go │ │ ├── healthz_client │ │ │ ├── healthz_client.go │ │ │ └── healthz_service │ │ │ │ ├── healthz_service_client.go │ │ │ │ ├── healthz_service_get_healthz_parameters.go │ │ │ │ └── healthz_service_get_healthz_responses.go │ │ ├── healthz_model │ │ │ ├── googlerpc_status.go │ │ │ ├── protobuf_any.go │ │ │ └── v1_get_healthz_response.go │ │ ├── job_client │ │ │ ├── job_client.go │ │ │ └── job_service │ │ │ │ ├── job_service_client.go │ │ │ │ ├── job_service_create_job_parameters.go │ │ │ │ ├── job_service_create_job_responses.go │ │ │ │ ├── job_service_delete_job_parameters.go │ │ │ │ ├── job_service_delete_job_responses.go │ │ │ │ ├── job_service_disable_job_parameters.go │ │ │ │ ├── job_service_disable_job_responses.go │ │ │ │ ├── job_service_enable_job_parameters.go │ │ │ │ ├── job_service_enable_job_responses.go │ │ │ │ ├── job_service_get_job_parameters.go │ │ │ │ ├── job_service_get_job_responses.go │ │ │ │ ├── job_service_list_jobs_parameters.go │ │ │ │ └── job_service_list_jobs_responses.go │ │ ├── job_model │ │ │ ├── googlerpc_status.go │ │ │ ├── job_mode.go │ │ │ ├── pipeline_spec_runtime_config.go │ │ │ ├── protobuf_any.go │ │ │ ├── v1_cron_schedule.go │ │ │ ├── v1_job.go │ │ │ ├── v1_job.go-- │ │ │ ├── v1_list_jobs_response.go │ │ │ ├── v1_parameter.go │ │ │ ├── v1_periodic_schedule.go │ │ │ ├── v1_periodic_schedule.go-- │ │ │ ├── v1_pipeline_spec.go │ │ │ ├── v1_relationship.go │ │ │ ├── v1_resource_key.go │ │ │ ├── v1_resource_reference.go │ │ │ ├── v1_resource_type.go │ │ │ ├── v1_trigger.go │ │ │ └── v1_value.go │ │ ├── pipeline_client │ │ │ ├── pipeline_client.go │ │ │ └── pipeline_service │ │ │ │ ├── pipeline_service_client.go │ │ │ │ ├── pipeline_service_create_pipeline_parameters.go │ │ │ │ ├── pipeline_service_create_pipeline_responses.go │ │ │ │ ├── pipeline_service_create_pipeline_version_parameters.go │ │ │ │ ├── pipeline_service_create_pipeline_version_responses.go │ │ │ │ ├── pipeline_service_delete_pipeline_parameters.go │ │ │ │ ├── pipeline_service_delete_pipeline_responses.go │ │ │ │ ├── pipeline_service_delete_pipeline_version_parameters.go │ │ │ │ ├── pipeline_service_delete_pipeline_version_responses.go │ │ │ │ ├── pipeline_service_get_pipeline_parameters.go │ │ │ │ ├── pipeline_service_get_pipeline_responses.go │ │ │ │ ├── pipeline_service_get_pipeline_version_parameters.go │ │ │ │ ├── pipeline_service_get_pipeline_version_responses.go │ │ │ │ ├── pipeline_service_get_pipeline_version_template_parameters.go │ │ │ │ ├── pipeline_service_get_pipeline_version_template_responses.go │ │ │ │ ├── pipeline_service_get_template_parameters.go │ │ │ │ ├── pipeline_service_get_template_responses.go │ │ │ │ ├── pipeline_service_list_pipeline_versions_parameters.go │ │ │ │ ├── pipeline_service_list_pipeline_versions_responses.go │ │ │ │ ├── pipeline_service_list_pipelines_parameters.go │ │ │ │ ├── pipeline_service_list_pipelines_responses.go │ │ │ │ ├── pipeline_service_update_pipeline_default_version_parameters.go │ │ │ │ └── pipeline_service_update_pipeline_default_version_responses.go │ │ ├── pipeline_model │ │ │ ├── googlerpc_status.go │ │ │ ├── protobuf_any.go │ │ │ ├── v1_get_template_response.go │ │ │ ├── v1_list_pipeline_versions_response.go │ │ │ ├── v1_list_pipelines_response.go │ │ │ ├── v1_parameter.go │ │ │ ├── v1_pipeline.go │ │ │ ├── v1_pipeline_version.go │ │ │ ├── v1_relationship.go │ │ │ ├── v1_resource_key.go │ │ │ ├── v1_resource_reference.go │ │ │ ├── v1_resource_type.go │ │ │ └── v1_url.go │ │ ├── pipeline_upload_client │ │ │ ├── pipeline_upload_client.go │ │ │ └── pipeline_upload_service │ │ │ │ ├── pipeline_service_upload_pipeline_parameters.go │ │ │ │ ├── pipeline_service_upload_pipeline_responses.go │ │ │ │ ├── pipeline_service_upload_pipeline_version_parameters.go │ │ │ │ ├── pipeline_service_upload_pipeline_version_responses.go │ │ │ │ └── pipeline_upload_service_client.go │ │ ├── pipeline_upload_model │ │ │ ├── googlerpc_status.go │ │ │ ├── protobuf_any.go │ │ │ ├── v1_parameter.go │ │ │ ├── v1_pipeline.go │ │ │ ├── v1_pipeline_version.go │ │ │ ├── v1_relationship.go │ │ │ ├── v1_resource_key.go │ │ │ ├── v1_resource_reference.go │ │ │ ├── v1_resource_type.go │ │ │ └── v1_url.go │ │ ├── run_client │ │ │ ├── run_client.go │ │ │ └── run_service │ │ │ │ ├── run_service_archive_run_parameters.go │ │ │ │ ├── run_service_archive_run_responses.go │ │ │ │ ├── run_service_client.go │ │ │ │ ├── run_service_create_run_parameters.go │ │ │ │ ├── run_service_create_run_responses.go │ │ │ │ ├── run_service_delete_run_parameters.go │ │ │ │ ├── run_service_delete_run_responses.go │ │ │ │ ├── run_service_get_run_parameters.go │ │ │ │ ├── run_service_get_run_responses.go │ │ │ │ ├── run_service_list_runs_parameters.go │ │ │ │ ├── run_service_list_runs_responses.go │ │ │ │ ├── run_service_read_artifact_parameters.go │ │ │ │ ├── run_service_read_artifact_responses.go │ │ │ │ ├── run_service_report_run_metrics_parameters.go │ │ │ │ ├── run_service_report_run_metrics_responses.go │ │ │ │ ├── run_service_retry_run_parameters.go │ │ │ │ ├── run_service_retry_run_responses.go │ │ │ │ ├── run_service_terminate_run_parameters.go │ │ │ │ ├── run_service_terminate_run_responses.go │ │ │ │ ├── run_service_unarchive_run_parameters.go │ │ │ │ └── run_service_unarchive_run_responses.go │ │ ├── run_model │ │ │ ├── googlerpc_status.go │ │ │ ├── pipeline_spec_runtime_config.go │ │ │ ├── protobuf_any.go │ │ │ ├── report_run_metrics_response_report_run_metric_result.go │ │ │ ├── report_run_metrics_response_report_run_metric_result_status.go │ │ │ ├── run_metric_format.go │ │ │ ├── v1_list_runs_response.go │ │ │ ├── v1_parameter.go │ │ │ ├── v1_pipeline_runtime.go │ │ │ ├── v1_pipeline_spec.go │ │ │ ├── v1_read_artifact_response.go │ │ │ ├── v1_relationship.go │ │ │ ├── v1_report_run_metrics_response.go │ │ │ ├── v1_resource_key.go │ │ │ ├── v1_resource_reference.go │ │ │ ├── v1_resource_type.go │ │ │ ├── v1_run.go │ │ │ ├── v1_run_detail.go │ │ │ ├── v1_run_metric.go │ │ │ ├── v1_run_storage_state.go │ │ │ └── v1_value.go │ │ ├── visualization_client │ │ │ ├── visualization_client.go │ │ │ └── visualization_service │ │ │ │ ├── visualization_service_client.go │ │ │ │ ├── visualization_service_create_visualization_parameters.go │ │ │ │ └── visualization_service_create_visualization_responses.go │ │ └── visualization_model │ │ │ ├── googlerpc_status.go │ │ │ ├── protobuf_any.go │ │ │ ├── v1_visualization.go │ │ │ └── v1_visualization_type.go │ │ ├── google │ │ └── api │ │ │ ├── annotations.proto │ │ │ └── http.proto │ │ ├── healthz.proto │ │ ├── job.proto │ │ ├── parameter.proto │ │ ├── pipeline.proto │ │ ├── pipeline_spec.proto │ │ ├── python_http_client │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .openapi-generator-ignore │ │ ├── .openapi-generator │ │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ │ ├── ExperimentServiceApi.md │ │ │ ├── GooglerpcStatus.md │ │ │ ├── HealthzServiceApi.md │ │ │ ├── InlineObject.md │ │ │ ├── JobMode.md │ │ │ ├── JobServiceApi.md │ │ │ ├── PipelineServiceApi.md │ │ │ ├── PipelineSpecRuntimeConfig.md │ │ │ ├── PipelineUploadServiceApi.md │ │ │ ├── ProtobufAny.md │ │ │ ├── ReportRunMetricsResponseReportRunMetricResult.md │ │ │ ├── ReportRunMetricsResponseReportRunMetricResultStatus.md │ │ │ ├── RunMetricFormat.md │ │ │ ├── RunServiceApi.md │ │ │ ├── V1CronSchedule.md │ │ │ ├── V1Experiment.md │ │ │ ├── V1ExperimentStorageState.md │ │ │ ├── V1GetHealthzResponse.md │ │ │ ├── V1GetTemplateResponse.md │ │ │ ├── V1Job.md │ │ │ ├── V1ListExperimentsResponse.md │ │ │ ├── V1ListJobsResponse.md │ │ │ ├── V1ListPipelineVersionsResponse.md │ │ │ ├── V1ListPipelinesResponse.md │ │ │ ├── V1ListRunsResponse.md │ │ │ ├── V1Parameter.md │ │ │ ├── V1PeriodicSchedule.md │ │ │ ├── V1Pipeline.md │ │ │ ├── V1PipelineRuntime.md │ │ │ ├── V1PipelineSpec.md │ │ │ ├── V1PipelineVersion.md │ │ │ ├── V1ReadArtifactResponse.md │ │ │ ├── V1Relationship.md │ │ │ ├── V1ReportRunMetricsResponse.md │ │ │ ├── V1ResourceKey.md │ │ │ ├── V1ResourceReference.md │ │ │ ├── V1ResourceType.md │ │ │ ├── V1Run.md │ │ │ ├── V1RunDetail.md │ │ │ ├── V1RunMetric.md │ │ │ ├── V1RunStorageState.md │ │ │ ├── V1Trigger.md │ │ │ ├── V1Url.md │ │ │ └── V1Value.md │ │ ├── git_push.sh │ │ ├── kfp_tekton_server_api │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── experiment_service_api.py │ │ │ │ ├── healthz_service_api.py │ │ │ │ ├── job_service_api.py │ │ │ │ ├── pipeline_service_api.py │ │ │ │ ├── pipeline_upload_service_api.py │ │ │ │ └── run_service_api.py │ │ │ ├── api_client.py │ │ │ ├── configuration.py │ │ │ ├── exceptions.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── googlerpc_status.py │ │ │ │ ├── inline_object.py │ │ │ │ ├── job_mode.py │ │ │ │ ├── pipeline_spec_runtime_config.py │ │ │ │ ├── protobuf_any.py │ │ │ │ ├── report_run_metrics_response_report_run_metric_result.py │ │ │ │ ├── report_run_metrics_response_report_run_metric_result_status.py │ │ │ │ ├── run_metric_format.py │ │ │ │ ├── v1_cron_schedule.py │ │ │ │ ├── v1_experiment.py │ │ │ │ ├── v1_experiment_storage_state.py │ │ │ │ ├── v1_get_healthz_response.py │ │ │ │ ├── v1_get_template_response.py │ │ │ │ ├── v1_job.py │ │ │ │ ├── v1_list_experiments_response.py │ │ │ │ ├── v1_list_jobs_response.py │ │ │ │ ├── v1_list_pipeline_versions_response.py │ │ │ │ ├── v1_list_pipelines_response.py │ │ │ │ ├── v1_list_runs_response.py │ │ │ │ ├── v1_parameter.py │ │ │ │ ├── v1_periodic_schedule.py │ │ │ │ ├── v1_pipeline.py │ │ │ │ ├── v1_pipeline_runtime.py │ │ │ │ ├── v1_pipeline_spec.py │ │ │ │ ├── v1_pipeline_version.py │ │ │ │ ├── v1_read_artifact_response.py │ │ │ │ ├── v1_relationship.py │ │ │ │ ├── v1_report_run_metrics_response.py │ │ │ │ ├── v1_resource_key.py │ │ │ │ ├── v1_resource_reference.py │ │ │ │ ├── v1_resource_type.py │ │ │ │ ├── v1_run.py │ │ │ │ ├── v1_run_detail.py │ │ │ │ ├── v1_run_metric.py │ │ │ │ ├── v1_run_storage_state.py │ │ │ │ ├── v1_trigger.py │ │ │ │ ├── v1_url.py │ │ │ │ └── v1_value.py │ │ │ └── rest.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test-requirements.txt │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_experiment_service_api.py │ │ │ ├── test_googlerpc_status.py │ │ │ ├── test_healthz_service_api.py │ │ │ ├── test_inline_object.py │ │ │ ├── test_job_mode.py │ │ │ ├── test_job_service_api.py │ │ │ ├── test_pipeline_service_api.py │ │ │ ├── test_pipeline_spec_runtime_config.py │ │ │ ├── test_pipeline_upload_service_api.py │ │ │ ├── test_protobuf_any.py │ │ │ ├── test_report_run_metrics_response_report_run_metric_result.py │ │ │ ├── test_report_run_metrics_response_report_run_metric_result_status.py │ │ │ ├── test_run_metric_format.py │ │ │ ├── test_run_service_api.py │ │ │ ├── test_v1_cron_schedule.py │ │ │ ├── test_v1_experiment.py │ │ │ ├── test_v1_experiment_storage_state.py │ │ │ ├── test_v1_get_healthz_response.py │ │ │ ├── test_v1_get_template_response.py │ │ │ ├── test_v1_job.py │ │ │ ├── test_v1_list_experiments_response.py │ │ │ ├── test_v1_list_jobs_response.py │ │ │ ├── test_v1_list_pipeline_versions_response.py │ │ │ ├── test_v1_list_pipelines_response.py │ │ │ ├── test_v1_list_runs_response.py │ │ │ ├── test_v1_parameter.py │ │ │ ├── test_v1_periodic_schedule.py │ │ │ ├── test_v1_pipeline.py │ │ │ ├── test_v1_pipeline_runtime.py │ │ │ ├── test_v1_pipeline_spec.py │ │ │ ├── test_v1_pipeline_version.py │ │ │ ├── test_v1_read_artifact_response.py │ │ │ ├── test_v1_relationship.py │ │ │ ├── test_v1_report_run_metrics_response.py │ │ │ ├── test_v1_resource_key.py │ │ │ ├── test_v1_resource_reference.py │ │ │ ├── test_v1_resource_type.py │ │ │ ├── test_v1_run.py │ │ │ ├── test_v1_run_detail.py │ │ │ ├── test_v1_run_metric.py │ │ │ ├── test_v1_run_storage_state.py │ │ │ ├── test_v1_trigger.py │ │ │ ├── test_v1_url.py │ │ │ └── test_v1_value.py │ │ └── tox.ini │ │ ├── python_http_client_template │ │ ├── README.md │ │ ├── api.mustache │ │ ├── model.mustache │ │ └── partial_header.mustache │ │ ├── report.proto │ │ ├── resource_reference.proto │ │ ├── run.proto │ │ ├── swagger │ │ ├── auth.swagger.json │ │ ├── error.swagger.json │ │ ├── experiment.swagger.json │ │ ├── filter.swagger.json │ │ ├── healthz.swagger.json │ │ ├── job.swagger.json │ │ ├── kfp_api_single_file.swagger.json │ │ ├── parameter.swagger.json │ │ ├── pipeline.swagger.json │ │ ├── pipeline.upload.swagger.json │ │ ├── pipeline_spec.swagger.json │ │ ├── report.swagger.json │ │ ├── resource_reference.swagger.json │ │ ├── run.swagger.json │ │ ├── task.swagger.json │ │ └── visualization.swagger.json │ │ ├── task.proto │ │ └── visualization.proto ├── metadata_writer │ ├── Dockerfile │ ├── README.md │ ├── requirements.in │ ├── requirements.txt │ └── src │ │ ├── metadata_helpers.py │ │ └── metadata_writer.py ├── requirements.in ├── src │ ├── agent │ │ └── persistence │ │ │ ├── client │ │ │ ├── client_manager.go │ │ │ ├── pipeline_client.go │ │ │ ├── pipeline_client_fake.go │ │ │ ├── scheduled_workflow_client.go │ │ │ ├── scheduled_workflow_client_fake.go │ │ │ ├── workflow_client.go │ │ │ └── workflow_fake.go │ │ │ ├── main.go │ │ │ ├── persistence_agent.go │ │ │ └── worker │ │ │ ├── metrics_reporter.go │ │ │ ├── metrics_reporter_test.go │ │ │ ├── persistence_worker.go │ │ │ ├── persistence_worker_test.go │ │ │ ├── swf_saver.go │ │ │ ├── swf_saver_test.go │ │ │ ├── workflow_saver.go │ │ │ └── workflow_saver_test.go │ ├── apiserver │ │ ├── archive │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ └── test │ │ │ │ └── step-main_log.gz │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── authenticator_http_headers.go │ │ │ ├── authenticator_http_headers_test.go │ │ │ ├── authenticator_token_review.go │ │ │ ├── authenticator_token_review_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── client │ │ │ ├── BUILD.bazel │ │ │ ├── kubernetes_core.go │ │ │ ├── kubernetes_core_fake.go │ │ │ ├── minio.go │ │ │ ├── pod_fake.go │ │ │ ├── scheduled_workflow_fake.go │ │ │ ├── sql.go │ │ │ ├── sql_test.go │ │ │ ├── subject_access_review.go │ │ │ ├── subject_access_review_fake.go │ │ │ ├── swf.go │ │ │ ├── swf_fake.go │ │ │ ├── tekton.go │ │ │ ├── tekton_fake.go │ │ │ ├── token_review.go │ │ │ ├── token_review_fake.go │ │ │ ├── util.go │ │ │ └── workflow_fake.go │ │ ├── client_manager.go │ │ ├── common │ │ │ ├── config.go │ │ │ ├── const.go │ │ │ ├── filter_context.go │ │ │ ├── pagination_context.go │ │ │ ├── paths.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── config │ │ │ ├── config.json │ │ │ └── sample_config.json │ │ ├── filter │ │ │ ├── filter.go │ │ │ └── filter_test.go │ │ ├── interceptor.go │ │ ├── list │ │ │ ├── list.go │ │ │ └── list_test.go │ │ ├── main.go │ │ ├── model │ │ │ ├── BUILD.bazel │ │ │ ├── db_status.go │ │ │ ├── default_experiment.go │ │ │ ├── experiment.go │ │ │ ├── job.go │ │ │ ├── listable_model.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_spec.go │ │ │ ├── pipeline_version.go │ │ │ ├── resource_reference.go │ │ │ ├── run.go │ │ │ └── task.go │ │ ├── resource │ │ │ ├── BUILD.bazel │ │ │ ├── client_manager_fake.go │ │ │ ├── model_converter.go │ │ │ ├── model_converter_test.go │ │ │ ├── resource_manager.go │ │ │ ├── resource_manager_test.go │ │ │ ├── resource_manager_util.go │ │ │ ├── resource_manager_util_test.go │ │ │ └── test_util.go │ │ ├── server │ │ │ ├── BUILD.bazel │ │ │ ├── api_converter.go │ │ │ ├── api_converter_test.go │ │ │ ├── auth_server.go │ │ │ ├── auth_server_test.go │ │ │ ├── experiment_server.go │ │ │ ├── experiment_server_test.go │ │ │ ├── job_server.go │ │ │ ├── job_server_test.go │ │ │ ├── list_request_util.go │ │ │ ├── list_request_util_test.go │ │ │ ├── pipeline_server.go │ │ │ ├── pipeline_server_test.go │ │ │ ├── pipeline_upload_server.go │ │ │ ├── pipeline_upload_server_test.go │ │ │ ├── report_server.go │ │ │ ├── report_server_test.go │ │ │ ├── run_log_server.go │ │ │ ├── run_metric_util.go │ │ │ ├── run_metric_util_test.go │ │ │ ├── run_server.go │ │ │ ├── run_server_test.go │ │ │ ├── task_server.go │ │ │ ├── test │ │ │ │ ├── arguments-parameters.yaml │ │ │ │ ├── invalid-workflow.yaml │ │ │ │ ├── non_yaml_tarball │ │ │ │ │ └── non_yaml_file.foo │ │ │ │ ├── non_yaml_zip │ │ │ │ │ └── non_yaml_file.foo │ │ │ │ ├── patched-arguments-parameters.yaml │ │ │ │ ├── pipeline_plus_component │ │ │ │ │ ├── component.yaml │ │ │ │ │ └── pipeline.yaml │ │ │ │ ├── unknown_format.foo │ │ │ │ └── v2-hello-world.json │ │ │ ├── test_util.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── visualization_server.go │ │ │ └── visualization_server_test.go │ │ ├── storage │ │ │ ├── BUILD.bazel │ │ │ ├── db.go │ │ │ ├── db_fake.go │ │ │ ├── db_status_store.go │ │ │ ├── db_status_store_test.go │ │ │ ├── db_test.go │ │ │ ├── default_experiment_store.go │ │ │ ├── default_experiment_store_test.go │ │ │ ├── experiment_store.go │ │ │ ├── experiment_store_test.go │ │ │ ├── job_store.go │ │ │ ├── job_store_test.go │ │ │ ├── minio_client.go │ │ │ ├── minio_client_fake.go │ │ │ ├── object_store.go │ │ │ ├── object_store_fake.go │ │ │ ├── object_store_test.go │ │ │ ├── pipeline_store.go │ │ │ ├── pipeline_store_test.go │ │ │ ├── resource_reference_store.go │ │ │ ├── resource_reference_store_test.go │ │ │ ├── run_store.go │ │ │ ├── run_store_test.go │ │ │ ├── sql_null_util.go │ │ │ ├── task_store.go │ │ │ └── task_store_test.go │ │ └── template │ │ │ ├── tekton_template.go │ │ │ ├── tekton_template_test.go │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ └── v2_template.go │ ├── cache │ │ ├── README.md │ │ ├── client │ │ │ ├── kubernetes_core.go │ │ │ ├── kubernetes_core_fake.go │ │ │ ├── pod_fake.go │ │ │ ├── sql.go │ │ │ ├── sql_test.go │ │ │ ├── tekton.go │ │ │ └── tekton_fake.go │ │ ├── client_manager.go │ │ ├── deployer │ │ │ ├── Dockerfile │ │ │ ├── cache-webhook-config.v1.yaml.template │ │ │ ├── cache-webhook-config.v1beta1.v1.15.yaml.template │ │ │ ├── cache-webhook-config.v1beta1.yaml.template │ │ │ ├── deploy-cache-service.sh │ │ │ ├── webhook-create-signed-cert.sh │ │ │ └── webhook-patch-ca-bundle.sh │ │ ├── main.go │ │ ├── model │ │ │ └── execution_cache.go │ │ ├── server │ │ │ ├── admission.go │ │ │ ├── admission_test.go │ │ │ ├── client_manager_fake.go │ │ │ ├── mutation.go │ │ │ ├── mutation_test.go │ │ │ └── watcher.go │ │ └── storage │ │ │ ├── db.go │ │ │ ├── db_fake.go │ │ │ ├── execution_cache_store.go │ │ │ └── execution_cache_store_test.go │ ├── common │ │ ├── client │ │ │ └── api_server │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── experiment_client.go │ │ │ │ ├── experiment_client_fake.go │ │ │ │ ├── job_client.go │ │ │ │ ├── job_client_fake.go │ │ │ │ ├── pipeline_client.go │ │ │ │ ├── pipeline_client_fake.go │ │ │ │ ├── pipeline_upload_client.go │ │ │ │ ├── pipeline_upload_client_fake.go │ │ │ │ ├── run_client.go │ │ │ │ ├── run_client_fake.go │ │ │ │ ├── util.go │ │ │ │ ├── visualization_client.go │ │ │ │ └── visualization_client_fake.go │ │ └── util │ │ │ ├── BUILD.bazel │ │ │ ├── client_parameters.go │ │ │ ├── consts.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── formatter.go │ │ │ ├── formatter_test.go │ │ │ ├── json.go │ │ │ ├── label.go │ │ │ ├── label_test.go │ │ │ ├── parameter_formatter.go │ │ │ ├── parameter_formatter_test.go │ │ │ ├── pointer.go │ │ │ ├── scheduled_workflow.go │ │ │ ├── scheduled_workflow_test.go │ │ │ ├── service.go │ │ │ ├── string.go │ │ │ ├── string_test.go │ │ │ ├── template_util.go │ │ │ ├── template_util_test.go │ │ │ ├── tgz.go │ │ │ ├── tgz_test.go │ │ │ ├── time.go │ │ │ ├── uuid.go │ │ │ ├── workflow.go │ │ │ └── workflow_test.go │ └── crd │ │ ├── README.md │ │ ├── controller │ │ ├── scheduledworkflow │ │ │ ├── client │ │ │ │ ├── kube_client.go │ │ │ │ ├── swf_client.go │ │ │ │ ├── workflow_client.go │ │ │ │ └── workflow_client_test.go │ │ │ ├── controller.go │ │ │ ├── main.go │ │ │ └── util │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── const.go │ │ │ │ ├── const_test.go │ │ │ │ ├── cron_schedule.go │ │ │ │ ├── cron_schedule_test.go │ │ │ │ ├── label.go │ │ │ │ ├── periodic_schedule.go │ │ │ │ ├── periodic_schedule_test.go │ │ │ │ ├── scheduled_workflow.go │ │ │ │ └── scheduled_workflow_test.go │ │ └── viewer │ │ │ ├── main.go │ │ │ └── reconciler │ │ │ ├── reconciler.go │ │ │ └── reconciler_test.go │ │ ├── hack │ │ ├── custom-boilerplate.go.txt │ │ ├── update-codegen.sh │ │ └── verify-codegen.sh │ │ ├── install │ │ └── manifests │ │ │ ├── scheduledworkflow-crd.yaml │ │ │ └── viewer-crd.yaml │ │ ├── pkg │ │ ├── apis │ │ │ ├── scheduledworkflow │ │ │ │ ├── register.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── viewer │ │ │ │ ├── register.go │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.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 │ │ │ │ │ └── scheduledworkflow │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_scheduledworkflow.go │ │ │ │ │ └── fake_scheduledworkflow_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── scheduledworkflow.go │ │ │ │ │ └── scheduledworkflow_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── scheduledworkflow │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── scheduledworkflow.go │ │ │ └── listers │ │ │ │ └── scheduledworkflow │ │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── scheduledworkflow.go │ │ └── signals │ │ │ ├── signal.go │ │ │ └── signal_posix.go │ │ └── samples │ │ ├── scheduledworkflow │ │ ├── concurrency.yaml │ │ ├── every-minute-cron.yaml │ │ ├── every-minute-periodic.yaml │ │ ├── invalid.yaml │ │ ├── no-history.yaml │ │ ├── parameterized.yaml │ │ ├── single-run.yaml │ │ ├── start-end-cron.yaml │ │ └── start-end-periodic.yaml │ │ └── viewer │ │ ├── mnist.yaml │ │ ├── tensorboard-local-volume.yaml │ │ └── tensorboard-persistent-volume.yaml ├── test │ ├── initialization │ │ ├── flags.go │ │ └── initialization_test.go │ ├── integration │ │ ├── README.md │ │ ├── experiment_api_test.go │ │ ├── flags.go │ │ ├── job_api_test.go │ │ ├── pipeline_api_test.go │ │ ├── pipeline_version_api_test.go │ │ ├── run_api_test.go │ │ ├── run_tests_locally.sh │ │ ├── upgrade_test.go │ │ └── visualization_api_test.go │ ├── resources │ │ ├── arguments-parameters.yaml │ │ ├── hello-world.yaml │ │ ├── long-running.yaml │ │ ├── loops.yaml │ │ └── v2-hello-world.json │ └── test_utils.go ├── third_party_licenses │ ├── apiserver.csv │ ├── cache_server.csv │ ├── persistence_agent.csv │ ├── swf.csv │ └── viewer.csv └── update_requirements.sh ├── components ├── filesystem │ ├── get_file │ │ └── component.yaml │ ├── get_subdirectory │ │ └── component.yaml │ └── list_items │ │ └── component.yaml └── notification │ └── component.yaml ├── docs ├── Makefile ├── _config.yml ├── _static │ └── custom.css ├── conf.py ├── config │ └── volume-support.md ├── index.rst ├── make.bat ├── release │ ├── feature-stages.md │ └── versioning-policy.md ├── requirements.txt └── source │ ├── kfp.client.rst │ ├── kfp.compiler.rst │ ├── kfp.components.rst │ ├── kfp.components.structures.kubernetes.rst │ ├── kfp.components.structures.rst │ ├── kfp.containers.rst │ ├── kfp.dsl.rst │ ├── kfp.dsl.types.rst │ ├── kfp.extensions.rst │ ├── kfp.rst │ └── kfp.server_api.rst ├── frontend ├── .eslintrc.yaml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .storybook │ ├── main.js │ └── preview.js ├── Dockerfile ├── README.md ├── analyze_bundle.js ├── craco.config.js ├── gen_licenses.js ├── global-setup.js ├── mock-backend │ ├── data │ │ ├── v1 │ │ │ ├── runtime │ │ │ │ ├── hello-world-runtime.ts │ │ │ │ ├── hello-world-with-steps-runtime.ts │ │ │ │ ├── integration-test-runtime.ts │ │ │ │ ├── json-runtime.ts │ │ │ │ ├── large-graph-runtime.ts │ │ │ │ ├── mock-coinflip-runtime.ts │ │ │ │ ├── mock-error-runtime.ts │ │ │ │ ├── mock-retry-runtime.ts │ │ │ │ ├── mock-xgboost-runtime.ts │ │ │ │ └── mock-xgboost-small-runtime.ts │ │ │ └── template │ │ │ │ ├── mock-conditional-template.yaml │ │ │ │ ├── mock-recursive-template.yaml │ │ │ │ ├── mock-template-str.json │ │ │ │ └── mock-template.yaml │ │ └── v2 │ │ │ └── pipeline │ │ │ ├── README.md │ │ │ ├── mock_lightweight_python_functions_v2_pipeline.json │ │ │ ├── mock_lightweight_python_functions_v2_pipeline_rev.json │ │ │ ├── pipeline_with_loops_and_conditions.json │ │ │ ├── protobuf_value_params_v2.json │ │ │ └── xgboost_sample_pipeline.json │ ├── eval-output │ │ ├── metadata.json │ │ ├── metadata2.json │ │ ├── roc.csv │ │ ├── roc2.csv │ │ └── table.csv │ ├── fixed-data.ts │ ├── longlog.txt │ ├── mock-api-middleware.ts │ ├── mock-api-server.ts │ ├── model-output │ │ ├── confusion_matrix.csv │ │ ├── hello-world-big.html │ │ ├── hello-world.html │ │ └── metadata.json │ ├── package-lock.json │ ├── package.json │ ├── proxy-middleware.ts │ ├── shortlog.txt │ ├── tsconfig.json │ └── tslint.json ├── package-lock.json ├── package.json ├── public │ ├── index.html │ └── static │ │ └── favicon.ico ├── scripts │ ├── check-format-error-info.js │ ├── gen_grpc_web_protos.js │ ├── get-coveralls-repo-token.js │ ├── pipelinespec.sh │ ├── replace_protos.js │ ├── report-coveralls.sh │ ├── start-proxies.ps1 │ ├── start-proxy-and-server.sh │ ├── start-proxy.sh │ └── sync-backend-sample-config.js ├── server │ ├── .gitignore │ ├── app.test.ts │ ├── app.ts │ ├── aws-helper.test.ts │ ├── aws-helper.ts │ ├── configs.test.ts │ ├── configs.ts │ ├── consts.ts │ ├── handlers │ │ ├── artifacts.ts │ │ ├── gke-metadata.ts │ │ ├── healthz.ts │ │ ├── index-html.ts │ │ ├── pod-info.ts │ │ ├── pod-logs.ts │ │ ├── tensorboard.ts │ │ └── vis.ts │ ├── helpers │ │ ├── auth.ts │ │ └── server-info.ts │ ├── integration-tests │ │ ├── artifact-get.test.ts │ │ ├── artifact-proxy.test.ts │ │ ├── tensorboard.test.ts │ │ └── test-helper.ts │ ├── k8s-helper.test.ts │ ├── k8s-helper.ts │ ├── minio-helper.test.ts │ ├── minio-helper.ts │ ├── package-lock.json │ ├── package.json │ ├── proxy-middleware.ts │ ├── server.ts │ ├── src │ │ └── generated │ │ │ └── apis │ │ │ └── auth │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ ├── git_push.sh │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tslint.json │ ├── untyped-modules.d.ts │ ├── utils.test.ts │ ├── utils.ts │ ├── workflow-helper.test.ts │ └── workflow-helper.ts ├── src │ ├── CSSReset.tsx │ ├── Css.test.tsx │ ├── Css.tsx │ ├── TestUtils.ts │ ├── TestWrapper.tsx │ ├── __mocks__ │ │ └── typestyle.js │ ├── __serializers__ │ │ └── mock-function.js │ ├── apis │ │ ├── experiment │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ └── index.ts │ │ ├── filter │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ ├── git_push.sh │ │ │ └── index.ts │ │ ├── job │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ └── index.ts │ │ ├── pipeline │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ └── index.ts │ │ ├── run │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ └── index.ts │ │ └── visualization │ │ │ ├── .gitignore │ │ │ ├── .swagger-codegen-ignore │ │ │ ├── .swagger-codegen │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── configuration.ts │ │ │ ├── custom.d.ts │ │ │ ├── git_push.sh │ │ │ └── index.ts │ ├── assets.d.ts │ ├── atoms │ │ ├── BusyButton.test.tsx │ │ ├── BusyButton.tsx │ │ ├── CardTooltip.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── ExternalLink.tsx │ │ ├── HelpButton.tsx │ │ ├── Hr.test.tsx │ │ ├── Hr.tsx │ │ ├── IconWithTooltip.test.tsx │ │ ├── IconWithTooltip.tsx │ │ ├── Input.test.tsx │ │ ├── Input.tsx │ │ ├── MD2Tabs.test.tsx │ │ ├── MD2Tabs.tsx │ │ ├── Separator.test.tsx │ │ ├── Separator.tsx │ │ └── __snapshots__ │ │ │ ├── BusyButton.test.tsx.snap │ │ │ ├── Hr.test.tsx.snap │ │ │ ├── IconWithTooltip.test.tsx.snap │ │ │ ├── Input.test.tsx.snap │ │ │ ├── MD2Tabs.test.tsx.snap │ │ │ └── Separator.test.tsx.snap │ ├── components │ │ ├── ArtifactLink.tsx │ │ ├── ArtifactPreview.test.tsx │ │ ├── ArtifactPreview.tsx │ │ ├── Banner.test.tsx │ │ ├── Banner.tsx │ │ ├── CollapseButton.test.tsx │ │ ├── CollapseButton.tsx │ │ ├── CompareTable.test.tsx │ │ ├── CompareTable.tsx │ │ ├── CustomTable.test.tsx │ │ ├── CustomTable.tsx │ │ ├── CustomTableNameColumn.tsx │ │ ├── CustomTableRow.test.tsx │ │ ├── CustomTableRow.tsx │ │ ├── Description.test.tsx │ │ ├── Description.tsx │ │ ├── DetailsTable.test.tsx │ │ ├── DetailsTable.tsx │ │ ├── Editor.test.tsx │ │ ├── Editor.tsx │ │ ├── ExperimentList.test.tsx │ │ ├── ExperimentList.tsx │ │ ├── Graph.test.tsx │ │ ├── Graph.tsx │ │ ├── LogViewer.test.tsx │ │ ├── LogViewer.tsx │ │ ├── Metric.test.tsx │ │ ├── Metric.tsx │ │ ├── MinioArtifactPreview.test.tsx │ │ ├── MinioArtifactPreview.tsx │ │ ├── NewRunParameters.test.tsx │ │ ├── NewRunParameters.tsx │ │ ├── PlotCard.test.tsx │ │ ├── PlotCard.tsx │ │ ├── PodYaml.test.tsx │ │ ├── PodYaml.tsx │ │ ├── ReduceGraphSwitch.tsx │ │ ├── ResourceInfo.test.tsx │ │ ├── ResourceInfo.tsx │ │ ├── Router.test.tsx │ │ ├── Router.tsx │ │ ├── SideNav.test.tsx │ │ ├── SideNav.tsx │ │ ├── SidePanel.tsx │ │ ├── StaticNodeDetails.tsx │ │ ├── Toolbar.test.tsx │ │ ├── Toolbar.tsx │ │ ├── Trigger.test.tsx │ │ ├── Trigger.tsx │ │ ├── UploadPipelineDialog.test.tsx │ │ ├── UploadPipelineDialog.tsx │ │ ├── __snapshots__ │ │ │ ├── Banner.test.tsx.snap │ │ │ ├── CollapseButton.test.tsx.snap │ │ │ ├── CompareTable.test.tsx.snap │ │ │ ├── CustomTable.test.tsx.snap │ │ │ ├── CustomTableRow.test.tsx.snap │ │ │ ├── Description.test.tsx.snap │ │ │ ├── Editor.test.tsx.snap │ │ │ ├── ExperimentList.test.tsx.snap │ │ │ ├── Graph.test.tsx.snap │ │ │ ├── LogViewer.test.tsx.snap │ │ │ ├── Metric.test.tsx.snap │ │ │ ├── NewRunParameters.test.tsx.snap │ │ │ ├── PlotCard.test.tsx.snap │ │ │ ├── Router.test.tsx.snap │ │ │ ├── SideNav.test.tsx.snap │ │ │ ├── Toolbar.test.tsx.snap │ │ │ ├── Trigger.test.tsx.snap │ │ │ └── UploadPipelineDialog.test.tsx.snap │ │ ├── graph │ │ │ ├── ArtifactNode.tsx │ │ │ ├── Constants.ts │ │ │ ├── ExecutionNode.tsx │ │ │ ├── SubDagLayer.tsx │ │ │ └── SubDagNode.tsx │ │ ├── navigators │ │ │ ├── PipelineVersionCard.test.tsx │ │ │ └── PipelineVersionCard.tsx │ │ ├── tabs │ │ │ ├── ArtifactTitle.test.tsx │ │ │ ├── ArtifactTitle.tsx │ │ │ ├── ExecutionTitle.test.tsx │ │ │ ├── ExecutionTitle.tsx │ │ │ ├── InputOutputTab.test.tsx │ │ │ ├── InputOutputTab.tsx │ │ │ ├── MetricsTab.test.tsx │ │ │ ├── MetricsTab.tsx │ │ │ ├── RuntimeNodeDetailsV2.tsx │ │ │ ├── StaticNodeDetailsV2.test.tsx │ │ │ └── StaticNodeDetailsV2.tsx │ │ └── viewers │ │ │ ├── ConfusionMatrix.test.tsx │ │ │ ├── ConfusionMatrix.tsx │ │ │ ├── HTMLViewer.test.tsx │ │ │ ├── HTMLViewer.tsx │ │ │ ├── MarkdownViewer.test.tsx │ │ │ ├── MarkdownViewer.tsx │ │ │ ├── MetricsVisualizations.tsx │ │ │ ├── PagedTable.test.tsx │ │ │ ├── PagedTable.tsx │ │ │ ├── ROCCurve.test.tsx │ │ │ ├── ROCCurve.tsx │ │ │ ├── Tensorboard.test.tsx │ │ │ ├── Tensorboard.tsx │ │ │ ├── Viewer.ts │ │ │ ├── ViewerContainer.test.tsx │ │ │ ├── ViewerContainer.tsx │ │ │ ├── VisualizationCreator.test.tsx │ │ │ ├── VisualizationCreator.tsx │ │ │ └── __snapshots__ │ │ │ ├── ConfusionMatrix.test.tsx.snap │ │ │ ├── HTMLViewer.test.tsx.snap │ │ │ ├── MarkdownViewer.test.tsx.snap │ │ │ ├── PagedTable.test.tsx.snap │ │ │ ├── ROCCurve.test.tsx.snap │ │ │ ├── ViewerContainer.test.tsx.snap │ │ │ └── VisualizationCreator.test.tsx.snap │ ├── config │ │ └── sample_config_from_backend.json │ ├── data │ │ └── test │ │ │ ├── mock_lightweight_python_functions_v2_pipeline.json │ │ │ └── pipeline_with_loops_and_conditions.json │ ├── features.ts │ ├── generated │ │ └── pipeline_spec │ │ │ ├── google │ │ │ ├── protobuf │ │ │ │ ├── any.ts │ │ │ │ └── struct.ts │ │ │ └── rpc │ │ │ │ ├── status.ts │ │ │ │ ├── status_pb.d.ts │ │ │ │ └── status_pb.js │ │ │ ├── index.ts │ │ │ ├── pipeline_spec.ts │ │ │ ├── pipeline_spec_pb.d.ts │ │ │ └── pipeline_spec_pb.js │ ├── icons │ │ ├── GitHub-Mark-120px-plus.png │ │ ├── StopCircle.tsx │ │ ├── experiments.tsx │ │ ├── kubeflowLogo.tsx │ │ ├── pipelines.tsx │ │ ├── statusCached.tsx │ │ ├── statusRunning.tsx │ │ └── statusTerminated.tsx │ ├── index.tsx │ ├── lib │ │ ├── Apis.test.ts │ │ ├── Apis.ts │ │ ├── AwsHelper.test.ts │ │ ├── AwsHelper.ts │ │ ├── Buttons.ts │ │ ├── CompareUtils.test.ts │ │ ├── CompareUtils.ts │ │ ├── Constants.ts │ │ ├── Flags.ts │ │ ├── GkeMetadata.tsx │ │ ├── KubeflowClient.tsx │ │ ├── LocalStorage.ts │ │ ├── MetricUtils.test.ts │ │ ├── MetricUtils.ts │ │ ├── OutputArtifactLoader.test.ts │ │ ├── OutputArtifactLoader.ts │ │ ├── ParserUtils.ts │ │ ├── RunUtils.ts │ │ ├── StaticGraphParser.test.ts │ │ ├── StaticGraphParser.ts │ │ ├── StatusUtils.test.tsx │ │ ├── StatusUtils.ts │ │ ├── TriggerUtils.test.ts │ │ ├── TriggerUtils.ts │ │ ├── URLParser.test.ts │ │ ├── URLParser.ts │ │ ├── Utils.test.ts │ │ ├── Utils.tsx │ │ ├── WorkflowParser.test.ts │ │ ├── WorkflowParser.ts │ │ └── v2 │ │ │ ├── DynamicFlow.test.ts │ │ │ ├── DynamicFlow.ts │ │ │ ├── StaticFlow.test.ts │ │ │ ├── StaticFlow.ts │ │ │ ├── WorkflowUtils.test.ts │ │ │ └── WorkflowUtils.ts │ ├── mlmd │ │ ├── Api.test.ts │ │ ├── Api.ts │ │ ├── ControlledEdgeCanvas.tsx │ │ ├── Css.test.tsx │ │ ├── Css.tsx │ │ ├── EdgeCanvas.tsx │ │ ├── EdgeLine.tsx │ │ ├── LineChart.d.ts │ │ ├── LineageActionBar.test.tsx │ │ ├── LineageActionBar.tsx │ │ ├── LineageApi.ts │ │ ├── LineageCard.tsx │ │ ├── LineageCardColumn.tsx │ │ ├── LineageCardRow.tsx │ │ ├── LineageCss.ts │ │ ├── LineageTypes.ts │ │ ├── LineageView.tsx │ │ ├── MlmdUtils.test.ts │ │ ├── MlmdUtils.ts │ │ ├── TestUtils.ts │ │ ├── Utils.test.ts │ │ ├── Utils.tsx │ │ ├── __snapshots__ │ │ │ └── LineageActionBar.test.tsx.snap │ │ └── library.ts │ ├── pages │ │ ├── 404.test.tsx │ │ ├── 404.tsx │ │ ├── AllExperimentsAndArchive.test.tsx │ │ ├── AllExperimentsAndArchive.tsx │ │ ├── AllRecurringRunsList.test.tsx │ │ ├── AllRecurringRunsList.tsx │ │ ├── AllRunsAndArchive.test.tsx │ │ ├── AllRunsAndArchive.tsx │ │ ├── AllRunsList.test.tsx │ │ ├── AllRunsList.tsx │ │ ├── ArchivedExperiments.test.tsx │ │ ├── ArchivedExperiments.tsx │ │ ├── ArchivedRuns.test.tsx │ │ ├── ArchivedRuns.tsx │ │ ├── ArtifactDetails.tsx │ │ ├── ArtifactList.test.tsx │ │ ├── ArtifactList.tsx │ │ ├── Compare.test.tsx │ │ ├── Compare.tsx │ │ ├── ExecutionDetails.tsx │ │ ├── ExecutionList.tsx │ │ ├── ExperimentDetails.test.tsx │ │ ├── ExperimentDetails.tsx │ │ ├── ExperimentList.test.tsx │ │ ├── ExperimentList.tsx │ │ ├── FrontendFeatures.tsx │ │ ├── GettingStarted.test.tsx │ │ ├── GettingStarted.tsx │ │ ├── NewExperiment.test.tsx │ │ ├── NewExperiment.tsx │ │ ├── NewPipelineVersion.test.tsx │ │ ├── NewPipelineVersion.tsx │ │ ├── NewRun.test.tsx │ │ ├── NewRun.tsx │ │ ├── Page.tsx │ │ ├── PipelineDetails.test.tsx │ │ ├── PipelineDetails.tsx │ │ ├── PipelineDetailsTest.test.tsx │ │ ├── PipelineDetailsV1.test.tsx │ │ ├── PipelineDetailsV1.tsx │ │ ├── PipelineDetailsV2.test.tsx │ │ ├── PipelineDetailsV2.tsx │ │ ├── PipelineList.test.tsx │ │ ├── PipelineList.tsx │ │ ├── PipelineVersionList.test.tsx │ │ ├── PipelineVersionList.tsx │ │ ├── RecurringRunDetails.test.tsx │ │ ├── RecurringRunDetails.tsx │ │ ├── RecurringRunList.test.tsx │ │ ├── RecurringRunList.tsx │ │ ├── RecurringRunsManager.test.tsx │ │ ├── RecurringRunsManager.tsx │ │ ├── ResourceSelector.test.tsx │ │ ├── ResourceSelector.tsx │ │ ├── RunDetails.test.tsx │ │ ├── RunDetails.tsx │ │ ├── RunDetailsRouter.tsx │ │ ├── RunDetailsV2.test.tsx │ │ ├── RunDetailsV2.tsx │ │ ├── RunList.test.tsx │ │ ├── RunList.tsx │ │ ├── RunListsRouter.test.tsx │ │ ├── RunListsRouter.tsx │ │ ├── Status.test.tsx │ │ ├── Status.tsx │ │ ├── __snapshots__ │ │ │ ├── 404.test.tsx.snap │ │ │ ├── AllExperimentsAndArchive.test.tsx.snap │ │ │ ├── AllRunsAndArchive.test.tsx.snap │ │ │ ├── AllRunsList.test.tsx.snap │ │ │ ├── ArchivedExperiments.test.tsx.snap │ │ │ ├── ArchivedRuns.test.tsx.snap │ │ │ ├── Compare.test.tsx.snap │ │ │ ├── ExperimentDetails.test.tsx.snap │ │ │ ├── ExperimentList.test.tsx.snap │ │ │ ├── GettingStarted.test.tsx.snap │ │ │ ├── NewExperiment.test.tsx.snap │ │ │ ├── NewPipelineVersion.test.tsx.snap │ │ │ ├── NewRun.test.tsx.snap │ │ │ ├── PipelineList.test.tsx.snap │ │ │ ├── PipelineVersionList.test.tsx.snap │ │ │ ├── RecurringRunDetails.test.tsx.snap │ │ │ ├── RecurringRunsManager.test.tsx.snap │ │ │ ├── ResourceSelector.test.tsx.snap │ │ │ ├── RunDetails.test.tsx.snap │ │ │ ├── RunList.test.tsx.snap │ │ │ └── Status.test.tsx.snap │ │ └── v2 │ │ │ └── DagCanvas.tsx │ ├── react-app-env.d.ts │ ├── setupTests.ts │ ├── stories │ │ ├── Button.stories.tsx │ │ ├── Button.tsx │ │ ├── Header.stories.tsx │ │ ├── Header.tsx │ │ ├── Introduction.stories.mdx │ │ ├── Page.stories.tsx │ │ ├── Page.tsx │ │ ├── assets │ │ │ ├── code-brackets.svg │ │ │ ├── colors.svg │ │ │ ├── comments.svg │ │ │ ├── direction.svg │ │ │ ├── flow.svg │ │ │ ├── plugin.svg │ │ │ ├── repo.svg │ │ │ └── stackalt.svg │ │ ├── button.css │ │ ├── header.css │ │ ├── page.css │ │ └── v2 │ │ │ ├── ArtifactNode.stories.tsx │ │ │ ├── ExecutionNode.stories.tsx │ │ │ ├── NodeGallery.stories.tsx │ │ │ └── SubDagNode.stories.tsx │ ├── tailwind.css │ └── third_party │ │ └── mlmd │ │ ├── argo_template.ts │ │ ├── generated │ │ └── ml_metadata │ │ │ └── proto │ │ │ ├── metadata_store_pb.d.ts │ │ │ ├── metadata_store_pb.js │ │ │ ├── metadata_store_service_grpc_web_pb.d.ts │ │ │ ├── metadata_store_service_grpc_web_pb.js │ │ │ ├── metadata_store_service_pb.d.ts │ │ │ └── metadata_store_service_pb.js │ │ ├── index.ts │ │ └── kubernetes.ts ├── swagger-config.json ├── tailwind.config.js ├── third_party │ ├── @kubernetes │ │ └── client-node │ │ │ └── LICENSE │ ├── argo-ui │ │ └── LICENSE │ ├── jest │ │ └── LICENSE │ ├── mamacro │ │ └── LICENSE │ ├── once │ │ └── LICENSE │ ├── ts-proto-descriptors │ │ └── LICENSE │ └── watchpack │ │ └── LICENSE ├── tsconfig.json ├── tsconfig.prod.json └── tsconfig.test.json ├── go.mod ├── go.sum ├── guides ├── Custom-run-migration-guide.md ├── TEKTON_CHANGELOG.md ├── advanced_user_guide.md ├── developer_guide.md ├── kfp-admin-guide.md ├── kfp-rebase-guide.md ├── kfp-user-guide │ ├── README.md │ ├── echo_pipeline.py │ └── images │ │ ├── experiment-page.png │ │ ├── pipeline-page.png │ │ ├── run-page.png │ │ ├── upload-button.png │ │ └── upload-page.png ├── kfp_tekton_install.md └── release.md ├── hack ├── cherry-pick.sh ├── format.sh ├── install-go-licenses.sh ├── update-all-requirements.sh └── update-requirements.sh ├── images ├── condition-dependency.png ├── kfp-tekton.png └── openshift-pipelines.png ├── install ├── v0.7.0 │ └── kfp-tekton.yaml ├── v0.8.0 │ └── kfp-tekton.yaml ├── v0.9.0-rc0 │ └── kfp-tekton.yaml ├── v0.9.0 │ └── kfp-tekton.yaml ├── v1.0.0 │ └── kfp-tekton.yaml ├── v1.1.0 │ └── kfp-tekton.yaml ├── v1.1.1 │ └── kfp-tekton.yaml ├── v1.2.0 │ └── kfp-tekton.yaml ├── v1.2.1 │ └── kfp-tekton.yaml ├── v1.3.0 │ └── kfp-tekton.yaml ├── v1.3.1 │ └── kfp-tekton.yaml ├── v1.4.0 │ └── kfp-tekton.yaml ├── v1.4.1 │ └── kfp-tekton.yaml ├── v1.5.0 │ └── kfp-tekton.yaml ├── v1.5.1 │ └── kfp-tekton.yaml ├── v1.6.0 │ └── kfp-tekton.yaml ├── v1.6.1 │ └── kfp-tekton.yaml ├── v1.6.2 │ └── kfp-tekton.yaml ├── v1.6.3 │ └── kfp-tekton.yaml ├── v1.6.4 │ └── kfp-tekton.yaml ├── v1.6.5 │ └── kfp-tekton.yaml ├── v1.6.6 │ └── kfp-tekton.yaml ├── v1.7.0 │ └── kfp-tekton.yaml ├── v1.7.1 │ └── kfp-tekton.yaml ├── v1.8.0 │ └── kfp-tekton.yaml ├── v1.8.1 │ └── kfp-tekton.yaml ├── v1.9.0 │ └── kfp-tekton.yaml ├── v1.9.1 │ └── kfp-tekton.yaml └── v1.9.2 │ └── kfp-tekton.yaml ├── manifests ├── gcp_marketplace │ ├── README.md │ ├── chart │ │ └── kubeflow-pipelines │ │ │ ├── Chart.yaml │ │ │ ├── logo.png │ │ │ ├── templates │ │ │ ├── application.yaml │ │ │ ├── argo.yaml │ │ │ ├── cache.yaml │ │ │ ├── config-snapshot.yaml │ │ │ ├── metadata.yaml │ │ │ ├── minio.yaml │ │ │ ├── mysql.yaml │ │ │ ├── pipeline.yaml │ │ │ └── proxy.yaml │ │ │ └── values.yaml │ ├── cli.md │ ├── deployer │ │ ├── Dockerfile │ │ ├── init_action.sh │ │ ├── overlay_deploy.sh │ │ └── overlay_deploy_with_tests.sh │ ├── guide.md │ ├── hack │ │ ├── format.sh │ │ └── release.sh │ ├── schema.yaml │ └── test │ │ ├── presubmit.sh │ │ ├── snapshot-base.yaml │ │ ├── snapshot-emissary.yaml │ │ ├── snapshot-managed-storage-with-db-prefix.yaml │ │ ├── snapshot-managed-storage.yaml │ │ ├── snapshots.sh │ │ ├── values-base.yaml │ │ ├── values-emissary.yaml │ │ ├── values-managed-storage-with-db-prefix.yaml │ │ └── values-managed-storage.yaml └── kustomize │ ├── Makefile │ ├── README.md │ ├── base │ ├── application │ │ ├── application.yaml │ │ └── kustomization.yaml │ ├── cache-deployer │ │ ├── cache-deployer-deployment.yaml │ │ ├── cache-deployer-role.yaml │ │ ├── cache-deployer-rolebinding.yaml │ │ ├── cluster-scoped │ │ │ ├── cache-deployer-clusterrole.yaml │ │ │ ├── cache-deployer-clusterrolebinding.yaml │ │ │ ├── cache-deployer-sa.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── cache │ │ ├── cache-deployment.yaml │ │ ├── cache-role.yaml │ │ ├── cache-rolebinding.yaml │ │ ├── cache-sa.yaml │ │ ├── cache-service.yaml │ │ └── kustomization.yaml │ ├── installs │ │ ├── generic │ │ │ ├── kustomization.yaml │ │ │ ├── mysql-secret.yaml │ │ │ ├── params.yaml │ │ │ └── pipeline-install-config.yaml │ │ └── multi-user │ │ │ ├── api-service │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ ├── kustomization.yaml │ │ │ └── params.env │ │ │ ├── cache │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── istio-authorization-config.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── metadata-writer │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── params.yaml │ │ │ ├── persistence-agent │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── pipelines-profile-controller │ │ │ ├── composite-controller.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── params.env │ │ │ ├── requirements-dev.txt │ │ │ ├── run_tests.sh │ │ │ ├── service.yaml │ │ │ ├── sync.py │ │ │ └── test_sync.py │ │ │ ├── pipelines-ui │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── configmap-patch.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── scheduled-workflow │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ ├── view-edit-cluster-roles.yaml │ │ │ ├── viewer-controller │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── deployment-patch.yaml │ │ │ └── kustomization.yaml │ │ │ └── virtual-service.yaml │ ├── metadata │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── metadata-envoy-deployment.yaml │ │ │ ├── metadata-envoy-service.yaml │ │ │ ├── metadata-grpc-configmap.yaml │ │ │ ├── metadata-grpc-deployment.yaml │ │ │ ├── metadata-grpc-sa.yaml │ │ │ └── metadata-grpc-service.yaml │ │ ├── options │ │ │ └── istio │ │ │ │ ├── destination-rule.yaml │ │ │ │ ├── istio-authorization-policy.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── virtual-service.yaml │ │ └── overlays │ │ │ └── db │ │ │ ├── kustomization.yaml │ │ │ ├── metadata-db-deployment.yaml │ │ │ ├── metadata-db-pvc.yaml │ │ │ ├── metadata-db-service.yaml │ │ │ ├── params.env │ │ │ ├── patches │ │ │ └── metadata-grpc-deployment.yaml │ │ │ └── secrets.env │ └── pipeline │ │ ├── apiserver-deployment.yaml │ │ ├── cluster-scoped │ │ ├── kustomization.yaml │ │ ├── scheduled-workflow-crd.yaml │ │ └── viewer-crd.yaml │ │ ├── container-builder-sa.yaml │ │ ├── kfp-launcher-configmap.yaml │ │ ├── kfp-pipeline-config.yaml │ │ ├── kustomization.yaml │ │ ├── metadata-writer-deployment.yaml │ │ ├── metadata-writer │ │ ├── kustomization.yaml │ │ ├── metadata-writer-deployment.yaml │ │ ├── metadata-writer-role.yaml │ │ ├── metadata-writer-rolebinding.yaml │ │ └── metadata-writer-sa.yaml │ │ ├── ml-pipeline-apiserver-deployment.yaml │ │ ├── ml-pipeline-apiserver-role.yaml │ │ ├── ml-pipeline-apiserver-rolebinding.yaml │ │ ├── ml-pipeline-apiserver-sa.yaml │ │ ├── ml-pipeline-apiserver-service.yaml │ │ ├── ml-pipeline-persistenceagent-deployment.yaml │ │ ├── ml-pipeline-persistenceagent-role.yaml │ │ ├── ml-pipeline-persistenceagent-rolebinding.yaml │ │ ├── ml-pipeline-persistenceagent-sa.yaml │ │ ├── ml-pipeline-scheduledworkflow-deployment.yaml │ │ ├── ml-pipeline-scheduledworkflow-role.yaml │ │ ├── ml-pipeline-scheduledworkflow-rolebinding.yaml │ │ ├── ml-pipeline-scheduledworkflow-sa.yaml │ │ ├── ml-pipeline-ui-configmap.yaml │ │ ├── ml-pipeline-ui-deployment.yaml │ │ ├── ml-pipeline-ui-role.yaml │ │ ├── ml-pipeline-ui-rolebinding.yaml │ │ ├── ml-pipeline-ui-sa.yaml │ │ ├── ml-pipeline-ui-service.yaml │ │ ├── ml-pipeline-viewer-crd-deployment.yaml │ │ ├── ml-pipeline-viewer-crd-role.yaml │ │ ├── ml-pipeline-viewer-crd-rolebinding.yaml │ │ ├── ml-pipeline-viewer-crd-sa.yaml │ │ ├── ml-pipeline-visualization-deployment.yaml │ │ ├── ml-pipeline-visualization-sa.yaml │ │ ├── ml-pipeline-visualization-service.yaml │ │ ├── pipeline-runner-role.yaml │ │ ├── pipeline-runner-rolebinding.yaml │ │ ├── pipeline-runner-sa.yaml │ │ └── viewer-sa.yaml │ ├── cluster-scoped-resources │ ├── kustomization.yaml │ ├── namespace.yaml │ └── params.yaml │ ├── env │ ├── aws │ │ ├── README.md │ │ ├── aws-configuration-patch.yaml │ │ ├── config │ │ ├── kustomization.yaml │ │ ├── minio-artifact-secret-patch.env │ │ ├── params.env │ │ ├── secret.env │ │ └── viewer-pod-template.json │ ├── azure │ │ ├── kustomization.yaml │ │ ├── minio-azure-gateway │ │ │ ├── kustomization.yaml │ │ │ ├── minio-artifact-secret.env │ │ │ ├── minio-azure-gateway-deployment.yaml │ │ │ └── minio-azure-gateway-service.yaml │ │ ├── mysql-secret.env │ │ ├── params.env │ │ └── readme.md │ ├── cert-manager │ │ ├── base │ │ │ ├── cache-cert-issuer.yaml │ │ │ ├── cache-cert.yaml │ │ │ ├── cache-webhook-config.yaml │ │ │ ├── kustomization.yaml │ │ │ └── params.yaml │ │ ├── cluster-scoped-resources │ │ │ └── kustomization.yaml │ │ ├── dev │ │ │ ├── delete-cache-deployer.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ └── params.yaml │ │ └── platform-agnostic-multi-user │ │ │ ├── delete-cache-deployer.yaml │ │ │ └── kustomization.yaml │ ├── dev │ │ └── kustomization.yaml │ ├── gcp │ │ ├── cloudsql-proxy │ │ │ ├── cloudsql-proxy-deployment.yaml │ │ │ ├── cloudsql-proxy-sa.yaml │ │ │ ├── kustomization.yaml │ │ │ └── mysql-service.yaml │ │ ├── gcp-configurations-patch.yaml │ │ ├── inverse-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── proxy-configmap.yaml │ │ │ ├── proxy-deployment.yaml │ │ │ ├── proxy-role.yaml │ │ │ ├── proxy-rolebinding.yaml │ │ │ └── proxy-sa.yaml │ │ ├── kustomization.yaml │ │ ├── minio-gcs-gateway │ │ │ ├── kustomization.yaml │ │ │ ├── minio-artifact-secret.env │ │ │ ├── minio-gcs-gateway-deployment.yaml │ │ │ ├── minio-gcs-gateway-sa.yaml │ │ │ └── minio-gcs-gateway-service.yaml │ │ └── params.env │ ├── kfp-template-openshift-pipelines │ │ ├── kustomization.yaml │ │ ├── namespace.yaml │ │ ├── scheduled-workflow-crd.yaml │ │ └── viewer-crd.yaml │ ├── kfp-template │ │ ├── kustomization.yaml │ │ ├── namespace.yaml │ │ ├── scheduled-workflow-crd.yaml │ │ └── viewer-crd.yaml │ ├── plain-multi-user │ │ └── kustomization.yaml │ ├── plain │ │ └── kustomization.yaml │ ├── platform-agnostic-emissary │ │ ├── kustomization.yaml │ │ └── workflow-controller-configmap-patch.yaml │ ├── platform-agnostic-kind │ │ ├── kustomization.yaml │ │ └── plain-kind │ │ │ └── kustomization.yaml │ ├── platform-agnostic-multi-user-emissary │ │ ├── kustomization.yaml │ │ └── workflow-controller-configmap-patch.yaml │ ├── platform-agnostic-multi-user │ │ └── kustomization.yaml │ └── platform-agnostic │ │ └── kustomization.yaml │ ├── gcp-workload-identity-setup.sh │ ├── hack │ ├── format.sh │ ├── presubmit.sh │ └── release.sh │ ├── sample │ ├── README.md │ ├── cluster-scoped-resources │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── params-db-secret.env │ └── params.env │ ├── third-party │ ├── application │ │ ├── application-controller-deployment.yaml │ │ ├── application-controller-role.yaml │ │ ├── application-controller-rolebinding.yaml │ │ ├── application-controller-sa.yaml │ │ ├── application-controller-service.yaml │ │ ├── cluster-scoped │ │ │ ├── application-crd.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── argo │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── params.yaml │ │ │ ├── workflow-controller-configmap-patch.yaml │ │ │ └── workflow-controller-deployment-patch.yaml │ │ ├── installs │ │ │ ├── cluster │ │ │ │ ├── kustomization.yaml │ │ │ │ └── workflow-controller-clusterrolebinding-patch.json │ │ │ └── namespace │ │ │ │ ├── cluster-scoped │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── workflow-controller-deployment-patch.json │ │ └── upstream │ │ │ └── manifests │ │ │ ├── Kptfile │ │ │ ├── LICENSE │ │ │ ├── base │ │ │ ├── argo-server │ │ │ │ ├── argo-server-deployment.yaml │ │ │ │ ├── argo-server-sa.yaml │ │ │ │ ├── argo-server-service.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── crds │ │ │ │ ├── full │ │ │ │ │ ├── README.md │ │ │ │ │ ├── argoproj.io_clusterworkflowtemplates.yaml │ │ │ │ │ ├── argoproj.io_cronworkflows.yaml │ │ │ │ │ ├── argoproj.io_workfloweventbindings.yaml │ │ │ │ │ ├── argoproj.io_workflows.yaml │ │ │ │ │ ├── argoproj.io_workflowtaskresults.yaml │ │ │ │ │ ├── argoproj.io_workflowtasksets.yaml │ │ │ │ │ ├── argoproj.io_workflowtemplates.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── minimal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── argoproj.io_clusterworkflowtemplates.yaml │ │ │ │ │ ├── argoproj.io_cronworkflows.yaml │ │ │ │ │ ├── argoproj.io_workfloweventbindings.yaml │ │ │ │ │ ├── argoproj.io_workflows.yaml │ │ │ │ │ ├── argoproj.io_workflowtaskresults.yaml │ │ │ │ │ ├── argoproj.io_workflowtasksets.yaml │ │ │ │ │ ├── argoproj.io_workflowtemplates.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── workflow-controller │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── workflow-controller-configmap.yaml │ │ │ │ ├── workflow-controller-deployment.yaml │ │ │ │ ├── workflow-controller-metrics-service.yaml │ │ │ │ ├── workflow-controller-priorityclass.yaml │ │ │ │ └── workflow-controller-sa.yaml │ │ │ ├── cluster-install │ │ │ ├── argo-server-rbac │ │ │ │ ├── argo-server-clusterole.yaml │ │ │ │ ├── argo-server-clusterolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── workflow-controller-rbac │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── workflow-aggregate-roles.yaml │ │ │ │ ├── workflow-controller-clusterrole.yaml │ │ │ │ ├── workflow-controller-clusterrolebinding.yaml │ │ │ │ ├── workflow-controller-role.yaml │ │ │ │ └── workflow-controller-rolebinding.yaml │ │ │ ├── namespace-install │ │ │ ├── argo-server-rbac │ │ │ │ ├── argo-server-role.yaml │ │ │ │ ├── argo-server-rolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ │ ├── argo-server-deployment.yaml │ │ │ │ └── workflow-controller-deployment.yaml │ │ │ └── workflow-controller-rbac │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── workflow-controller-role.yaml │ │ │ │ └── workflow-controller-rolebinding.yaml │ │ │ └── quick-start │ │ │ ├── base │ │ │ ├── agent-default-rolebinding.yaml │ │ │ ├── agent-role.yaml │ │ │ ├── argo-server-sso-secret.yaml │ │ │ ├── artifact-repositories-configmap.yaml │ │ │ ├── cluster-workflow-template-rbac.yaml │ │ │ ├── executor-default-rolebinding.yaml │ │ │ ├── executor │ │ │ │ ├── docker │ │ │ │ │ └── executor-role.yaml │ │ │ │ ├── emissary │ │ │ │ │ └── executor-role.yaml │ │ │ │ ├── k8sapi │ │ │ │ │ └── executor-role.yaml │ │ │ │ ├── kubelet │ │ │ │ │ ├── executor-role.yaml │ │ │ │ │ ├── kubelet-executor-clusterrole.yaml │ │ │ │ │ └── kubelet-executor-default-clusterrolebinding.yaml │ │ │ │ └── pns │ │ │ │ │ └── executor-role.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── memoizer-default-rolebinding.yaml │ │ │ ├── memoizer-role.yaml │ │ │ ├── minio │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── minio-deploy.yaml │ │ │ │ ├── minio-service.yaml │ │ │ │ └── my-minio-cred-secret.yaml │ │ │ ├── overlays │ │ │ │ ├── argo-server-deployment.yaml │ │ │ │ └── workflow-controller-configmap.yaml │ │ │ ├── pod-manager-default-rolebinding.yaml │ │ │ ├── pod-manager-role.yaml │ │ │ ├── prometheus │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── prometheus-config-cluster.yaml │ │ │ │ ├── prometheus-deployment.yaml │ │ │ │ └── prometheus-service.yaml │ │ │ ├── webhooks │ │ │ │ ├── argo-workflows-webhook-clients-secret.yaml │ │ │ │ ├── github.com-rolebinding.yaml │ │ │ │ ├── github.com-sa.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── submit-workflow-template-role.yaml │ │ │ ├── workflow-default-rolebinding.yaml │ │ │ ├── workflow-manager-default-rolebinding.yaml │ │ │ └── workflow-manager-role.yaml │ │ │ ├── minimal │ │ │ ├── kustomization.yaml │ │ │ └── overlays │ │ │ │ └── workflow-controller-configmap.yaml │ │ │ ├── mysql │ │ │ ├── argo-mysql-config-secret.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── mysql-deployment.yaml │ │ │ ├── mysql-service.yaml │ │ │ └── overlays │ │ │ │ └── workflow-controller-configmap.yaml │ │ │ ├── postgres │ │ │ ├── argo-postgres-config-secret.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ │ └── workflow-controller-configmap.yaml │ │ │ ├── postgres-deployment.yaml │ │ │ └── postgres-service.yaml │ │ │ └── sso │ │ │ ├── dex │ │ │ ├── dev-svc.yaml │ │ │ ├── dex-cm.yaml │ │ │ ├── dex-deploy.yaml │ │ │ ├── dex-rb.yaml │ │ │ ├── dex-role.yaml │ │ │ ├── dex-sa.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── overlays │ │ │ ├── argo-server-sa.yaml │ │ │ └── workflow-controller-configmap.yaml │ ├── grafana │ │ ├── grafana-deployment.yaml │ │ ├── grafana-role.yaml │ │ ├── grafana-rolebinding.yaml │ │ ├── grafana-sa.yaml │ │ ├── grafana-service.yaml │ │ └── kustomization.yaml │ ├── kfp-csi-s3 │ │ ├── csi-s3-deployment.yaml │ │ ├── csi-s3-secret.yaml │ │ ├── kustomization.yaml │ │ └── params.yaml │ ├── metacontroller │ │ └── base │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── crd.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── service-account.yaml │ │ │ └── stateful-set.yaml │ ├── minio │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── minio-deployment.yaml │ │ │ ├── minio-pvc.yaml │ │ │ ├── minio-service.yaml │ │ │ └── mlpipeline-minio-artifact-secret.yaml │ │ └── options │ │ │ └── istio │ │ │ ├── istio-authorization-policy.yaml │ │ │ └── kustomization.yaml │ ├── mysql │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── mysql-deployment.yaml │ │ │ ├── mysql-pv-claim.yaml │ │ │ ├── mysql-service.yaml │ │ │ └── mysql-serviceaccount.yaml │ │ └── options │ │ │ └── istio │ │ │ ├── istio-authorization-policy.yaml │ │ │ └── kustomization.yaml │ ├── openshift-pipelines-custom-task │ │ ├── kustomization.yaml │ │ ├── pipelineloop-controller-patch.yaml │ │ └── pipelineloop-webhook-patch.yaml │ ├── openshift │ │ └── standalone │ │ │ ├── anyuid-scc.yaml │ │ │ ├── kustomization.yaml │ │ │ └── privileged-scc.yaml │ ├── prometheus │ │ ├── kustomization.yaml │ │ ├── prometheus-configmap.yaml │ │ ├── prometheus-deployment.yaml │ │ ├── prometheus-role.yaml │ │ ├── prometheus-rolebinding.yaml │ │ ├── prometheus-sa.yaml │ │ └── prometheus-service.yaml │ ├── tekton-custom-task │ │ ├── kustomization.yaml │ │ └── pipeline-loops │ │ │ ├── 200-serviceaccount.yaml │ │ │ ├── 201-clusterrole.yaml │ │ │ ├── 201-role.yaml │ │ │ ├── 201-rolebinding.yaml │ │ │ ├── 202-clusterrolebinding.yaml │ │ │ ├── 203-object-store-config.yaml │ │ │ ├── 204-cache-config.yaml │ │ │ ├── 300-pipelineloop.yaml │ │ │ ├── 301-breaktask.yaml │ │ │ ├── 500-controller.yaml │ │ │ ├── 500-webhook-configuration.yaml │ │ │ ├── 500-webhook.yaml │ │ │ └── kustomization.yaml │ └── tekton │ │ ├── README.md │ │ ├── base │ │ └── kustomization.yaml │ │ ├── installs │ │ └── cluster │ │ │ └── kustomization.yaml │ │ └── upstream │ │ └── manifests │ │ └── base │ │ ├── kustomization.yaml │ │ ├── tektoncd-dashboard │ │ ├── kustomization.yaml │ │ └── tekton-dashboard-release.yaml │ │ └── tektoncd-install │ │ ├── kustomization.yaml │ │ ├── tekton-config.yaml │ │ ├── tekton-controller.yaml │ │ ├── tekton-default.yaml │ │ └── tekton-release.yaml │ └── wi-utils.sh ├── samples ├── README.md ├── big_data_passing │ ├── big_data_passing_description.ipynb │ ├── constant_to_consumer_pipeline.yaml │ ├── pipeline_parameter_to_consumer_pipeline.yaml │ ├── print_repeating_lines_pipeline.yaml │ ├── processing_pipeline.yaml │ ├── producers_to_consumers_pipeline.yaml │ ├── sum_pipeline.yaml │ ├── task_output_to_consumer_pipeline.yaml │ ├── text_splitting_pipeline.yaml │ └── text_splitting_pipeline2.yaml ├── data-passing-conformance │ ├── README.md │ └── data_passing.py ├── e2e-mnist │ ├── 9.bmp │ ├── README.md │ ├── e2e-mnist.py │ └── mnist.ipynb ├── exit-handler-email │ ├── README.md │ ├── pvc.yaml │ ├── secret.yaml │ └── send-email.py ├── flip-coin-custom-task │ ├── README.md │ └── condition.py ├── flip-coin │ ├── README.md │ ├── condition-with-taskref.py │ └── condition.py ├── huggingface-prompt-tuning │ ├── README.md │ └── prompt-tuning-demo.py ├── k8s-downstream-api │ ├── README.md │ └── k8s-downstream-api.py ├── katib │ ├── README.md │ └── early-stopping.ipynb ├── kfp-tfx │ ├── README.md │ ├── images │ │ └── tfx-taxi.png │ └── tfx-taxi-on-prem │ │ ├── README.md │ │ ├── TFX-taxi-sample-pvc.py │ │ ├── kfs.py │ │ ├── pvc │ │ ├── filebrowser.yaml │ │ ├── pv.yaml │ │ └── tfx-pvc.yaml │ │ └── tfx-kfs.yaml ├── lightweight-component │ ├── README.md │ ├── calc_pipeline.py │ ├── images │ │ ├── Tekton_add-2.png │ │ ├── Tekton_add.png │ │ ├── Tekton_divmod.png │ │ ├── Tekton_resource.png │ │ └── Tekton_taskruns.png │ └── lightweight_component.ipynb ├── logging_s3 │ ├── pipeline_log_to_s3_by_banzaicloud │ │ ├── minio_s3.png │ │ └── pipeline_logging_output_s3_banzaicloud.md │ ├── pipeline_log_to_s3_by_fluentd_recommend │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── entrypoint.sh │ │ ├── fluent-config.yaml │ │ ├── fluent.conf │ │ ├── images │ │ │ ├── s3-1.png │ │ │ └── s3-2.png │ │ └── pipeline-logs-fluentd-s3.yaml │ └── pipeline_log_to_s3_by_sdk │ │ ├── parallel_join.py │ │ ├── pipeline_logging_output_s3_compiler.md │ │ ├── s3-1.png │ │ └── s3-2.png ├── nested-loops │ ├── README.md │ └── withitem_nested.py ├── nested-pipeline │ ├── README.md │ └── compose.py ├── peft-modelmesh-pipeline │ ├── Dockerfile │ ├── README.md │ ├── inferenceservice.yaml │ ├── input.json │ ├── peft_model_server.py │ ├── prompt-tuning-pipeline.py │ ├── prompt-tuning-serving.py │ └── servingruntime.yaml ├── tekton-custom-task │ ├── README.md │ └── tekton-custom-task.py └── trusted-ai │ ├── README.md │ └── trusted-ai.py ├── scripts ├── check_diff.sh └── deploy │ ├── github │ ├── build-images.sh │ ├── deploy-kfp.sh │ └── e2e-test.sh │ └── iks │ ├── Dockerfile │ ├── README.md │ ├── build-image-dind.sh │ ├── build-image.sh │ ├── deploy-dind.sh │ ├── deploy-ibm-vpc.sh │ ├── deploy-kfp-ibm-vpc.sh │ ├── deploy-kfp.sh │ ├── deploy-tekton.sh │ ├── e2e-test.sh │ ├── expect-cache.json │ ├── expect-condition-depend.json │ ├── helper-functions.sh │ ├── publish-image.sh │ ├── run-test.sh │ ├── tekton-catalog │ ├── build-binaries.sh │ ├── cleanup.sh │ ├── create-dockerconfig-secret.sh │ ├── deploy-any-sequencer-e2e.sh │ ├── deploy-kubectl-wrapper-e2e.sh │ ├── deploy-pipeline-loops-e2e.sh │ ├── iks-authenticate.sh │ ├── publish-any-sequencer-image.sh │ ├── publish-kubectl-wrapper-image.sh │ ├── publish-pipeline-loops-images.sh │ ├── setup-kubectl-wrapper-deploy.sh │ └── setup-pipeline-loops-deploy.sh │ ├── test-cache.sh │ ├── test-condition-depend.sh │ ├── test-flip-coin.sh │ ├── test-many-edges.sh │ ├── test-trusted-ai.sh │ ├── test.sh │ ├── test │ └── many-edges.py │ ├── undeploy-kfp.sh │ ├── undeploy-tekton.sh │ └── workflow.png ├── sdk ├── FEATURES.md ├── K8S_CLIENT_HELPER.md ├── README.md ├── python │ ├── README.md │ ├── kfp_tekton │ │ ├── __init__.py │ │ ├── _client.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── cli.py │ │ ├── compiler │ │ │ ├── __init__.py │ │ │ ├── _data_passing_rewriter.py │ │ │ ├── _k8s_helper.py │ │ │ ├── _op_to_template.py │ │ │ ├── _tekton_handler.py │ │ │ ├── compiler.py │ │ │ ├── main.py │ │ │ ├── pipeline_utils.py │ │ │ └── yaml_utils.py │ │ ├── k8s_client_helper.py │ │ └── tekton.py │ ├── requirements-test.txt │ ├── requirements.in │ ├── requirements.txt │ ├── setup.py │ └── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── compiler │ │ ├── __init__.py │ │ ├── compiler_tests.py │ │ ├── compiler_tests_e2e.py │ │ ├── k8s_helper_tests.py │ │ ├── main.py │ │ └── testdata │ │ │ ├── __init__.py │ │ │ ├── affinity.log │ │ │ ├── affinity.py │ │ │ ├── affinity.yaml │ │ │ ├── any_sequencer.log │ │ │ ├── any_sequencer.py │ │ │ ├── any_sequencer.yaml │ │ │ ├── any_sequencer_looped.py │ │ │ ├── any_sequencer_looped.yaml │ │ │ ├── any_sequencer_looped_noninlined.yaml │ │ │ ├── artifact_outputs.py │ │ │ ├── artifact_outputs.yaml │ │ │ ├── artifact_passing_using_volume.log │ │ │ ├── artifact_passing_using_volume.py │ │ │ ├── artifact_passing_using_volume.yaml │ │ │ ├── artifacts_of_ops_with_long_names.py │ │ │ ├── basic_no_decorator.log │ │ │ ├── basic_no_decorator.py │ │ │ ├── basic_no_decorator.yaml │ │ │ ├── big_data_multi_volumes_1.py │ │ │ ├── big_data_multi_volumes_1.yaml │ │ │ ├── big_data_multi_volumes_2.py │ │ │ ├── big_data_multi_volumes_2.yaml │ │ │ ├── big_data_passing.log │ │ │ ├── big_data_passing.py │ │ │ ├── big_data_passing.yaml │ │ │ ├── break_task_pipeline.py │ │ │ ├── break_task_pipeline.yaml │ │ │ ├── break_task_pipeline_noninlined.yaml │ │ │ ├── cache.log │ │ │ ├── cache.py │ │ │ ├── cache.yaml │ │ │ ├── calc_pipeline.py │ │ │ ├── compiler_perf.py │ │ │ ├── compiler_perf.yaml │ │ │ ├── compose.log │ │ │ ├── compose.py │ │ │ ├── compose.yaml │ │ │ ├── cond_recur.py │ │ │ ├── cond_recur.yaml │ │ │ ├── cond_recur_noninlined.yaml │ │ │ ├── cond_recur_pipelineloop_cr1.yaml │ │ │ ├── condition.log │ │ │ ├── condition.py │ │ │ ├── condition.yaml │ │ │ ├── condition_custom.py │ │ │ ├── condition_custom_task.log │ │ │ ├── condition_custom_task.py │ │ │ ├── condition_custom_task.yaml │ │ │ ├── condition_depend.py │ │ │ ├── condition_depend.yaml │ │ │ ├── condition_dependency.log │ │ │ ├── condition_dependency.py │ │ │ ├── condition_dependency.yaml │ │ │ ├── condition_sample.py │ │ │ ├── conditions_and_loops.log │ │ │ ├── conditions_and_loops.py │ │ │ ├── conditions_and_loops.yaml │ │ │ ├── conditions_and_loops_noninlined.yaml │ │ │ ├── conditions_with_global_params.log │ │ │ ├── conditions_with_global_params.py │ │ │ ├── conditions_with_global_params.yaml │ │ │ ├── create_component_from_func.log │ │ │ ├── create_component_from_func.py │ │ │ ├── create_component_from_func.yaml │ │ │ ├── create_component_from_func_component.yaml │ │ │ ├── custom_task_dash_args.py │ │ │ ├── custom_task_dash_args.yaml │ │ │ ├── custom_task_exit.py │ │ │ ├── custom_task_exit.yaml │ │ │ ├── custom_task_long_name.py │ │ │ ├── custom_task_long_name.yaml │ │ │ ├── custom_task_output.py │ │ │ ├── custom_task_output.yaml │ │ │ ├── custom_task_params.py │ │ │ ├── custom_task_params_ref.yaml │ │ │ ├── custom_task_params_ref_customtask_cr1.yaml │ │ │ ├── custom_task_params_spec.yaml │ │ │ ├── custom_task_recur_with_cond.py │ │ │ ├── custom_task_recur_with_cond.yaml │ │ │ ├── custom_task_recur_with_cond_noninlined.yaml │ │ │ ├── custom_task_recur_with_cond_pipelineloop_cr1.yaml │ │ │ ├── custom_task_ref.py │ │ │ ├── custom_task_ref.yaml │ │ │ ├── custom_task_ref_customtask_cr1.yaml │ │ │ ├── custom_task_ref_timeout.py │ │ │ ├── custom_task_ref_timeout.yaml │ │ │ ├── custom_task_spec.py │ │ │ ├── custom_task_spec.yaml │ │ │ ├── data_passing_pipeline_complete.py │ │ │ ├── data_passing_pipeline_complete.yaml │ │ │ ├── data_passing_pipeline_param_as_file.py │ │ │ ├── data_passing_pipeline_param_as_file.yaml │ │ │ ├── exception.py │ │ │ ├── exception.yaml │ │ │ ├── exit_handler.log │ │ │ ├── exit_handler.py │ │ │ ├── exit_handler.yaml │ │ │ ├── finally_context_var.py │ │ │ ├── finally_context_var.yaml │ │ │ ├── hidden_output_file.log │ │ │ ├── hidden_output_file.py │ │ │ ├── hidden_output_file.yaml │ │ │ ├── imagepullsecrets.log │ │ │ ├── imagepullsecrets.py │ │ │ ├── imagepullsecrets.yaml │ │ │ ├── imagepullsecrets_with_node_selector.py │ │ │ ├── imagepullsecrets_with_node_selector.yaml │ │ │ ├── init_container.log │ │ │ ├── init_container.py │ │ │ ├── init_container.yaml │ │ │ ├── input_artifact_raw_value.log │ │ │ ├── input_artifact_raw_value.py │ │ │ ├── input_artifact_raw_value.txt │ │ │ ├── input_artifact_raw_value.yaml │ │ │ ├── katib.log │ │ │ ├── katib.py │ │ │ ├── katib.yaml │ │ │ ├── last_idx.py │ │ │ ├── last_idx.yaml │ │ │ ├── last_idx_noninlined.yaml │ │ │ ├── literal_params_test.py │ │ │ ├── literal_params_test.yaml │ │ │ ├── load_from_yaml.log │ │ │ ├── load_from_yaml.py │ │ │ ├── load_from_yaml.yaml │ │ │ ├── long_param_name.log │ │ │ ├── long_param_name.py │ │ │ ├── long_param_name.yaml │ │ │ ├── long_pipeline_name.log │ │ │ ├── long_pipeline_name.py │ │ │ ├── long_pipeline_name.yaml │ │ │ ├── long_pipeline_name_noninlined.yaml │ │ │ ├── long_pipeline_name_pipelineloop_cr1.yaml │ │ │ ├── long_recursive_group_name.py │ │ │ ├── long_recursive_group_name.yaml │ │ │ ├── long_recursive_group_name_noninlined.yaml │ │ │ ├── long_recursive_group_name_pipelineloop_cr1.yaml │ │ │ ├── loop_empty.py │ │ │ ├── loop_empty.yaml │ │ │ ├── loop_in_recursion.py │ │ │ ├── loop_in_recursion.yaml │ │ │ ├── loop_in_recursion_noninlined.yaml │ │ │ ├── loop_in_recursion_pipelineloop_cr1.yaml │ │ │ ├── loop_literal_separator.py │ │ │ ├── loop_literal_separator.yaml │ │ │ ├── loop_literal_separator_noninlined.yaml │ │ │ ├── loop_over_lightweight_output.log │ │ │ ├── loop_over_lightweight_output.py │ │ │ ├── loop_over_lightweight_output.yaml │ │ │ ├── loop_over_lightweight_output_noninlined.yaml │ │ │ ├── loop_over_lightweight_output_pipelineloop_cr1.yaml │ │ │ ├── loop_static.log │ │ │ ├── loop_static.py │ │ │ ├── loop_static.yaml │ │ │ ├── loop_static_noninlined.yaml │ │ │ ├── loop_static_pipelineloop_cr1.yaml │ │ │ ├── loop_static_with_parallelism.py │ │ │ ├── loop_static_with_parallelism.yaml │ │ │ ├── loop_static_with_parallelism_noninlined.yaml │ │ │ ├── loop_static_with_parallelism_pipelineloop_cr1.yaml │ │ │ ├── loop_with_conditional_dependency.py │ │ │ ├── loop_with_conditional_dependency.yaml │ │ │ ├── loop_with_conditional_dependency_noninlined.yaml │ │ │ ├── loop_with_enumerate_basic.py │ │ │ ├── loop_with_enumerate_basic.yaml │ │ │ ├── loop_with_enumerate_basic_noninlined.yaml │ │ │ ├── loop_with_enumerate_withitem_multi_nested.py │ │ │ ├── loop_with_enumerate_withitem_multi_nested.yaml │ │ │ ├── loop_with_enumerate_withitem_multi_nested_noninlined.yaml │ │ │ ├── loop_with_numeric.py │ │ │ ├── loop_with_numeric.yaml │ │ │ ├── loop_with_numeric_enumerate.py │ │ │ ├── loop_with_numeric_enumerate.yaml │ │ │ ├── loop_with_numeric_enumerate_noninlined.yaml │ │ │ ├── loop_with_numeric_noninlined.yaml │ │ │ ├── loop_with_params_in_json.py │ │ │ ├── loop_with_params_in_json.yaml │ │ │ ├── loop_with_step.py │ │ │ ├── loop_with_step.yaml │ │ │ ├── loop_with_step_noninlined.yaml │ │ │ ├── many_results.py │ │ │ ├── many_results.yaml │ │ │ ├── many_results_with_warnings.py │ │ │ ├── many_results_with_warnings.yaml │ │ │ ├── multi_nested_loop_condi.py │ │ │ ├── multi_nested_loop_condi.yaml │ │ │ ├── nested_cel_outputs.py │ │ │ ├── nested_cel_outputs.yaml │ │ │ ├── nested_cel_outputs_noninlined.yaml │ │ │ ├── nested_custom_conditions.py │ │ │ ├── nested_custom_conditions.yaml │ │ │ ├── nested_loop_counter.py │ │ │ ├── nested_loop_counter.yaml │ │ │ ├── nested_loop_counter_noninlined.yaml │ │ │ ├── nested_loop_counter_param.py │ │ │ ├── nested_loop_counter_param.yaml │ │ │ ├── nested_loop_counter_param_noninlined.yaml │ │ │ ├── nested_loop_global_param.py │ │ │ ├── nested_loop_global_param.yaml │ │ │ ├── nested_loop_global_param_noninlined.yaml │ │ │ ├── nested_loop_param.py │ │ │ ├── nested_loop_param.yaml │ │ │ ├── nested_loop_param_noninlined.yaml │ │ │ ├── nested_loop_same_arg.py │ │ │ ├── nested_loop_same_arg.yaml │ │ │ ├── nested_loop_same_arg_noninlined.yaml │ │ │ ├── nested_loop_with_underscore.py │ │ │ ├── nested_loop_with_underscore.yaml │ │ │ ├── nested_loop_with_underscore_noninlined.yaml │ │ │ ├── nested_recur_custom_task.py │ │ │ ├── nested_recur_custom_task.yaml │ │ │ ├── nested_recur_custom_task_noninlined.yaml │ │ │ ├── nested_recur_custom_task_pipelineloop_cr1.yaml │ │ │ ├── nested_recur_custom_task_pipelineloop_cr2.yaml │ │ │ ├── nested_recur_params.py │ │ │ ├── nested_recur_params.yaml │ │ │ ├── nested_recur_params_noninlined.yaml │ │ │ ├── nested_recur_params_pipelineloop_cr1.yaml │ │ │ ├── nested_recur_params_pipelineloop_cr2.yaml │ │ │ ├── nested_recur_runafter.py │ │ │ ├── nested_recur_runafter.yaml │ │ │ ├── nested_recur_runafter_noninlined.yaml │ │ │ ├── nested_recur_runafter_pipelineloop_cr1.yaml │ │ │ ├── nested_recur_runafter_pipelineloop_cr2.yaml │ │ │ ├── node_selector.log │ │ │ ├── node_selector.py │ │ │ ├── node_selector.yaml │ │ │ ├── node_selector_from_pipeline.py │ │ │ ├── node_selector_from_pipeline.yaml │ │ │ ├── node_selector_from_pipeline_override.py │ │ │ ├── node_selector_from_pipeline_override.yaml │ │ │ ├── old_kfp_volume.py │ │ │ ├── opsgroups.log │ │ │ ├── opsgroups.py │ │ │ ├── opsgroups.yaml │ │ │ ├── parallel_join.log │ │ │ ├── parallel_join.py │ │ │ ├── parallel_join.yaml │ │ │ ├── parallel_join_with_argo_vars.log │ │ │ ├── parallel_join_with_argo_vars.py │ │ │ ├── parallel_join_with_argo_vars.yaml │ │ │ ├── parallelfor_item_argument_resolving.log │ │ │ ├── parallelfor_item_argument_resolving.py │ │ │ ├── parallelfor_item_argument_resolving.yaml │ │ │ ├── parallelfor_item_argument_resolving_noninlined.yaml │ │ │ ├── parallelfor_item_argument_resolving_pipelineloop_cr1.yaml │ │ │ ├── parallelfor_item_argument_resolving_pipelineloop_cr2.yaml │ │ │ ├── parallelfor_item_argument_resolving_pipelineloop_cr3.yaml │ │ │ ├── param_same_prefix.py │ │ │ ├── param_same_prefix.yaml │ │ │ ├── param_same_prefix_noninlined.yaml │ │ │ ├── pipeline_transformers.log │ │ │ ├── pipeline_transformers.py │ │ │ ├── pipeline_transformers.yaml │ │ │ ├── pipelineparam_env.py │ │ │ ├── pipelineparam_env.yaml │ │ │ ├── pipelineparams.log │ │ │ ├── pipelineparams.py │ │ │ ├── pipelineparams.yaml │ │ │ ├── recur_cond.log │ │ │ ├── recur_cond.py │ │ │ ├── recur_cond.yaml │ │ │ ├── recur_cond_noninlined.yaml │ │ │ ├── recur_cond_pipelineloop_cr1.yaml │ │ │ ├── recur_nested.py │ │ │ ├── recur_nested.yaml │ │ │ ├── recur_nested_noninlined.yaml │ │ │ ├── recur_nested_pipelineloop_cr1.yaml │ │ │ ├── recur_nested_pipelineloop_cr2.yaml │ │ │ ├── recur_nested_separate.yaml │ │ │ ├── recursion_while.log │ │ │ ├── recursion_while.py │ │ │ ├── recursion_while.yaml │ │ │ ├── recursion_while_noninlined.yaml │ │ │ ├── recursion_while_pipelineloop_cr1.yaml │ │ │ ├── resourceop_basic.log │ │ │ ├── resourceop_basic.py │ │ │ ├── resourceop_basic.yaml │ │ │ ├── retry.log │ │ │ ├── retry.py │ │ │ ├── retry.yaml │ │ │ ├── separator_from_param.py │ │ │ ├── separator_from_param.yaml │ │ │ ├── separator_from_param_noninlined.yaml │ │ │ ├── separator_from_task.py │ │ │ ├── separator_from_task.yaml │ │ │ ├── separator_from_task_noninlined.yaml │ │ │ ├── sequential.log │ │ │ ├── sequential.py │ │ │ ├── sequential.yaml │ │ │ ├── set_display_name.log │ │ │ ├── set_display_name.py │ │ │ ├── set_display_name.yaml │ │ │ ├── sidecar.log │ │ │ ├── sidecar.py │ │ │ ├── sidecar.yaml │ │ │ ├── tekton_custom_task.log │ │ │ ├── tekton_custom_task.py │ │ │ ├── tekton_custom_task.yaml │ │ │ ├── tekton_loop_dsl.py │ │ │ ├── tekton_loop_dsl.yaml │ │ │ ├── tekton_loop_dsl_noninlined.yaml │ │ │ ├── tekton_pipeline_conf.log │ │ │ ├── tekton_pipeline_conf.py │ │ │ ├── tekton_pipeline_conf.yaml │ │ │ ├── tekton_pipeline_variables.log │ │ │ ├── tekton_pipeline_variables.py │ │ │ ├── tekton_pipeline_variables.yaml │ │ │ ├── test_data │ │ │ ├── consume_2.component.yaml │ │ │ ├── process_2_2.component.yaml │ │ │ └── produce_2.component.yaml │ │ │ ├── timeout.log │ │ │ ├── timeout.py │ │ │ ├── timeout.yaml │ │ │ ├── timeout_config.py │ │ │ ├── timeout_config.yaml │ │ │ ├── tolerations.log │ │ │ ├── tolerations.py │ │ │ ├── tolerations.yaml │ │ │ ├── trusted_ai.py │ │ │ ├── uri_artifacts.py │ │ │ ├── volume.log │ │ │ ├── volume.py │ │ │ ├── volume.yaml │ │ │ ├── volume_op.log │ │ │ ├── volume_op.py │ │ │ ├── volume_op.yaml │ │ │ ├── withitem_multi_nested.log │ │ │ ├── withitem_multi_nested.py │ │ │ ├── withitem_multi_nested.yaml │ │ │ ├── withitem_multi_nested_noninlined.yaml │ │ │ ├── withitem_multi_nested_pipelineloop_cr1.yaml │ │ │ ├── withitem_multi_nested_pipelineloop_cr2.yaml │ │ │ ├── withitem_multi_nested_pipelineloop_cr3.yaml │ │ │ ├── withitem_multi_nested_pipelineloop_cr4.yaml │ │ │ ├── withitem_nested.log │ │ │ ├── withitem_nested.py │ │ │ ├── withitem_nested.yaml │ │ │ ├── withitem_nested_noninlined.yaml │ │ │ ├── withitem_nested_pipelineloop_cr1.yaml │ │ │ ├── withitem_nested_pipelineloop_cr2.yaml │ │ │ ├── withparam_global.log │ │ │ ├── withparam_global.py │ │ │ ├── withparam_global.yaml │ │ │ ├── withparam_global_dict.log │ │ │ ├── withparam_global_dict.py │ │ │ ├── withparam_global_dict.yaml │ │ │ ├── withparam_global_dict_noninlined.yaml │ │ │ ├── withparam_global_dict_pipelineloop_cr1.yaml │ │ │ ├── withparam_global_noninlined.yaml │ │ │ ├── withparam_global_pipelineloop_cr1.yaml │ │ │ ├── withparam_output.log │ │ │ ├── withparam_output.py │ │ │ ├── withparam_output.yaml │ │ │ ├── withparam_output_dict.log │ │ │ ├── withparam_output_dict.py │ │ │ ├── withparam_output_dict.yaml │ │ │ ├── withparam_output_dict_noninlined.yaml │ │ │ ├── withparam_output_dict_pipelineloop_cr1.yaml │ │ │ ├── withparam_output_noninlined.yaml │ │ │ └── withparam_output_pipelineloop_cr1.yaml │ │ ├── config.yaml │ │ ├── e2e_test_config.yaml │ │ ├── local_runner_test.py │ │ ├── perf_test_config.yaml │ │ ├── performance_tests.py │ │ ├── run_e2e_tests.sh │ │ ├── run_tests.sh │ │ ├── test_kfp_samples.sh │ │ ├── test_kfp_samples_report.txt │ │ ├── test_util.py │ │ └── verify_result.py └── sa-and-rbac.md ├── tekton-catalog ├── any-sequencer │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cmd │ │ └── root.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── cache │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── go.mod │ └── pkg │ │ ├── db │ │ ├── db_conn_manager.go │ │ ├── mysql.go │ │ └── sqlite.go │ │ ├── model │ │ └── task_cache.go │ │ ├── task_cache_store.go │ │ └── task_cache_store_test.go ├── kubectl-wrapper │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cmd │ │ └── client │ │ │ └── main.go │ ├── deploy │ │ ├── kubectl-deploy.yaml │ │ ├── rbac.yaml │ │ ├── taskrun-delete.yaml │ │ └── taskrun.yaml │ ├── go.mod │ └── go.sum ├── objectstore │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── go.mod │ └── pkg │ │ └── writer │ │ ├── objectstore_writer.go │ │ └── objectstorelogger.go ├── pipeline-loops │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── VERSION │ ├── cmd │ │ ├── cli │ │ │ └── main.go │ │ ├── controller │ │ │ └── main.go │ │ └── webhook │ │ │ └── main.go │ ├── config │ │ ├── 200-serviceaccount.yaml │ │ ├── 201-clusterrole.yaml │ │ ├── 201-role.yaml │ │ ├── 201-rolebinding.yaml │ │ ├── 202-clusterrolebinding.yaml │ │ ├── 203-object-store-config.yaml │ │ ├── 204-cache-config.yaml │ │ ├── 300-pipelineloop.yaml │ │ ├── 301-breaktask.yaml │ │ ├── 500-controller.yaml │ │ ├── 500-webhook-configuration.yaml │ │ └── 500-webhook.yaml │ ├── examples │ │ ├── break-task-example.yaml │ │ ├── loop-example-basic-retry.yaml │ │ ├── loop-example-basic.yaml │ │ ├── loop-example-basic_taskspec.yaml │ │ ├── loop-example-numeric-param.yaml │ │ ├── loop-example-with-parallelism.yaml │ │ ├── loop-example-workspaces.yaml │ │ ├── pipelinespec-with-nested-loop-embedded.yaml │ │ ├── pipelinespec-with-nested-loop.yaml │ │ ├── pipelinespec-with-run-arrary-value.yaml │ │ ├── pipelinespec-with-run-condition.yaml │ │ ├── pipelinespec-with-run-dict-value.yaml │ │ ├── pipelinespec-with-run-iterate-numeric.yaml │ │ ├── pipelinespec-with-run-string-value.yaml │ │ ├── simplepipelineloop.yaml │ │ └── simplepipelineloop_taskspec.yaml │ ├── go.mod │ ├── hack │ │ ├── boilerplate │ │ │ └── boilerplate.go.txt │ │ ├── tools.go │ │ ├── update-codegen.sh │ │ └── update-deps.sh │ ├── pkg │ │ ├── apis │ │ │ └── pipelineloop │ │ │ │ ├── controller.go │ │ │ │ ├── register.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── pipelineloop_defaults.go │ │ │ │ ├── pipelineloop_types.go │ │ │ │ ├── pipelineloop_validation.go │ │ │ │ ├── pipelineloop_validation_test.go │ │ │ │ ├── register.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 │ │ │ │ │ └── pipelineloop │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_pipelineloop.go │ │ │ │ │ └── fake_pipelineloop_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── pipelineloop.go │ │ │ │ │ └── pipelineloop_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── pipelineloop │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── pipelineloop.go │ │ │ ├── injection │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ └── informers │ │ │ │ │ ├── factory │ │ │ │ │ ├── factory.go │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── pipelineloop │ │ │ │ │ └── v1alpha1 │ │ │ │ │ └── pipelineloop │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ └── pipelineloop.go │ │ │ └── listers │ │ │ │ └── pipelineloop │ │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── pipelineloop.go │ │ ├── controller │ │ │ └── klog.patch │ │ └── reconciler │ │ │ └── pipelinelooprun │ │ │ ├── controller.go │ │ │ ├── pipelineloop_range_test.go │ │ │ ├── pipelinelooprun.go │ │ │ └── pipelinelooprun_test.go │ └── test │ │ └── controller.go ├── tekton-exithandler │ ├── Dockerfile.tekton-exithandler.controller │ ├── Dockerfile.tekton-exithandler.webhook │ ├── VERSION │ ├── cmd │ │ ├── controller │ │ │ └── main.go │ │ └── webhook │ │ │ └── main.go │ ├── examples │ │ └── simple-exithandler.yaml │ ├── go.mod │ ├── go.sum │ └── pkg │ │ ├── apis │ │ └── exithandler │ │ │ ├── register.go │ │ │ └── v1alpha1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── validation.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 │ │ │ │ └── exithandler │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── exithandler.go │ │ │ │ ├── exithandler_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_exithandler.go │ │ │ │ └── fake_exithandler_client.go │ │ │ │ └── generated_expansion.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── exithandler │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── exithandler.go │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ ├── injection │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── informers │ │ │ │ ├── exithandler │ │ │ │ └── v1alpha1 │ │ │ │ │ └── exithandler │ │ │ │ │ ├── exithandler.go │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ ├── exithandler.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ │ └── factory │ │ │ │ ├── factory.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── fake │ │ │ │ └── fake_filtered_factory.go │ │ │ │ └── filtered_factory.go │ │ └── listers │ │ │ └── exithandler │ │ │ └── v1alpha1 │ │ │ ├── exithandler.go │ │ │ └── expansion_generated.go │ │ └── reconciler │ │ └── exithandler │ │ ├── controller.go │ │ └── reconciler.go └── tekton-kfptask │ ├── Dockerfile.tekton-kfptask.controller │ ├── Dockerfile.tekton-kfptask.webhook │ ├── VERSION │ ├── cmd │ ├── controller │ │ └── main.go │ └── webhook │ │ └── main.go │ ├── go.mod │ ├── go.sum │ └── pkg │ ├── apis │ └── kfptask │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ ├── validation.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 │ │ │ └── kfptask │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_kfptask.go │ │ │ └── fake_kfptask_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── kfptask.go │ │ │ └── kfptask_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── kfptask │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── kfptask.go │ ├── injection │ │ ├── client │ │ │ ├── client.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── informers │ │ │ ├── factory │ │ │ ├── factory.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── fake │ │ │ │ └── fake_filtered_factory.go │ │ │ │ └── filtered_factory.go │ │ │ └── kfptask │ │ │ └── v1alpha1 │ │ │ └── kfptask │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── kfptask.go │ │ │ └── kfptask.go │ └── listers │ │ └── kfptask │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── kfptask.go │ ├── common │ ├── common.go │ └── common_test.go │ ├── controller │ └── klog.patch │ └── reconciler │ └── kfptask │ ├── controller.go │ └── reconciler.go └── tools ├── mdtoc.sh ├── python └── verify_doc_links.py └── tools.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/kfp-tekton-unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.github/workflows/kfp-tekton-unittests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.gitignore -------------------------------------------------------------------------------- /.kfp-rebase-version: -------------------------------------------------------------------------------- 1 | 1.8.4 2 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.style.yapf -------------------------------------------------------------------------------- /.tekton/listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/listener.yaml -------------------------------------------------------------------------------- /.tekton/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/pipeline.yaml -------------------------------------------------------------------------------- /.tekton/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/task.yaml -------------------------------------------------------------------------------- /.tekton/tekton-catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/tekton-catalog/README.md -------------------------------------------------------------------------------- /.tekton/tekton-catalog/listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/tekton-catalog/listener.yaml -------------------------------------------------------------------------------- /.tekton/tekton-catalog/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/tekton-catalog/pipeline.yaml -------------------------------------------------------------------------------- /.tekton/tekton-catalog/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/.tekton/tekton-catalog/tasks.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.9.2 2 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Dockerfile.cacheserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Dockerfile.cacheserver -------------------------------------------------------------------------------- /backend/Dockerfile.persistenceagent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Dockerfile.persistenceagent -------------------------------------------------------------------------------- /backend/Dockerfile.scheduledworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Dockerfile.scheduledworkflow -------------------------------------------------------------------------------- /backend/Dockerfile.viewercontroller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Dockerfile.viewercontroller -------------------------------------------------------------------------------- /backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/Makefile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/.gitignore -------------------------------------------------------------------------------- /backend/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/Dockerfile -------------------------------------------------------------------------------- /backend/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/Makefile -------------------------------------------------------------------------------- /backend/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/README.md -------------------------------------------------------------------------------- /backend/api/hack/generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/hack/generator.sh -------------------------------------------------------------------------------- /backend/api/v1/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/auth.proto -------------------------------------------------------------------------------- /backend/api/v1/error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/error.proto -------------------------------------------------------------------------------- /backend/api/v1/experiment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/experiment.proto -------------------------------------------------------------------------------- /backend/api/v1/filter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/filter.proto -------------------------------------------------------------------------------- /backend/api/v1/go_client/auth.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/auth.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/auth.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/auth.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/error.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/error.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/experiment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/experiment.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/experiment.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/experiment.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/filter.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/filter.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/healthz.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/healthz.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/healthz.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/healthz.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/job.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/job.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/job.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/job.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/parameter.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/parameter.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/pipeline.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/pipeline.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/pipeline.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/pipeline.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/pipeline_spec.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/pipeline_spec.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/report.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/report.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/report.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/report.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/run.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/run.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/run.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/run.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/task.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/task.pb.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/task.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/task.pb.gw.go -------------------------------------------------------------------------------- /backend/api/v1/go_client/visualization.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/go_client/visualization.pb.go -------------------------------------------------------------------------------- /backend/api/v1/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/google/api/annotations.proto -------------------------------------------------------------------------------- /backend/api/v1/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/google/api/http.proto -------------------------------------------------------------------------------- /backend/api/v1/healthz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/healthz.proto -------------------------------------------------------------------------------- /backend/api/v1/job.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/job.proto -------------------------------------------------------------------------------- /backend/api/v1/parameter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/parameter.proto -------------------------------------------------------------------------------- /backend/api/v1/pipeline.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/pipeline.proto -------------------------------------------------------------------------------- /backend/api/v1/pipeline_spec.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/pipeline_spec.proto -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/.gitignore -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/.travis.yml -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/LICENSE -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/README.md -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/git_push.sh -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/setup.py -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/v1/python_http_client/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/python_http_client/tox.ini -------------------------------------------------------------------------------- /backend/api/v1/report.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/report.proto -------------------------------------------------------------------------------- /backend/api/v1/resource_reference.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/resource_reference.proto -------------------------------------------------------------------------------- /backend/api/v1/run.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/run.proto -------------------------------------------------------------------------------- /backend/api/v1/swagger/auth.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/auth.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/error.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/error.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/experiment.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/experiment.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/filter.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/filter.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/healthz.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/healthz.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/job.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/job.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/parameter.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/parameter.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/pipeline.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/pipeline.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/report.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/report.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/run.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/run.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/swagger/task.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/swagger/task.swagger.json -------------------------------------------------------------------------------- /backend/api/v1/task.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/task.proto -------------------------------------------------------------------------------- /backend/api/v1/visualization.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/api/v1/visualization.proto -------------------------------------------------------------------------------- /backend/metadata_writer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/metadata_writer/Dockerfile -------------------------------------------------------------------------------- /backend/metadata_writer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/metadata_writer/README.md -------------------------------------------------------------------------------- /backend/metadata_writer/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/metadata_writer/requirements.in -------------------------------------------------------------------------------- /backend/metadata_writer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/metadata_writer/requirements.txt -------------------------------------------------------------------------------- /backend/metadata_writer/src/metadata_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/metadata_writer/src/metadata_writer.py -------------------------------------------------------------------------------- /backend/requirements.in: -------------------------------------------------------------------------------- 1 | tfx==1.4.0 2 | kfp~=1.8 3 | tensorflow-serving-api==2.6.2 4 | -------------------------------------------------------------------------------- /backend/src/agent/persistence/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/agent/persistence/main.go -------------------------------------------------------------------------------- /backend/src/apiserver/archive/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/archive/log.go -------------------------------------------------------------------------------- /backend/src/apiserver/archive/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/archive/log_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/auth/auth.go -------------------------------------------------------------------------------- /backend/src/apiserver/auth/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/auth/util.go -------------------------------------------------------------------------------- /backend/src/apiserver/auth/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/auth/util_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/apiserver/client/minio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/minio.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/pod_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/pod_fake.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/sql.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/sql_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/swf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/swf.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/swf_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/swf_fake.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/tekton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/tekton.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/tekton_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/tekton_fake.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/token_review.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/token_review.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/util.go -------------------------------------------------------------------------------- /backend/src/apiserver/client/workflow_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client/workflow_fake.go -------------------------------------------------------------------------------- /backend/src/apiserver/client_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/client_manager.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/config.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/const.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/filter_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/filter_context.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/paths.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/util.go -------------------------------------------------------------------------------- /backend/src/apiserver/common/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/common/util_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/config/config.json -------------------------------------------------------------------------------- /backend/src/apiserver/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/filter/filter.go -------------------------------------------------------------------------------- /backend/src/apiserver/filter/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/filter/filter_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/interceptor.go -------------------------------------------------------------------------------- /backend/src/apiserver/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/list/list.go -------------------------------------------------------------------------------- /backend/src/apiserver/list/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/list/list_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/main.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/apiserver/model/db_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/db_status.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/experiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/experiment.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/job.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/listable_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/listable_model.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/pipeline.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/pipeline_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/pipeline_spec.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/run.go -------------------------------------------------------------------------------- /backend/src/apiserver/model/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/model/task.go -------------------------------------------------------------------------------- /backend/src/apiserver/resource/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/resource/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/apiserver/resource/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/resource/test_util.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/apiserver/server/api_converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/api_converter.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/auth_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/auth_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/job_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/job_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/report_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/report_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/run_log_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/run_log_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/run_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/run_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/task_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/task_server.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/test/invalid-workflow.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: tekton.dev/v1beta1 2 | invalidKey: something 3 | -------------------------------------------------------------------------------- /backend/src/apiserver/server/test/non_yaml_tarball/non_yaml_file.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/apiserver/server/test/non_yaml_zip/non_yaml_file.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/apiserver/server/test/unknown_format.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/apiserver/server/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/test_util.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/util.go -------------------------------------------------------------------------------- /backend/src/apiserver/server/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/server/util_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/apiserver/storage/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/db.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/db_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/db_fake.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/db_test.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/job_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/job_store.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/minio_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/minio_client.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/object_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/object_store.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/run_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/run_store.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/sql_null_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/sql_null_util.go -------------------------------------------------------------------------------- /backend/src/apiserver/storage/task_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/storage/task_store.go -------------------------------------------------------------------------------- /backend/src/apiserver/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/template/template.go -------------------------------------------------------------------------------- /backend/src/apiserver/template/v2_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/apiserver/template/v2_template.go -------------------------------------------------------------------------------- /backend/src/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/README.md -------------------------------------------------------------------------------- /backend/src/cache/client/kubernetes_core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/kubernetes_core.go -------------------------------------------------------------------------------- /backend/src/cache/client/pod_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/pod_fake.go -------------------------------------------------------------------------------- /backend/src/cache/client/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/sql.go -------------------------------------------------------------------------------- /backend/src/cache/client/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/sql_test.go -------------------------------------------------------------------------------- /backend/src/cache/client/tekton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/tekton.go -------------------------------------------------------------------------------- /backend/src/cache/client/tekton_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client/tekton_fake.go -------------------------------------------------------------------------------- /backend/src/cache/client_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/client_manager.go -------------------------------------------------------------------------------- /backend/src/cache/deployer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/deployer/Dockerfile -------------------------------------------------------------------------------- /backend/src/cache/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/main.go -------------------------------------------------------------------------------- /backend/src/cache/model/execution_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/model/execution_cache.go -------------------------------------------------------------------------------- /backend/src/cache/server/admission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/server/admission.go -------------------------------------------------------------------------------- /backend/src/cache/server/admission_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/server/admission_test.go -------------------------------------------------------------------------------- /backend/src/cache/server/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/server/mutation.go -------------------------------------------------------------------------------- /backend/src/cache/server/mutation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/server/mutation_test.go -------------------------------------------------------------------------------- /backend/src/cache/server/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/server/watcher.go -------------------------------------------------------------------------------- /backend/src/cache/storage/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/storage/db.go -------------------------------------------------------------------------------- /backend/src/cache/storage/db_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/cache/storage/db_fake.go -------------------------------------------------------------------------------- /backend/src/common/client/api_server/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/client/api_server/util.go -------------------------------------------------------------------------------- /backend/src/common/util/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/BUILD.bazel -------------------------------------------------------------------------------- /backend/src/common/util/client_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/client_parameters.go -------------------------------------------------------------------------------- /backend/src/common/util/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/consts.go -------------------------------------------------------------------------------- /backend/src/common/util/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/error.go -------------------------------------------------------------------------------- /backend/src/common/util/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/error_test.go -------------------------------------------------------------------------------- /backend/src/common/util/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/formatter.go -------------------------------------------------------------------------------- /backend/src/common/util/formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/formatter_test.go -------------------------------------------------------------------------------- /backend/src/common/util/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/json.go -------------------------------------------------------------------------------- /backend/src/common/util/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/label.go -------------------------------------------------------------------------------- /backend/src/common/util/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/label_test.go -------------------------------------------------------------------------------- /backend/src/common/util/parameter_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/parameter_formatter.go -------------------------------------------------------------------------------- /backend/src/common/util/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/pointer.go -------------------------------------------------------------------------------- /backend/src/common/util/scheduled_workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/scheduled_workflow.go -------------------------------------------------------------------------------- /backend/src/common/util/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/service.go -------------------------------------------------------------------------------- /backend/src/common/util/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/string.go -------------------------------------------------------------------------------- /backend/src/common/util/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/string_test.go -------------------------------------------------------------------------------- /backend/src/common/util/template_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/template_util.go -------------------------------------------------------------------------------- /backend/src/common/util/template_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/template_util_test.go -------------------------------------------------------------------------------- /backend/src/common/util/tgz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/tgz.go -------------------------------------------------------------------------------- /backend/src/common/util/tgz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/tgz_test.go -------------------------------------------------------------------------------- /backend/src/common/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/time.go -------------------------------------------------------------------------------- /backend/src/common/util/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/uuid.go -------------------------------------------------------------------------------- /backend/src/common/util/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/workflow.go -------------------------------------------------------------------------------- /backend/src/common/util/workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/common/util/workflow_test.go -------------------------------------------------------------------------------- /backend/src/crd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/README.md -------------------------------------------------------------------------------- /backend/src/crd/controller/viewer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/controller/viewer/main.go -------------------------------------------------------------------------------- /backend/src/crd/hack/custom-boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/hack/custom-boilerplate.go.txt -------------------------------------------------------------------------------- /backend/src/crd/hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/hack/update-codegen.sh -------------------------------------------------------------------------------- /backend/src/crd/hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/hack/verify-codegen.sh -------------------------------------------------------------------------------- /backend/src/crd/pkg/apis/viewer/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/pkg/apis/viewer/register.go -------------------------------------------------------------------------------- /backend/src/crd/pkg/apis/viewer/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/pkg/apis/viewer/v1beta1/doc.go -------------------------------------------------------------------------------- /backend/src/crd/pkg/signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/pkg/signals/signal.go -------------------------------------------------------------------------------- /backend/src/crd/pkg/signals/signal_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/pkg/signals/signal_posix.go -------------------------------------------------------------------------------- /backend/src/crd/samples/viewer/mnist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/src/crd/samples/viewer/mnist.yaml -------------------------------------------------------------------------------- /backend/test/initialization/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/initialization/flags.go -------------------------------------------------------------------------------- /backend/test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/README.md -------------------------------------------------------------------------------- /backend/test/integration/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/flags.go -------------------------------------------------------------------------------- /backend/test/integration/job_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/job_api_test.go -------------------------------------------------------------------------------- /backend/test/integration/pipeline_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/pipeline_api_test.go -------------------------------------------------------------------------------- /backend/test/integration/run_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/run_api_test.go -------------------------------------------------------------------------------- /backend/test/integration/run_tests_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/run_tests_locally.sh -------------------------------------------------------------------------------- /backend/test/integration/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/integration/upgrade_test.go -------------------------------------------------------------------------------- /backend/test/resources/hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/resources/hello-world.yaml -------------------------------------------------------------------------------- /backend/test/resources/long-running.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/resources/long-running.yaml -------------------------------------------------------------------------------- /backend/test/resources/loops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/resources/loops.yaml -------------------------------------------------------------------------------- /backend/test/resources/v2-hello-world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/resources/v2-hello-world.json -------------------------------------------------------------------------------- /backend/test/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/test/test_utils.go -------------------------------------------------------------------------------- /backend/third_party_licenses/apiserver.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/third_party_licenses/apiserver.csv -------------------------------------------------------------------------------- /backend/third_party_licenses/cache_server.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/third_party_licenses/cache_server.csv -------------------------------------------------------------------------------- /backend/third_party_licenses/swf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/third_party_licenses/swf.csv -------------------------------------------------------------------------------- /backend/third_party_licenses/viewer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/third_party_licenses/viewer.csv -------------------------------------------------------------------------------- /backend/update_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/backend/update_requirements.sh -------------------------------------------------------------------------------- /components/filesystem/get_file/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/components/filesystem/get_file/component.yaml -------------------------------------------------------------------------------- /components/notification/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/components/notification/component.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config/volume-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/config/volume-support.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/release/feature-stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/release/feature-stages.md -------------------------------------------------------------------------------- /docs/release/versioning-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/release/versioning-policy.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/kfp.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.client.rst -------------------------------------------------------------------------------- /docs/source/kfp.compiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.compiler.rst -------------------------------------------------------------------------------- /docs/source/kfp.components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.components.rst -------------------------------------------------------------------------------- /docs/source/kfp.components.structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.components.structures.rst -------------------------------------------------------------------------------- /docs/source/kfp.containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.containers.rst -------------------------------------------------------------------------------- /docs/source/kfp.dsl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.dsl.rst -------------------------------------------------------------------------------- /docs/source/kfp.dsl.types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.dsl.types.rst -------------------------------------------------------------------------------- /docs/source/kfp.extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.extensions.rst -------------------------------------------------------------------------------- /docs/source/kfp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.rst -------------------------------------------------------------------------------- /docs/source/kfp.server_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/docs/source/kfp.server_api.rst -------------------------------------------------------------------------------- /frontend/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/.eslintrc.yaml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | v12.14.1 2 | -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | src/generated 2 | src/third_party 3 | -------------------------------------------------------------------------------- /frontend/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/.prettierrc.yaml -------------------------------------------------------------------------------- /frontend/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/.storybook/main.js -------------------------------------------------------------------------------- /frontend/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/.storybook/preview.js -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/analyze_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/analyze_bundle.js -------------------------------------------------------------------------------- /frontend/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/craco.config.js -------------------------------------------------------------------------------- /frontend/gen_licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/gen_licenses.js -------------------------------------------------------------------------------- /frontend/global-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/global-setup.js -------------------------------------------------------------------------------- /frontend/mock-backend/eval-output/roc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/eval-output/roc.csv -------------------------------------------------------------------------------- /frontend/mock-backend/eval-output/roc2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/eval-output/roc2.csv -------------------------------------------------------------------------------- /frontend/mock-backend/eval-output/table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/eval-output/table.csv -------------------------------------------------------------------------------- /frontend/mock-backend/fixed-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/fixed-data.ts -------------------------------------------------------------------------------- /frontend/mock-backend/longlog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/longlog.txt -------------------------------------------------------------------------------- /frontend/mock-backend/mock-api-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/mock-api-middleware.ts -------------------------------------------------------------------------------- /frontend/mock-backend/mock-api-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/mock-api-server.ts -------------------------------------------------------------------------------- /frontend/mock-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/package-lock.json -------------------------------------------------------------------------------- /frontend/mock-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/package.json -------------------------------------------------------------------------------- /frontend/mock-backend/proxy-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/proxy-middleware.ts -------------------------------------------------------------------------------- /frontend/mock-backend/shortlog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/shortlog.txt -------------------------------------------------------------------------------- /frontend/mock-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/tsconfig.json -------------------------------------------------------------------------------- /frontend/mock-backend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/mock-backend/tslint.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/public/static/favicon.ico -------------------------------------------------------------------------------- /frontend/scripts/check-format-error-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/check-format-error-info.js -------------------------------------------------------------------------------- /frontend/scripts/gen_grpc_web_protos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/gen_grpc_web_protos.js -------------------------------------------------------------------------------- /frontend/scripts/get-coveralls-repo-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/get-coveralls-repo-token.js -------------------------------------------------------------------------------- /frontend/scripts/pipelinespec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/pipelinespec.sh -------------------------------------------------------------------------------- /frontend/scripts/replace_protos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/replace_protos.js -------------------------------------------------------------------------------- /frontend/scripts/report-coveralls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/report-coveralls.sh -------------------------------------------------------------------------------- /frontend/scripts/start-proxies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/start-proxies.ps1 -------------------------------------------------------------------------------- /frontend/scripts/start-proxy-and-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/start-proxy-and-server.sh -------------------------------------------------------------------------------- /frontend/scripts/start-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/start-proxy.sh -------------------------------------------------------------------------------- /frontend/scripts/sync-backend-sample-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/scripts/sync-backend-sample-config.js -------------------------------------------------------------------------------- /frontend/server/.gitignore: -------------------------------------------------------------------------------- 1 | BUILD_DATE 2 | COMMIT_HASH 3 | TAG_NAME 4 | -------------------------------------------------------------------------------- /frontend/server/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/app.test.ts -------------------------------------------------------------------------------- /frontend/server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/app.ts -------------------------------------------------------------------------------- /frontend/server/aws-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/aws-helper.test.ts -------------------------------------------------------------------------------- /frontend/server/aws-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/aws-helper.ts -------------------------------------------------------------------------------- /frontend/server/configs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/configs.test.ts -------------------------------------------------------------------------------- /frontend/server/configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/configs.ts -------------------------------------------------------------------------------- /frontend/server/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/consts.ts -------------------------------------------------------------------------------- /frontend/server/handlers/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/artifacts.ts -------------------------------------------------------------------------------- /frontend/server/handlers/gke-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/gke-metadata.ts -------------------------------------------------------------------------------- /frontend/server/handlers/healthz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/healthz.ts -------------------------------------------------------------------------------- /frontend/server/handlers/index-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/index-html.ts -------------------------------------------------------------------------------- /frontend/server/handlers/pod-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/pod-info.ts -------------------------------------------------------------------------------- /frontend/server/handlers/pod-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/pod-logs.ts -------------------------------------------------------------------------------- /frontend/server/handlers/tensorboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/tensorboard.ts -------------------------------------------------------------------------------- /frontend/server/handlers/vis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/handlers/vis.ts -------------------------------------------------------------------------------- /frontend/server/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/helpers/auth.ts -------------------------------------------------------------------------------- /frontend/server/helpers/server-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/helpers/server-info.ts -------------------------------------------------------------------------------- /frontend/server/k8s-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/k8s-helper.test.ts -------------------------------------------------------------------------------- /frontend/server/k8s-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/k8s-helper.ts -------------------------------------------------------------------------------- /frontend/server/minio-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/minio-helper.test.ts -------------------------------------------------------------------------------- /frontend/server/minio-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/minio-helper.ts -------------------------------------------------------------------------------- /frontend/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/package-lock.json -------------------------------------------------------------------------------- /frontend/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/package.json -------------------------------------------------------------------------------- /frontend/server/proxy-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/proxy-middleware.ts -------------------------------------------------------------------------------- /frontend/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/server.ts -------------------------------------------------------------------------------- /frontend/server/src/generated/apis/auth/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /frontend/server/src/generated/apis/auth/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/server/src/generated/apis/auth/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/src/generated/apis/auth/api.ts -------------------------------------------------------------------------------- /frontend/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/tsconfig.json -------------------------------------------------------------------------------- /frontend/server/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/tslint.json -------------------------------------------------------------------------------- /frontend/server/untyped-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/untyped-modules.d.ts -------------------------------------------------------------------------------- /frontend/server/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/utils.test.ts -------------------------------------------------------------------------------- /frontend/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/utils.ts -------------------------------------------------------------------------------- /frontend/server/workflow-helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/workflow-helper.test.ts -------------------------------------------------------------------------------- /frontend/server/workflow-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/server/workflow-helper.ts -------------------------------------------------------------------------------- /frontend/src/CSSReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/CSSReset.tsx -------------------------------------------------------------------------------- /frontend/src/Css.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/Css.test.tsx -------------------------------------------------------------------------------- /frontend/src/Css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/Css.tsx -------------------------------------------------------------------------------- /frontend/src/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/TestUtils.ts -------------------------------------------------------------------------------- /frontend/src/TestWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/TestWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/__mocks__/typestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/__mocks__/typestyle.js -------------------------------------------------------------------------------- /frontend/src/__serializers__/mock-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/__serializers__/mock-function.js -------------------------------------------------------------------------------- /frontend/src/apis/experiment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/experiment/.gitignore -------------------------------------------------------------------------------- /frontend/src/apis/experiment/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/experiment/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/experiment/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/experiment/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/experiment/configuration.ts -------------------------------------------------------------------------------- /frontend/src/apis/experiment/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/experiment/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/experiment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/experiment/index.ts -------------------------------------------------------------------------------- /frontend/src/apis/filter/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /frontend/src/apis/filter/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/filter/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/filter/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/filter/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/filter/configuration.ts -------------------------------------------------------------------------------- /frontend/src/apis/filter/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/filter/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/filter/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/filter/git_push.sh -------------------------------------------------------------------------------- /frontend/src/apis/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/filter/index.ts -------------------------------------------------------------------------------- /frontend/src/apis/job/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/.gitignore -------------------------------------------------------------------------------- /frontend/src/apis/job/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/.swagger-codegen-ignore -------------------------------------------------------------------------------- /frontend/src/apis/job/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/job/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/job/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/configuration.ts -------------------------------------------------------------------------------- /frontend/src/apis/job/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/job/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/job/index.ts -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/pipeline/.gitignore -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/pipeline/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/pipeline/configuration.ts -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/pipeline/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/pipeline/index.ts -------------------------------------------------------------------------------- /frontend/src/apis/run/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/.gitignore -------------------------------------------------------------------------------- /frontend/src/apis/run/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/.swagger-codegen-ignore -------------------------------------------------------------------------------- /frontend/src/apis/run/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/run/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/run/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/configuration.ts -------------------------------------------------------------------------------- /frontend/src/apis/run/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/run/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/run/index.ts -------------------------------------------------------------------------------- /frontend/src/apis/visualization/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | -------------------------------------------------------------------------------- /frontend/src/apis/visualization/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.29 -------------------------------------------------------------------------------- /frontend/src/apis/visualization/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/visualization/api.ts -------------------------------------------------------------------------------- /frontend/src/apis/visualization/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/visualization/custom.d.ts -------------------------------------------------------------------------------- /frontend/src/apis/visualization/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/visualization/git_push.sh -------------------------------------------------------------------------------- /frontend/src/apis/visualization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/apis/visualization/index.ts -------------------------------------------------------------------------------- /frontend/src/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/assets.d.ts -------------------------------------------------------------------------------- /frontend/src/atoms/BusyButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/BusyButton.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/BusyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/BusyButton.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/CardTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/CardTooltip.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/ErrorBoundary.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/ExternalLink.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/HelpButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/HelpButton.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Hr.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Hr.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Hr.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/IconWithTooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/IconWithTooltip.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/IconWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/IconWithTooltip.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Input.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Input.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/MD2Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/MD2Tabs.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/MD2Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/MD2Tabs.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Separator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Separator.test.tsx -------------------------------------------------------------------------------- /frontend/src/atoms/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/atoms/Separator.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArtifactLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/ArtifactLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArtifactPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/ArtifactPreview.tsx -------------------------------------------------------------------------------- /frontend/src/components/Banner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Banner.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Banner.tsx -------------------------------------------------------------------------------- /frontend/src/components/CollapseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/CollapseButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/CompareTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/CompareTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/CustomTable.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/CustomTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/CustomTableRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/Description.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Description.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Description.tsx -------------------------------------------------------------------------------- /frontend/src/components/DetailsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/DetailsTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/Editor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Editor.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Editor.tsx -------------------------------------------------------------------------------- /frontend/src/components/ExperimentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/ExperimentList.tsx -------------------------------------------------------------------------------- /frontend/src/components/Graph.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Graph.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Graph.tsx -------------------------------------------------------------------------------- /frontend/src/components/LogViewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/LogViewer.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/LogViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/LogViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Metric.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Metric.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Metric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Metric.tsx -------------------------------------------------------------------------------- /frontend/src/components/NewRunParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/NewRunParameters.tsx -------------------------------------------------------------------------------- /frontend/src/components/PlotCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/PlotCard.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/PlotCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/PlotCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/PodYaml.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/PodYaml.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/PodYaml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/PodYaml.tsx -------------------------------------------------------------------------------- /frontend/src/components/ResourceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/ResourceInfo.tsx -------------------------------------------------------------------------------- /frontend/src/components/Router.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Router.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Router.tsx -------------------------------------------------------------------------------- /frontend/src/components/SideNav.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/SideNav.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/SideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/SideNav.tsx -------------------------------------------------------------------------------- /frontend/src/components/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/SidePanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/Toolbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Toolbar.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Toolbar.tsx -------------------------------------------------------------------------------- /frontend/src/components/Trigger.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Trigger.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/Trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/Trigger.tsx -------------------------------------------------------------------------------- /frontend/src/components/graph/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/graph/Constants.ts -------------------------------------------------------------------------------- /frontend/src/components/graph/SubDagNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/graph/SubDagNode.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs/MetricsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/tabs/MetricsTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/viewers/ROCCurve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/viewers/ROCCurve.tsx -------------------------------------------------------------------------------- /frontend/src/components/viewers/Viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/components/viewers/Viewer.ts -------------------------------------------------------------------------------- /frontend/src/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/features.ts -------------------------------------------------------------------------------- /frontend/src/icons/StopCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/StopCircle.tsx -------------------------------------------------------------------------------- /frontend/src/icons/experiments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/experiments.tsx -------------------------------------------------------------------------------- /frontend/src/icons/kubeflowLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/kubeflowLogo.tsx -------------------------------------------------------------------------------- /frontend/src/icons/pipelines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/pipelines.tsx -------------------------------------------------------------------------------- /frontend/src/icons/statusCached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/statusCached.tsx -------------------------------------------------------------------------------- /frontend/src/icons/statusRunning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/statusRunning.tsx -------------------------------------------------------------------------------- /frontend/src/icons/statusTerminated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/icons/statusTerminated.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/lib/Apis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Apis.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/Apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Apis.ts -------------------------------------------------------------------------------- /frontend/src/lib/AwsHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/AwsHelper.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/AwsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/AwsHelper.ts -------------------------------------------------------------------------------- /frontend/src/lib/Buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Buttons.ts -------------------------------------------------------------------------------- /frontend/src/lib/CompareUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/CompareUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/CompareUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/CompareUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Constants.ts -------------------------------------------------------------------------------- /frontend/src/lib/Flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Flags.ts -------------------------------------------------------------------------------- /frontend/src/lib/GkeMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/GkeMetadata.tsx -------------------------------------------------------------------------------- /frontend/src/lib/KubeflowClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/KubeflowClient.tsx -------------------------------------------------------------------------------- /frontend/src/lib/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/LocalStorage.ts -------------------------------------------------------------------------------- /frontend/src/lib/MetricUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/MetricUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/MetricUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/MetricUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/OutputArtifactLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/OutputArtifactLoader.ts -------------------------------------------------------------------------------- /frontend/src/lib/ParserUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/ParserUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/RunUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/RunUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/StaticGraphParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/StaticGraphParser.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/StaticGraphParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/StaticGraphParser.ts -------------------------------------------------------------------------------- /frontend/src/lib/StatusUtils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/StatusUtils.test.tsx -------------------------------------------------------------------------------- /frontend/src/lib/StatusUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/StatusUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/TriggerUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/TriggerUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/TriggerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/TriggerUtils.ts -------------------------------------------------------------------------------- /frontend/src/lib/URLParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/URLParser.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/URLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/URLParser.ts -------------------------------------------------------------------------------- /frontend/src/lib/Utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Utils.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/Utils.tsx -------------------------------------------------------------------------------- /frontend/src/lib/WorkflowParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/WorkflowParser.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/WorkflowParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/WorkflowParser.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/DynamicFlow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/DynamicFlow.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/DynamicFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/DynamicFlow.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/StaticFlow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/StaticFlow.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/StaticFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/StaticFlow.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/WorkflowUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/WorkflowUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/lib/v2/WorkflowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/lib/v2/WorkflowUtils.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/Api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Api.test.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Api.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/ControlledEdgeCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/ControlledEdgeCanvas.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/Css.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Css.test.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/Css.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Css.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/EdgeCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/EdgeCanvas.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/EdgeLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/EdgeLine.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineChart.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineChart.d.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageActionBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageActionBar.test.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageActionBar.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageApi.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageCard.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageCardColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageCardColumn.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageCardRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageCardRow.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageCss.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageTypes.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/LineageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/LineageView.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/MlmdUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/MlmdUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/MlmdUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/MlmdUtils.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/TestUtils.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/Utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Utils.test.ts -------------------------------------------------------------------------------- /frontend/src/mlmd/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/Utils.tsx -------------------------------------------------------------------------------- /frontend/src/mlmd/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/mlmd/library.ts -------------------------------------------------------------------------------- /frontend/src/pages/404.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/404.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/404.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AllRecurringRunsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/AllRecurringRunsList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AllRunsAndArchive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/AllRunsAndArchive.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AllRunsList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/AllRunsList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/AllRunsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/AllRunsList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArchivedExperiments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArchivedExperiments.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArchivedRuns.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArchivedRuns.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArchivedRuns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArchivedRuns.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArtifactDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArtifactDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArtifactList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArtifactList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ArtifactList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ArtifactList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Compare.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/Compare.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Compare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/Compare.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ExecutionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ExecutionDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ExecutionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ExecutionList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ExperimentDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ExperimentDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ExperimentList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ExperimentList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ExperimentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ExperimentList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/FrontendFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/FrontendFeatures.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GettingStarted.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/GettingStarted.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/GettingStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/GettingStarted.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NewExperiment.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/NewExperiment.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NewExperiment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/NewExperiment.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NewPipelineVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/NewPipelineVersion.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NewRun.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/NewRun.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/NewRun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/NewRun.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/Page.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineDetails.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineDetailsV1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineDetailsV1.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineDetailsV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineDetailsV2.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/PipelineVersionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/PipelineVersionList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RecurringRunDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RecurringRunDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RecurringRunList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RecurringRunList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RecurringRunList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RecurringRunList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RecurringRunsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RecurringRunsManager.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ResourceSelector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ResourceSelector.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/ResourceSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/ResourceSelector.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunDetails.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunDetails.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunDetailsRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunDetailsRouter.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunDetailsV2.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunDetailsV2.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunDetailsV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunDetailsV2.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunList.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunListsRouter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunListsRouter.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/RunListsRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/RunListsRouter.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Status.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/Status.test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/Status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/Status.tsx -------------------------------------------------------------------------------- /frontend/src/pages/v2/DagCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/pages/v2/DagCanvas.tsx -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/react-app-env.d.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Button.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Button.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Header.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Header.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Page.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Page.stories.tsx -------------------------------------------------------------------------------- /frontend/src/stories/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/Page.tsx -------------------------------------------------------------------------------- /frontend/src/stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/colors.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/comments.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/direction.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/flow.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/plugin.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/repo.svg -------------------------------------------------------------------------------- /frontend/src/stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /frontend/src/stories/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/button.css -------------------------------------------------------------------------------- /frontend/src/stories/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/header.css -------------------------------------------------------------------------------- /frontend/src/stories/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/stories/page.css -------------------------------------------------------------------------------- /frontend/src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/tailwind.css -------------------------------------------------------------------------------- /frontend/src/third_party/mlmd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/third_party/mlmd/index.ts -------------------------------------------------------------------------------- /frontend/src/third_party/mlmd/kubernetes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/src/third_party/mlmd/kubernetes.ts -------------------------------------------------------------------------------- /frontend/swagger-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "modelPropertyNaming" : "original" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/third_party/argo-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/third_party/argo-ui/LICENSE -------------------------------------------------------------------------------- /frontend/third_party/jest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/third_party/jest/LICENSE -------------------------------------------------------------------------------- /frontend/third_party/mamacro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/third_party/mamacro/LICENSE -------------------------------------------------------------------------------- /frontend/third_party/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/third_party/once/LICENSE -------------------------------------------------------------------------------- /frontend/third_party/watchpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/third_party/watchpack/LICENSE -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/tsconfig.prod.json -------------------------------------------------------------------------------- /frontend/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/frontend/tsconfig.test.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/go.sum -------------------------------------------------------------------------------- /guides/Custom-run-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/Custom-run-migration-guide.md -------------------------------------------------------------------------------- /guides/TEKTON_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/TEKTON_CHANGELOG.md -------------------------------------------------------------------------------- /guides/advanced_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/advanced_user_guide.md -------------------------------------------------------------------------------- /guides/developer_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/developer_guide.md -------------------------------------------------------------------------------- /guides/kfp-admin-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-admin-guide.md -------------------------------------------------------------------------------- /guides/kfp-rebase-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-rebase-guide.md -------------------------------------------------------------------------------- /guides/kfp-user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-user-guide/README.md -------------------------------------------------------------------------------- /guides/kfp-user-guide/echo_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-user-guide/echo_pipeline.py -------------------------------------------------------------------------------- /guides/kfp-user-guide/images/run-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-user-guide/images/run-page.png -------------------------------------------------------------------------------- /guides/kfp-user-guide/images/upload-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp-user-guide/images/upload-page.png -------------------------------------------------------------------------------- /guides/kfp_tekton_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/kfp_tekton_install.md -------------------------------------------------------------------------------- /guides/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/guides/release.md -------------------------------------------------------------------------------- /hack/cherry-pick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/hack/cherry-pick.sh -------------------------------------------------------------------------------- /hack/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/hack/format.sh -------------------------------------------------------------------------------- /hack/install-go-licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/hack/install-go-licenses.sh -------------------------------------------------------------------------------- /hack/update-all-requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/hack/update-all-requirements.sh -------------------------------------------------------------------------------- /hack/update-requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/hack/update-requirements.sh -------------------------------------------------------------------------------- /images/condition-dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/images/condition-dependency.png -------------------------------------------------------------------------------- /images/kfp-tekton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/images/kfp-tekton.png -------------------------------------------------------------------------------- /images/openshift-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/images/openshift-pipelines.png -------------------------------------------------------------------------------- /install/v0.7.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v0.7.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v0.8.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v0.8.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v0.9.0-rc0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v0.9.0-rc0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v0.9.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v0.9.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.0.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.0.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.1.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.1.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.1.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.1.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.2.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.2.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.2.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.2.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.3.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.3.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.3.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.3.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.4.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.4.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.4.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.4.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.5.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.5.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.5.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.5.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.2/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.2/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.3/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.3/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.4/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.4/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.5/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.5/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.6.6/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.6.6/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.7.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.7.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.7.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.7.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.8.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.8.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.8.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.8.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.9.0/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.9.0/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.9.1/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.9.1/kfp-tekton.yaml -------------------------------------------------------------------------------- /install/v1.9.2/kfp-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/install/v1.9.2/kfp-tekton.yaml -------------------------------------------------------------------------------- /manifests/gcp_marketplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/README.md -------------------------------------------------------------------------------- /manifests/gcp_marketplace/chart/kubeflow-pipelines/Chart.yaml: -------------------------------------------------------------------------------- 1 | name: kubeflow-pipelines 2 | version: 1.0.0 3 | -------------------------------------------------------------------------------- /manifests/gcp_marketplace/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/cli.md -------------------------------------------------------------------------------- /manifests/gcp_marketplace/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/guide.md -------------------------------------------------------------------------------- /manifests/gcp_marketplace/hack/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/hack/format.sh -------------------------------------------------------------------------------- /manifests/gcp_marketplace/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/hack/release.sh -------------------------------------------------------------------------------- /manifests/gcp_marketplace/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/schema.yaml -------------------------------------------------------------------------------- /manifests/gcp_marketplace/test/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/test/presubmit.sh -------------------------------------------------------------------------------- /manifests/gcp_marketplace/test/snapshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/gcp_marketplace/test/snapshots.sh -------------------------------------------------------------------------------- /manifests/kustomize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/Makefile -------------------------------------------------------------------------------- /manifests/kustomize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/README.md -------------------------------------------------------------------------------- /manifests/kustomize/base/cache/cache-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/base/cache/cache-sa.yaml -------------------------------------------------------------------------------- /manifests/kustomize/base/installs/multi-user/pipelines-profile-controller/params.env: -------------------------------------------------------------------------------- 1 | DISABLE_ISTIO_SIDECAR=false 2 | -------------------------------------------------------------------------------- /manifests/kustomize/base/pipeline/ml-pipeline-ui-sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: ml-pipeline-ui -------------------------------------------------------------------------------- /manifests/kustomize/env/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/aws/README.md -------------------------------------------------------------------------------- /manifests/kustomize/env/aws/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/aws/config -------------------------------------------------------------------------------- /manifests/kustomize/env/aws/params.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/aws/params.env -------------------------------------------------------------------------------- /manifests/kustomize/env/aws/secret.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/aws/secret.env -------------------------------------------------------------------------------- /manifests/kustomize/env/azure/params.env: -------------------------------------------------------------------------------- 1 | dbHost=[SQLSERVERNAME].mysql.database.azure.com 2 | -------------------------------------------------------------------------------- /manifests/kustomize/env/azure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/azure/readme.md -------------------------------------------------------------------------------- /manifests/kustomize/env/gcp/params.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/env/gcp/params.env -------------------------------------------------------------------------------- /manifests/kustomize/env/kfp-template/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kubeflow 5 | -------------------------------------------------------------------------------- /manifests/kustomize/hack/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/hack/format.sh -------------------------------------------------------------------------------- /manifests/kustomize/hack/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/hack/presubmit.sh -------------------------------------------------------------------------------- /manifests/kustomize/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/hack/release.sh -------------------------------------------------------------------------------- /manifests/kustomize/sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/sample/README.md -------------------------------------------------------------------------------- /manifests/kustomize/sample/params-db-secret.env: -------------------------------------------------------------------------------- 1 | username=root 2 | password= 3 | -------------------------------------------------------------------------------- /manifests/kustomize/sample/params.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/sample/params.env -------------------------------------------------------------------------------- /manifests/kustomize/third-party/argo/.krmignore: -------------------------------------------------------------------------------- 1 | upstream 2 | -------------------------------------------------------------------------------- /manifests/kustomize/third-party/argo/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/third-party/argo/Kptfile -------------------------------------------------------------------------------- /manifests/kustomize/third-party/argo/base/params.yaml: -------------------------------------------------------------------------------- 1 | varReference: 2 | - path: data/artifactRepository 3 | kind: ConfigMap 4 | -------------------------------------------------------------------------------- /manifests/kustomize/third-party/grafana/grafana-sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: grafana 5 | -------------------------------------------------------------------------------- /manifests/kustomize/third-party/prometheus/prometheus-sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: prometheus 5 | -------------------------------------------------------------------------------- /manifests/kustomize/wi-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/manifests/kustomize/wi-utils.sh -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/big_data_passing/sum_pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/big_data_passing/sum_pipeline.yaml -------------------------------------------------------------------------------- /samples/data-passing-conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/data-passing-conformance/README.md -------------------------------------------------------------------------------- /samples/e2e-mnist/9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/e2e-mnist/9.bmp -------------------------------------------------------------------------------- /samples/e2e-mnist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/e2e-mnist/README.md -------------------------------------------------------------------------------- /samples/e2e-mnist/e2e-mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/e2e-mnist/e2e-mnist.py -------------------------------------------------------------------------------- /samples/e2e-mnist/mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/e2e-mnist/mnist.ipynb -------------------------------------------------------------------------------- /samples/exit-handler-email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/exit-handler-email/README.md -------------------------------------------------------------------------------- /samples/exit-handler-email/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/exit-handler-email/pvc.yaml -------------------------------------------------------------------------------- /samples/exit-handler-email/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/exit-handler-email/secret.yaml -------------------------------------------------------------------------------- /samples/exit-handler-email/send-email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/exit-handler-email/send-email.py -------------------------------------------------------------------------------- /samples/flip-coin-custom-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/flip-coin-custom-task/README.md -------------------------------------------------------------------------------- /samples/flip-coin-custom-task/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/flip-coin-custom-task/condition.py -------------------------------------------------------------------------------- /samples/flip-coin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/flip-coin/README.md -------------------------------------------------------------------------------- /samples/flip-coin/condition-with-taskref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/flip-coin/condition-with-taskref.py -------------------------------------------------------------------------------- /samples/flip-coin/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/flip-coin/condition.py -------------------------------------------------------------------------------- /samples/huggingface-prompt-tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/huggingface-prompt-tuning/README.md -------------------------------------------------------------------------------- /samples/k8s-downstream-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/k8s-downstream-api/README.md -------------------------------------------------------------------------------- /samples/katib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/katib/README.md -------------------------------------------------------------------------------- /samples/katib/early-stopping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/katib/early-stopping.ipynb -------------------------------------------------------------------------------- /samples/kfp-tfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/kfp-tfx/README.md -------------------------------------------------------------------------------- /samples/kfp-tfx/images/tfx-taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/kfp-tfx/images/tfx-taxi.png -------------------------------------------------------------------------------- /samples/kfp-tfx/tfx-taxi-on-prem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/kfp-tfx/tfx-taxi-on-prem/README.md -------------------------------------------------------------------------------- /samples/kfp-tfx/tfx-taxi-on-prem/kfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/kfp-tfx/tfx-taxi-on-prem/kfs.py -------------------------------------------------------------------------------- /samples/kfp-tfx/tfx-taxi-on-prem/pvc/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/kfp-tfx/tfx-taxi-on-prem/pvc/pv.yaml -------------------------------------------------------------------------------- /samples/lightweight-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/lightweight-component/README.md -------------------------------------------------------------------------------- /samples/nested-loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/nested-loops/README.md -------------------------------------------------------------------------------- /samples/nested-loops/withitem_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/nested-loops/withitem_nested.py -------------------------------------------------------------------------------- /samples/nested-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/nested-pipeline/README.md -------------------------------------------------------------------------------- /samples/nested-pipeline/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/nested-pipeline/compose.py -------------------------------------------------------------------------------- /samples/peft-modelmesh-pipeline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/peft-modelmesh-pipeline/Dockerfile -------------------------------------------------------------------------------- /samples/peft-modelmesh-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/peft-modelmesh-pipeline/README.md -------------------------------------------------------------------------------- /samples/peft-modelmesh-pipeline/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/peft-modelmesh-pipeline/input.json -------------------------------------------------------------------------------- /samples/tekton-custom-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/tekton-custom-task/README.md -------------------------------------------------------------------------------- /samples/trusted-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/trusted-ai/README.md -------------------------------------------------------------------------------- /samples/trusted-ai/trusted-ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/samples/trusted-ai/trusted-ai.py -------------------------------------------------------------------------------- /scripts/check_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/check_diff.sh -------------------------------------------------------------------------------- /scripts/deploy/github/build-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/github/build-images.sh -------------------------------------------------------------------------------- /scripts/deploy/github/deploy-kfp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/github/deploy-kfp.sh -------------------------------------------------------------------------------- /scripts/deploy/github/e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/github/e2e-test.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/Dockerfile -------------------------------------------------------------------------------- /scripts/deploy/iks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/README.md -------------------------------------------------------------------------------- /scripts/deploy/iks/build-image-dind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/build-image-dind.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/build-image.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/deploy-dind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/deploy-dind.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/deploy-ibm-vpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/deploy-ibm-vpc.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/deploy-kfp-ibm-vpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/deploy-kfp-ibm-vpc.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/deploy-kfp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/deploy-kfp.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/deploy-tekton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/deploy-tekton.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/e2e-test.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/expect-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/expect-cache.json -------------------------------------------------------------------------------- /scripts/deploy/iks/helper-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/helper-functions.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/publish-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/publish-image.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/run-test.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/tekton-catalog/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/tekton-catalog/cleanup.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test-cache.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test-condition-depend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test-condition-depend.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test-flip-coin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test-flip-coin.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test-many-edges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test-many-edges.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test-trusted-ai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test-trusted-ai.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/test/many-edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/test/many-edges.py -------------------------------------------------------------------------------- /scripts/deploy/iks/undeploy-kfp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/undeploy-kfp.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/undeploy-tekton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/undeploy-tekton.sh -------------------------------------------------------------------------------- /scripts/deploy/iks/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/scripts/deploy/iks/workflow.png -------------------------------------------------------------------------------- /sdk/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/FEATURES.md -------------------------------------------------------------------------------- /sdk/K8S_CLIENT_HELPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/K8S_CLIENT_HELPER.md -------------------------------------------------------------------------------- /sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/README.md -------------------------------------------------------------------------------- /sdk/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/README.md -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/__init__.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/_client.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/cli/__init__.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/cli/cli.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/compiler/__init__.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/compiler/compiler.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/compiler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/compiler/main.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/compiler/yaml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/compiler/yaml_utils.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/k8s_client_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/k8s_client_helper.py -------------------------------------------------------------------------------- /sdk/python/kfp_tekton/tekton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/kfp_tekton/tekton.py -------------------------------------------------------------------------------- /sdk/python/requirements-test.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest 3 | -------------------------------------------------------------------------------- /sdk/python/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/requirements.in -------------------------------------------------------------------------------- /sdk/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/requirements.txt -------------------------------------------------------------------------------- /sdk/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/setup.py -------------------------------------------------------------------------------- /sdk/python/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/README.md -------------------------------------------------------------------------------- /sdk/python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/__init__.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/__init__.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/compiler_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/compiler_tests.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/main.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/affinity.log: -------------------------------------------------------------------------------- 1 | [echo : main] Got scheduled 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/cache.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/cache.log -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/cache.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/conditions_and_loops.log: -------------------------------------------------------------------------------- 1 | [produce-numbers : main] [185, 931, 991] 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/input_artifact_raw_value.txt: -------------------------------------------------------------------------------- 1 | Text from a file with hard-coded artifact value 2 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/katib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/katib.log -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/katib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/katib.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/long_pipeline_name.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/loop_over_lightweight_output.log: -------------------------------------------------------------------------------- 1 | [produce-list : main] [1, 2, 3] 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/loop_static.log: -------------------------------------------------------------------------------- 1 | [static-loop-out-op : main] 10 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/node_selector.log: -------------------------------------------------------------------------------- 1 | [echo : main] Found my node 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/recur_cond.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/retry.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/retry.log -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/retry.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/set_display_name.log: -------------------------------------------------------------------------------- 1 | [echo : main] Got scheduled 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/tekton_pipeline_conf.log: -------------------------------------------------------------------------------- 1 | [echo : main] Got scheduled 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/timeout.log: -------------------------------------------------------------------------------- 1 | [random-failure-2 : main] 0 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/compiler/testdata/volume.py -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/withitem_multi_nested.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/python/tests/compiler/testdata/withitem_nested.log: -------------------------------------------------------------------------------- 1 | [my-out-cop : main] 10 2 | 3 | -------------------------------------------------------------------------------- /sdk/python/tests/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/config.yaml -------------------------------------------------------------------------------- /sdk/python/tests/e2e_test_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/e2e_test_config.yaml -------------------------------------------------------------------------------- /sdk/python/tests/local_runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/local_runner_test.py -------------------------------------------------------------------------------- /sdk/python/tests/perf_test_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/perf_test_config.yaml -------------------------------------------------------------------------------- /sdk/python/tests/performance_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/performance_tests.py -------------------------------------------------------------------------------- /sdk/python/tests/run_e2e_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/run_e2e_tests.sh -------------------------------------------------------------------------------- /sdk/python/tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/run_tests.sh -------------------------------------------------------------------------------- /sdk/python/tests/test_kfp_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/test_kfp_samples.sh -------------------------------------------------------------------------------- /sdk/python/tests/test_kfp_samples_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/test_kfp_samples_report.txt -------------------------------------------------------------------------------- /sdk/python/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/test_util.py -------------------------------------------------------------------------------- /sdk/python/tests/verify_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/python/tests/verify_result.py -------------------------------------------------------------------------------- /sdk/sa-and-rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/sdk/sa-and-rbac.md -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/.gitignore: -------------------------------------------------------------------------------- 1 | _output -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/Dockerfile -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/Makefile -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/README.md -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/cmd/root.go -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/go.mod -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/go.sum -------------------------------------------------------------------------------- /tekton-catalog/any-sequencer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/any-sequencer/main.go -------------------------------------------------------------------------------- /tekton-catalog/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/LICENSE -------------------------------------------------------------------------------- /tekton-catalog/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/README.md -------------------------------------------------------------------------------- /tekton-catalog/cache/VERSION: -------------------------------------------------------------------------------- 1 | 1.6.5 2 | -------------------------------------------------------------------------------- /tekton-catalog/cache/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/go.mod -------------------------------------------------------------------------------- /tekton-catalog/cache/pkg/db/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/pkg/db/mysql.go -------------------------------------------------------------------------------- /tekton-catalog/cache/pkg/db/sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/pkg/db/sqlite.go -------------------------------------------------------------------------------- /tekton-catalog/cache/pkg/model/task_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/pkg/model/task_cache.go -------------------------------------------------------------------------------- /tekton-catalog/cache/pkg/task_cache_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/cache/pkg/task_cache_store.go -------------------------------------------------------------------------------- /tekton-catalog/kubectl-wrapper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/kubectl-wrapper/Dockerfile -------------------------------------------------------------------------------- /tekton-catalog/kubectl-wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/kubectl-wrapper/Makefile -------------------------------------------------------------------------------- /tekton-catalog/kubectl-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/kubectl-wrapper/README.md -------------------------------------------------------------------------------- /tekton-catalog/kubectl-wrapper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/kubectl-wrapper/go.mod -------------------------------------------------------------------------------- /tekton-catalog/kubectl-wrapper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/kubectl-wrapper/go.sum -------------------------------------------------------------------------------- /tekton-catalog/objectstore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/objectstore/LICENSE -------------------------------------------------------------------------------- /tekton-catalog/objectstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/objectstore/README.md -------------------------------------------------------------------------------- /tekton-catalog/objectstore/VERSION: -------------------------------------------------------------------------------- 1 | 1.6.5 2 | -------------------------------------------------------------------------------- /tekton-catalog/objectstore/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/objectstore/go.mod -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/.gitignore: -------------------------------------------------------------------------------- 1 | .ko.yaml 2 | 3 | -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/Dockerfile -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/LICENSE -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/Makefile -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/README.md -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/VERSION: -------------------------------------------------------------------------------- 1 | 1.9.2 2 | -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/go.mod -------------------------------------------------------------------------------- /tekton-catalog/pipeline-loops/hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/pipeline-loops/hack/tools.go -------------------------------------------------------------------------------- /tekton-catalog/tekton-exithandler/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /tekton-catalog/tekton-exithandler/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/tekton-exithandler/go.mod -------------------------------------------------------------------------------- /tekton-catalog/tekton-exithandler/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/tekton-exithandler/go.sum -------------------------------------------------------------------------------- /tekton-catalog/tekton-kfptask/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /tekton-catalog/tekton-kfptask/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/tekton-kfptask/go.mod -------------------------------------------------------------------------------- /tekton-catalog/tekton-kfptask/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tekton-catalog/tekton-kfptask/go.sum -------------------------------------------------------------------------------- /tools/mdtoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tools/mdtoc.sh -------------------------------------------------------------------------------- /tools/python/verify_doc_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tools/python/verify_doc_links.py -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubeflow/kfp-tekton/HEAD/tools/tools.go --------------------------------------------------------------------------------