├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── build │ │ └── action.yaml │ └── kind │ │ └── action.yml ├── build │ ├── Dockerfile │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ └── requirements.txt ├── resources │ ├── argo-lite │ │ └── kustomization.yaml │ ├── crds │ │ ├── buildconfig-crd.yaml │ │ ├── deploymentconfig-crd.yaml │ │ ├── imagestream-crd.yaml │ │ └── servicemonitor-crd.yaml │ ├── datasciencecluster │ │ └── datasciencecluster.yaml │ ├── dspa-lite │ │ └── dspa.yaml │ ├── external-pre-reqs │ │ ├── kustomization.yaml │ │ ├── mariadb-secret.yaml │ │ ├── minio-secret.yaml │ │ └── root-ca-configmap.yaml │ ├── kind │ │ └── kind.yaml │ ├── mariadb │ │ ├── certs-secret.yaml │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ ├── self-signed-ca-configmap.yaml │ │ ├── service.yaml │ │ └── tls-config-configmap.yaml │ ├── minio │ │ ├── cabundle-configmap.yaml │ │ ├── certs-secret.yaml │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ ├── olm │ │ ├── catalogsource.yaml │ │ ├── operatorgroup.yaml │ │ └── subscription.yaml │ ├── pypiserver │ │ └── base │ │ │ ├── kustomization.yaml │ │ │ ├── nginx-certs.yaml │ │ │ ├── nginx-configmap.yaml │ │ │ ├── nginx-service.yaml │ │ │ ├── nginx-tls-config.yaml │ │ │ ├── pvc.yaml │ │ │ ├── pypiserver.yaml │ │ │ └── service.yaml │ └── webhook │ │ ├── cert-issuer.yaml │ │ ├── certificate.yaml │ │ └── kustomization.yaml ├── scripts │ ├── check_integration_test_label.py │ ├── python_package_upload │ │ ├── Dockerfile │ │ ├── package_download.sh │ │ └── package_upload_run.sh │ ├── release_create │ │ ├── create_tag_release.sh │ │ ├── notify.sh │ │ ├── validate_pr.sh │ │ └── vars.sh │ ├── release_prep │ │ ├── create_branches.sh │ │ ├── generate_pr.sh │ │ ├── prereqs.sh │ │ └── templates │ │ │ └── config.yaml │ ├── release_trigger │ │ └── upload-data.sh │ └── tests │ │ ├── README.md │ │ ├── collect_logs.sh │ │ └── tests.sh └── workflows │ ├── build-main.yml │ ├── build-prs-trigger.yaml │ ├── build-prs.yml │ ├── build-tags.yml │ ├── functests.yml │ ├── kind-integration-byoargo.yml │ ├── kind-integration.yml │ ├── nightly_tests.yml │ ├── precommit.yml │ ├── release_create.yaml │ ├── release_prep.yaml │ ├── release_trigger.yaml │ ├── stable-merge-check.yml │ ├── unittests.yml │ └── upgrade-test.yml ├── .gitignore ├── .gitleaks.toml ├── .golangci.yaml ├── .pre-commit-config.yaml ├── .tekton └── odh-data-science-pipelines-operator-controller-push.yaml ├── .yamllint.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── PROJECT ├── README.md ├── api └── v1 │ ├── dspipeline_types.go │ ├── groupversion_info.go │ └── zz_generated.deepcopy.go ├── config ├── argo │ ├── clusterrole.argo-aggregate-to-admin.yaml │ ├── clusterrole.argo-aggregate-to-edit.yaml │ ├── clusterrole.argo-aggregate-to-view.yaml │ ├── clusterrole.argo-cluster-role.yaml │ ├── clusterrolebinding.ds-pipeline-argo-binding.yaml │ ├── configmap.workflow-controller-configmap.yaml │ ├── crd.applications.yaml │ ├── crd.clusterworkflowtemplates.yaml │ ├── crd.cronworkflows.yaml │ ├── crd.viewers.yaml │ ├── crd.workflowartifactgctasks.yaml │ ├── crd.workfloweventbinding.yaml │ ├── crd.workflows.yaml │ ├── crd.workflowtaskresult.yaml │ ├── crd.workflowtaskset.yaml │ ├── crd.workflowtemplate.yaml │ ├── kustomization.yaml │ ├── params.yaml │ ├── role.argo.yaml │ ├── rolebinding.argo-binding.yaml │ └── serviceaccount.argo.yaml ├── base │ ├── kustomization.yaml │ ├── params.env │ └── params.yaml ├── component_metadata.yaml ├── configmaps │ ├── files │ │ └── config.yaml │ └── kustomization.yaml ├── crd │ ├── bases │ │ ├── datasciencepipelinesapplications.opendatahub.io_datasciencepipelinesapplications.yaml │ │ ├── pipelines.kubeflow.org_pipelines.yaml │ │ ├── pipelines.kubeflow.org_pipelineversions.yaml │ │ └── scheduledworkflows.yaml │ ├── external │ │ ├── monitoring.coreos.com_servicemonitors.yaml │ │ └── route.openshift.io_routes.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── internal │ ├── apiserver │ │ ├── default │ │ │ ├── deployment.yaml.tmpl │ │ │ ├── kfp_launcher_config.yaml.tmpl │ │ │ ├── kube-rbac-proxy-config.yaml.tmpl │ │ │ ├── monitor.yaml.tmpl │ │ │ ├── role_ds-pipeline-user-access.yaml.tmpl │ │ │ ├── role_ds-pipeline.yaml.tmpl │ │ │ ├── role_pipeline-runner.yaml.tmpl │ │ │ ├── rolebinding_ds-pipeline.yaml.tmpl │ │ │ ├── rolebinding_pipeline-runner.yaml.tmpl │ │ │ ├── sa_ds-pipeline.yaml.tmpl │ │ │ ├── sa_pipeline-runner.yaml.tmpl │ │ │ ├── server-config.yaml.tmpl │ │ │ ├── service.ml-pipeline.yaml.tmpl │ │ │ └── service.yaml.tmpl │ │ ├── route │ │ │ └── route.yaml.tmpl │ │ └── sample-pipeline │ │ │ ├── sample-config.yaml.tmpl │ │ │ └── sample-pipeline.yaml.tmpl │ ├── common │ │ ├── default │ │ │ ├── mlmd-envoy-dashboard-access-policy.yaml.tmpl │ │ │ └── policy.yaml.tmpl │ │ └── no-owner │ │ │ └── clusterrolebinding.yaml.tmpl │ ├── devtools │ │ ├── database.secret.yaml.tmpl │ │ └── storage.secret.yaml.tmpl │ ├── mariadb │ │ ├── default │ │ │ ├── deployment.yaml.tmpl │ │ │ ├── mariadb-sa.yaml.tmpl │ │ │ ├── networkpolicy.yaml.tmpl │ │ │ ├── pvc.yaml.tmpl │ │ │ ├── service.yaml.tmpl │ │ │ └── tls-config.yaml.tmpl │ │ └── generated-secret │ │ │ └── secret.yaml.tmpl │ ├── minio │ │ ├── default │ │ │ ├── deployment.yaml.tmpl │ │ │ ├── minio-sa.yaml.tmpl │ │ │ ├── pvc.yaml.tmpl │ │ │ ├── service.minioservice.yaml.tmpl │ │ │ └── service.yaml.tmpl │ │ ├── generated-secret │ │ │ └── secret.yaml.tmpl │ │ └── route.yaml.tmpl │ ├── ml-metadata │ │ ├── grpc-service │ │ │ ├── metadata-grpc.ml-pipeline.service.yaml.tmpl │ │ │ └── metadata-grpc.service.yaml.tmpl │ │ ├── kube-rbac-proxy-config.yaml.tmpl │ │ ├── metadata-envoy.configmap.yaml.tmpl │ │ ├── metadata-envoy.deployment.yaml.tmpl │ │ ├── metadata-envoy.service.yaml.tmpl │ │ ├── metadata-envoy.serviceaccount.yaml.tmpl │ │ ├── metadata-grpc-tls-config-secret.yaml.tmpl │ │ ├── metadata-grpc.configmap.yaml.tmpl │ │ ├── metadata-grpc.deployment.yaml.tmpl │ │ ├── metadata-grpc.networkpolicy.yaml.tmpl │ │ ├── metadata-grpc.serviceaccount.yaml.tmpl │ │ └── route │ │ │ └── metadata-envoy.route.yaml.tmpl │ ├── persistence-agent │ │ ├── deployment.yaml.tmpl │ │ ├── role.yaml.tmpl │ │ ├── rolebinding.yaml.tmpl │ │ └── sa.yaml.tmpl │ ├── scheduled-workflow │ │ ├── deployment.yaml.tmpl │ │ ├── role.yaml.tmpl │ │ ├── rolebinding.yaml.tmpl │ │ └── sa.yaml.tmpl │ ├── webhook │ │ ├── deployment.yaml.tmpl │ │ ├── mutating_webhook.yaml.tmpl │ │ ├── role_webhook.yaml.tmpl │ │ ├── rolebinding_webhook.yaml.tmpl │ │ ├── sa_webhook.yaml.tmpl │ │ ├── service.yaml.tmpl │ │ └── validating_webhook.yaml.tmpl │ └── workflow-controller │ │ ├── configmap.yaml.tmpl │ │ ├── deployment.yaml.tmpl │ │ ├── role.yaml.tmpl │ │ ├── rolebinding.yaml.tmpl │ │ ├── sa.yaml.tmpl │ │ └── service.yaml.tmpl ├── manager │ ├── kustomization.yaml │ ├── manager-service.yaml │ └── manager.yaml ├── manifests │ └── kustomization.yaml ├── overlays │ ├── kind-tests │ │ ├── env_patch.yaml │ │ ├── img_patch.yaml │ │ ├── kustomization.yaml │ │ ├── res_patch.yaml │ │ └── user_patch.yaml │ ├── make-deploy │ │ ├── img_patch.yaml │ │ └── kustomization.yaml │ ├── odh │ │ ├── argo │ │ │ └── kustomization.yaml │ │ ├── dspo │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ └── rhoai │ │ ├── argo │ │ └── kustomization.yaml │ │ ├── dspo │ │ └── kustomization.yaml │ │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── aggregate_dspa_role_edit.yaml │ ├── aggregate_dspa_role_view.yaml │ ├── argo_role.yaml │ ├── argo_role_binding.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml └── samples │ ├── custom-configs │ ├── db-creds.yaml │ ├── dspa.yaml │ ├── kustomization.yaml │ ├── storage-creds.yaml │ └── ui-configmap.yaml │ ├── custom-workflow-controller-config │ ├── custom-workflow-controller-configmap.yaml │ ├── dspa.yaml │ └── kustomization.yaml │ ├── dspa-all-fields │ └── dspa_all_fields.yaml │ ├── dspa-kubernetes │ ├── dspa_kubernetes.yaml │ └── kustomization.yaml │ ├── dspa-simple │ ├── dspa_simple.yaml │ └── kustomization.yaml │ ├── dspa-with-proxy │ ├── dspa_proxy.yaml │ └── kustomization.yaml │ ├── dspa_healthcheck.yaml │ ├── external-object-storage │ ├── dspa.yaml │ └── kustomization.yaml │ └── local-dev │ ├── dspa.yaml │ ├── kustomization.yaml │ └── storage-creds.yaml ├── controllers ├── apiserver.go ├── apiserver_test.go ├── common.go ├── common_test.go ├── config │ ├── defaults.go │ ├── manifest.go │ └── templating.go ├── database.go ├── database_test.go ├── dspastatus │ └── dspa_status.go ├── dspipeline_controller.go ├── dspipeline_controller_func_test.go ├── dspipeline_fake_controller.go ├── dspipeline_params.go ├── dspipeline_params_test.go ├── metrics.go ├── mlmd.go ├── mlmd_test.go ├── persistence_agent.go ├── persistence_agent_test.go ├── scheduled_workflow.go ├── scheduled_workflow_test.go ├── storage.go ├── storage_test.go ├── suite_test.go ├── testdata │ ├── README.md │ ├── declarative │ │ ├── case_0 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── configmap_server_config.yaml │ │ │ │ ├── mariadb_deployment.yaml │ │ │ │ ├── persistence-agent_deployment.yaml │ │ │ │ └── scheduled-workflow_deployment.yaml │ │ ├── case_1 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── cr.yaml │ │ │ └── expected │ │ │ │ └── not_created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── kube-rbac-proxy-config.yaml │ │ │ │ ├── mariadb_deployment.yaml │ │ │ │ ├── minio_deployment.yaml │ │ │ │ ├── persistence-agent_deployment.yaml │ │ │ │ └── scheduled-workflow_deployment.yaml │ │ ├── case_2 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── kube-rbac-proxy-config.yaml │ │ │ │ ├── mariadb_deployment.yaml │ │ │ │ ├── minio_deployment.yaml │ │ │ │ ├── mlmd_envoy_deployment.yaml │ │ │ │ ├── mlmd_grpc_deployment.yaml │ │ │ │ ├── persistence-agent_deployment.yaml │ │ │ │ ├── sample-config.yaml.tmpl │ │ │ │ ├── scheduled-workflow_deployment.yaml │ │ │ │ └── workflow_deployment.yaml │ │ ├── case_3 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ ├── 00_secret.yaml │ │ │ │ ├── 01_secret.yaml │ │ │ │ └── 02_cr.yaml │ │ │ └── expected │ │ │ │ ├── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ └── kube-rbac-proxy-config.yaml │ │ │ │ └── not_created │ │ │ │ ├── database_secret.yaml │ │ │ │ ├── sample-config.yaml.tmpl │ │ │ │ ├── sample-pipeline.yaml.tmpl │ │ │ │ └── storage_secret.yaml │ │ ├── case_4 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── 00_cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── kube-rbac-proxy-config.yaml │ │ │ │ ├── kube-rbac-proxy-metadata-config.yaml │ │ │ │ ├── mariadb_deployment.yaml │ │ │ │ ├── minio_deployment.yaml │ │ │ │ ├── mlmd_envoy_deployment.yaml │ │ │ │ ├── mlmd_grpc_deployment.yaml │ │ │ │ ├── persistence-agent_deployment.yaml │ │ │ │ └── scheduled-workflow_deployment.yaml │ │ ├── case_5 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ ├── 00_configmap.yaml │ │ │ │ ├── 01_configmap.yaml │ │ │ │ └── 02_cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── configmap_dspa_trusted_ca.yaml │ │ │ │ ├── kube-rbac-proxy-config.yaml │ │ │ │ └── mariadb_deployment.yaml │ │ ├── case_6 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── 00_cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ ├── apiserver_deployment.yaml │ │ │ │ ├── kube-rbac-proxy-config.yaml │ │ │ │ ├── kube-rbac-proxy-metadata-config.yaml │ │ │ │ ├── mlmd_envoy_deployment.yaml │ │ │ │ └── persistence-agent_deployment.yaml │ │ ├── case_7 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ │ └── 00_cr.yaml │ │ │ └── expected │ │ │ │ └── created │ │ │ │ └── configmap_server_config.yaml │ │ └── case_8 │ │ │ ├── config.yaml │ │ │ ├── deploy │ │ │ └── 00_cr.yaml │ │ │ └── expected │ │ │ └── created │ │ │ ├── apiserver_deployment.yaml │ │ │ ├── mlmd_grpc_deployment.yaml │ │ │ ├── persistence-agent_deployment.yaml │ │ │ ├── scheduled-workflow_deployment.yaml │ │ │ └── workflow_deployment.yaml │ └── tls │ │ ├── ca-bundle.crt │ │ ├── dummy-ca-bundle.crt │ │ └── empty-ca-bundle.crt ├── testutil │ ├── equalities.go │ └── util.go ├── util │ └── util.go ├── webhook.go ├── webhook_test.go ├── workflow_controller.go ├── workflow_controller_test.go └── workspace_validation_test.go ├── datasciencecluster ├── README.md └── datasciencecluster.yaml ├── docs ├── example_pipelines │ └── iris │ │ ├── Dockerfile │ │ ├── iris-pipeline.py │ │ └── iris-pipeline.yaml ├── images │ ├── create_run.png │ ├── executed_run.png │ ├── logs.png │ ├── start_run.png │ ├── started_run.png │ ├── upload_flipcoin.png │ └── upload_pipeline.png └── release │ ├── RELEASE.md │ ├── compatibility.md │ └── compatibility.yaml ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── main.go ├── proposals └── bring_your_own_argo_workflows │ ├── byoaw_context.md │ └── byoaw_test_plan.md ├── scripts └── release │ ├── README.md │ ├── params.py │ ├── release.py │ ├── template │ └── version_doc.md │ └── version_doc.py └── tests ├── README.md ├── artifacts_test.go ├── dspa_v2_test.go ├── experiments_test.go ├── main.go ├── pipeline_runs_test.go ├── pipeline_test.go ├── resources ├── Dockerfile ├── dspa-external-lite.yaml ├── dspa-external.yaml ├── dspa-k8s.yaml ├── dspa-lite-tls.yaml ├── dspa-lite.yaml ├── dspa.yaml ├── iris_pipeline_without_cache.py ├── iris_pipeline_without_cache_compiled.yaml ├── test-k8s-pipeline.yaml ├── test-pipeline-run.yaml ├── test-pipeline-with-custom-pip-server-run.yaml ├── test-pipeline-with-custom-pip-server.py └── test-pipeline.py ├── setup └── datasciencecluster_openshift.yaml ├── suite_test.go ├── upgrades └── main.sh └── util ├── resources.go └── rest.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/build/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/actions/build/action.yaml -------------------------------------------------------------------------------- /.github/actions/kind/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/actions/kind/action.yml -------------------------------------------------------------------------------- /.github/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/build/Dockerfile -------------------------------------------------------------------------------- /.github/build/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/build/Pipfile -------------------------------------------------------------------------------- /.github/build/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/build/Pipfile.lock -------------------------------------------------------------------------------- /.github/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/build/README.md -------------------------------------------------------------------------------- /.github/build/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/build/requirements.txt -------------------------------------------------------------------------------- /.github/resources/argo-lite/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/argo-lite/kustomization.yaml -------------------------------------------------------------------------------- /.github/resources/crds/buildconfig-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/crds/buildconfig-crd.yaml -------------------------------------------------------------------------------- /.github/resources/crds/deploymentconfig-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/crds/deploymentconfig-crd.yaml -------------------------------------------------------------------------------- /.github/resources/crds/imagestream-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/crds/imagestream-crd.yaml -------------------------------------------------------------------------------- /.github/resources/crds/servicemonitor-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/crds/servicemonitor-crd.yaml -------------------------------------------------------------------------------- /.github/resources/datasciencecluster/datasciencecluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/datasciencecluster/datasciencecluster.yaml -------------------------------------------------------------------------------- /.github/resources/dspa-lite/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/dspa-lite/dspa.yaml -------------------------------------------------------------------------------- /.github/resources/external-pre-reqs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/external-pre-reqs/kustomization.yaml -------------------------------------------------------------------------------- /.github/resources/external-pre-reqs/mariadb-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/external-pre-reqs/mariadb-secret.yaml -------------------------------------------------------------------------------- /.github/resources/external-pre-reqs/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/external-pre-reqs/minio-secret.yaml -------------------------------------------------------------------------------- /.github/resources/external-pre-reqs/root-ca-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/external-pre-reqs/root-ca-configmap.yaml -------------------------------------------------------------------------------- /.github/resources/kind/kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/kind/kind.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/certs-secret.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/deployment.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/kustomization.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/pvc.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/secret.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/self-signed-ca-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/self-signed-ca-configmap.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/service.yaml -------------------------------------------------------------------------------- /.github/resources/mariadb/tls-config-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/mariadb/tls-config-configmap.yaml -------------------------------------------------------------------------------- /.github/resources/minio/cabundle-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/cabundle-configmap.yaml -------------------------------------------------------------------------------- /.github/resources/minio/certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/certs-secret.yaml -------------------------------------------------------------------------------- /.github/resources/minio/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/deployment.yaml -------------------------------------------------------------------------------- /.github/resources/minio/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/kustomization.yaml -------------------------------------------------------------------------------- /.github/resources/minio/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/pvc.yaml -------------------------------------------------------------------------------- /.github/resources/minio/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/secret.yaml -------------------------------------------------------------------------------- /.github/resources/minio/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/minio/service.yaml -------------------------------------------------------------------------------- /.github/resources/olm/catalogsource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/olm/catalogsource.yaml -------------------------------------------------------------------------------- /.github/resources/olm/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/olm/operatorgroup.yaml -------------------------------------------------------------------------------- /.github/resources/olm/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/olm/subscription.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/kustomization.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/nginx-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/nginx-certs.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/nginx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/nginx-configmap.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/nginx-service.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/nginx-tls-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/nginx-tls-config.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/pvc.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/pypiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/pypiserver.yaml -------------------------------------------------------------------------------- /.github/resources/pypiserver/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/pypiserver/base/service.yaml -------------------------------------------------------------------------------- /.github/resources/webhook/cert-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/webhook/cert-issuer.yaml -------------------------------------------------------------------------------- /.github/resources/webhook/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/webhook/certificate.yaml -------------------------------------------------------------------------------- /.github/resources/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/resources/webhook/kustomization.yaml -------------------------------------------------------------------------------- /.github/scripts/check_integration_test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/check_integration_test_label.py -------------------------------------------------------------------------------- /.github/scripts/python_package_upload/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/python_package_upload/Dockerfile -------------------------------------------------------------------------------- /.github/scripts/python_package_upload/package_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/python_package_upload/package_download.sh -------------------------------------------------------------------------------- /.github/scripts/python_package_upload/package_upload_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/python_package_upload/package_upload_run.sh -------------------------------------------------------------------------------- /.github/scripts/release_create/create_tag_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_create/create_tag_release.sh -------------------------------------------------------------------------------- /.github/scripts/release_create/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_create/notify.sh -------------------------------------------------------------------------------- /.github/scripts/release_create/validate_pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_create/validate_pr.sh -------------------------------------------------------------------------------- /.github/scripts/release_create/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_create/vars.sh -------------------------------------------------------------------------------- /.github/scripts/release_prep/create_branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_prep/create_branches.sh -------------------------------------------------------------------------------- /.github/scripts/release_prep/generate_pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_prep/generate_pr.sh -------------------------------------------------------------------------------- /.github/scripts/release_prep/prereqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_prep/prereqs.sh -------------------------------------------------------------------------------- /.github/scripts/release_prep/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_prep/templates/config.yaml -------------------------------------------------------------------------------- /.github/scripts/release_trigger/upload-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/release_trigger/upload-data.sh -------------------------------------------------------------------------------- /.github/scripts/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/tests/README.md -------------------------------------------------------------------------------- /.github/scripts/tests/collect_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/tests/collect_logs.sh -------------------------------------------------------------------------------- /.github/scripts/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/scripts/tests/tests.sh -------------------------------------------------------------------------------- /.github/workflows/build-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/build-main.yml -------------------------------------------------------------------------------- /.github/workflows/build-prs-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/build-prs-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/build-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/build-prs.yml -------------------------------------------------------------------------------- /.github/workflows/build-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/build-tags.yml -------------------------------------------------------------------------------- /.github/workflows/functests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/functests.yml -------------------------------------------------------------------------------- /.github/workflows/kind-integration-byoargo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/kind-integration-byoargo.yml -------------------------------------------------------------------------------- /.github/workflows/kind-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/kind-integration.yml -------------------------------------------------------------------------------- /.github/workflows/nightly_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/nightly_tests.yml -------------------------------------------------------------------------------- /.github/workflows/precommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/precommit.yml -------------------------------------------------------------------------------- /.github/workflows/release_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/release_create.yaml -------------------------------------------------------------------------------- /.github/workflows/release_prep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/release_prep.yaml -------------------------------------------------------------------------------- /.github/workflows/release_trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/release_trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/stable-merge-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/stable-merge-check.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.github/workflows/upgrade-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tekton/odh-data-science-pipelines-operator-controller-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.tekton/odh-data-science-pipelines-operator-controller-push.yaml -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/dspipeline_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/api/v1/dspipeline_types.go -------------------------------------------------------------------------------- /api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /config/argo/clusterrole.argo-aggregate-to-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/clusterrole.argo-aggregate-to-admin.yaml -------------------------------------------------------------------------------- /config/argo/clusterrole.argo-aggregate-to-edit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/clusterrole.argo-aggregate-to-edit.yaml -------------------------------------------------------------------------------- /config/argo/clusterrole.argo-aggregate-to-view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/clusterrole.argo-aggregate-to-view.yaml -------------------------------------------------------------------------------- /config/argo/clusterrole.argo-cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/clusterrole.argo-cluster-role.yaml -------------------------------------------------------------------------------- /config/argo/clusterrolebinding.ds-pipeline-argo-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/clusterrolebinding.ds-pipeline-argo-binding.yaml -------------------------------------------------------------------------------- /config/argo/configmap.workflow-controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/configmap.workflow-controller-configmap.yaml -------------------------------------------------------------------------------- /config/argo/crd.applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.applications.yaml -------------------------------------------------------------------------------- /config/argo/crd.clusterworkflowtemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.clusterworkflowtemplates.yaml -------------------------------------------------------------------------------- /config/argo/crd.cronworkflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.cronworkflows.yaml -------------------------------------------------------------------------------- /config/argo/crd.viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.viewers.yaml -------------------------------------------------------------------------------- /config/argo/crd.workflowartifactgctasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workflowartifactgctasks.yaml -------------------------------------------------------------------------------- /config/argo/crd.workfloweventbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workfloweventbinding.yaml -------------------------------------------------------------------------------- /config/argo/crd.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workflows.yaml -------------------------------------------------------------------------------- /config/argo/crd.workflowtaskresult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workflowtaskresult.yaml -------------------------------------------------------------------------------- /config/argo/crd.workflowtaskset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workflowtaskset.yaml -------------------------------------------------------------------------------- /config/argo/crd.workflowtemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/crd.workflowtemplate.yaml -------------------------------------------------------------------------------- /config/argo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/kustomization.yaml -------------------------------------------------------------------------------- /config/argo/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/params.yaml -------------------------------------------------------------------------------- /config/argo/role.argo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/role.argo.yaml -------------------------------------------------------------------------------- /config/argo/rolebinding.argo-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/rolebinding.argo-binding.yaml -------------------------------------------------------------------------------- /config/argo/serviceaccount.argo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/argo/serviceaccount.argo.yaml -------------------------------------------------------------------------------- /config/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/base/kustomization.yaml -------------------------------------------------------------------------------- /config/base/params.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/base/params.env -------------------------------------------------------------------------------- /config/base/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/base/params.yaml -------------------------------------------------------------------------------- /config/component_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/component_metadata.yaml -------------------------------------------------------------------------------- /config/configmaps/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/configmaps/files/config.yaml -------------------------------------------------------------------------------- /config/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/bases/datasciencepipelinesapplications.opendatahub.io_datasciencepipelinesapplications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/bases/datasciencepipelinesapplications.opendatahub.io_datasciencepipelinesapplications.yaml -------------------------------------------------------------------------------- /config/crd/bases/pipelines.kubeflow.org_pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/bases/pipelines.kubeflow.org_pipelines.yaml -------------------------------------------------------------------------------- /config/crd/bases/pipelines.kubeflow.org_pipelineversions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/bases/pipelines.kubeflow.org_pipelineversions.yaml -------------------------------------------------------------------------------- /config/crd/bases/scheduledworkflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/bases/scheduledworkflows.yaml -------------------------------------------------------------------------------- /config/crd/external/monitoring.coreos.com_servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/external/monitoring.coreos.com_servicemonitors.yaml -------------------------------------------------------------------------------- /config/crd/external/route.openshift.io_routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/external/route.openshift.io_routes.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/internal/apiserver/default/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/kfp_launcher_config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/kfp_launcher_config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/kube-rbac-proxy-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/kube-rbac-proxy-config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/monitor.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/monitor.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/role_ds-pipeline-user-access.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/role_ds-pipeline-user-access.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/role_ds-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/role_ds-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/role_pipeline-runner.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/role_pipeline-runner.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/rolebinding_ds-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/rolebinding_ds-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/rolebinding_pipeline-runner.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/rolebinding_pipeline-runner.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/sa_ds-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/sa_ds-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/sa_pipeline-runner.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/sa_pipeline-runner.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/server-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/server-config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/service.ml-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/service.ml-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/default/service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/default/service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/route/route.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/route/route.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/sample-pipeline/sample-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/sample-pipeline/sample-config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/apiserver/sample-pipeline/sample-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/apiserver/sample-pipeline/sample-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/common/default/mlmd-envoy-dashboard-access-policy.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/common/default/mlmd-envoy-dashboard-access-policy.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/common/default/policy.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/common/default/policy.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/common/no-owner/clusterrolebinding.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/common/no-owner/clusterrolebinding.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/devtools/database.secret.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/devtools/database.secret.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/devtools/storage.secret.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/devtools/storage.secret.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/mariadb-sa.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/mariadb-sa.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/networkpolicy.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/networkpolicy.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/pvc.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/pvc.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/default/tls-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/default/tls-config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/mariadb/generated-secret/secret.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/mariadb/generated-secret/secret.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/default/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/default/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/default/minio-sa.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/default/minio-sa.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/default/pvc.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/default/pvc.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/default/service.minioservice.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/default/service.minioservice.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/default/service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/default/service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/generated-secret/secret.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/generated-secret/secret.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/minio/route.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/minio/route.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/grpc-service/metadata-grpc.ml-pipeline.service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/grpc-service/metadata-grpc.ml-pipeline.service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/grpc-service/metadata-grpc.service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/grpc-service/metadata-grpc.service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/kube-rbac-proxy-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/kube-rbac-proxy-config.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-envoy.configmap.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-envoy.configmap.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-envoy.deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-envoy.deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-envoy.service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-envoy.service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-envoy.serviceaccount.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-envoy.serviceaccount.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-grpc-tls-config-secret.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-grpc-tls-config-secret.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-grpc.configmap.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-grpc.configmap.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-grpc.deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-grpc.deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-grpc.networkpolicy.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-grpc.networkpolicy.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/metadata-grpc.serviceaccount.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/metadata-grpc.serviceaccount.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/ml-metadata/route/metadata-envoy.route.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/ml-metadata/route/metadata-envoy.route.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/persistence-agent/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/persistence-agent/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/persistence-agent/role.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/persistence-agent/role.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/persistence-agent/rolebinding.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/persistence-agent/rolebinding.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/persistence-agent/sa.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/persistence-agent/sa.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/scheduled-workflow/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/scheduled-workflow/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/scheduled-workflow/role.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/scheduled-workflow/role.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/scheduled-workflow/rolebinding.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/scheduled-workflow/rolebinding.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/scheduled-workflow/sa.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/scheduled-workflow/sa.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/mutating_webhook.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/mutating_webhook.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/role_webhook.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/role_webhook.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/rolebinding_webhook.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/rolebinding_webhook.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/sa_webhook.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/sa_webhook.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/service.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/webhook/validating_webhook.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/webhook/validating_webhook.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/configmap.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/configmap.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/deployment.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/role.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/role.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/rolebinding.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/rolebinding.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/sa.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/sa.yaml.tmpl -------------------------------------------------------------------------------- /config/internal/workflow-controller/service.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/internal/workflow-controller/service.yaml.tmpl -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/manager/manager-service.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/kind-tests/env_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/kind-tests/env_patch.yaml -------------------------------------------------------------------------------- /config/overlays/kind-tests/img_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/kind-tests/img_patch.yaml -------------------------------------------------------------------------------- /config/overlays/kind-tests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/kind-tests/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/kind-tests/res_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/kind-tests/res_patch.yaml -------------------------------------------------------------------------------- /config/overlays/kind-tests/user_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/kind-tests/user_patch.yaml -------------------------------------------------------------------------------- /config/overlays/make-deploy/img_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/make-deploy/img_patch.yaml -------------------------------------------------------------------------------- /config/overlays/make-deploy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/make-deploy/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/odh/argo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/odh/argo/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/odh/dspo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/odh/dspo/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/odh/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/odh/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/rhoai/argo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/rhoai/argo/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/rhoai/dspo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/rhoai/dspo/kustomization.yaml -------------------------------------------------------------------------------- /config/overlays/rhoai/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/overlays/rhoai/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/aggregate_dspa_role_edit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/aggregate_dspa_role_edit.yaml -------------------------------------------------------------------------------- /config/rbac/aggregate_dspa_role_view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/aggregate_dspa_role_view.yaml -------------------------------------------------------------------------------- /config/rbac/argo_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/argo_role.yaml -------------------------------------------------------------------------------- /config/rbac/argo_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/argo_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/custom-configs/db-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-configs/db-creds.yaml -------------------------------------------------------------------------------- /config/samples/custom-configs/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-configs/dspa.yaml -------------------------------------------------------------------------------- /config/samples/custom-configs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-configs/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/custom-configs/storage-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-configs/storage-creds.yaml -------------------------------------------------------------------------------- /config/samples/custom-configs/ui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-configs/ui-configmap.yaml -------------------------------------------------------------------------------- /config/samples/custom-workflow-controller-config/custom-workflow-controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-workflow-controller-config/custom-workflow-controller-configmap.yaml -------------------------------------------------------------------------------- /config/samples/custom-workflow-controller-config/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-workflow-controller-config/dspa.yaml -------------------------------------------------------------------------------- /config/samples/custom-workflow-controller-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/custom-workflow-controller-config/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/dspa-all-fields/dspa_all_fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa-all-fields/dspa_all_fields.yaml -------------------------------------------------------------------------------- /config/samples/dspa-kubernetes/dspa_kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa-kubernetes/dspa_kubernetes.yaml -------------------------------------------------------------------------------- /config/samples/dspa-kubernetes/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - dspa_kubernetes.yaml 3 | -------------------------------------------------------------------------------- /config/samples/dspa-simple/dspa_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa-simple/dspa_simple.yaml -------------------------------------------------------------------------------- /config/samples/dspa-simple/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - dspa_simple.yaml 3 | -------------------------------------------------------------------------------- /config/samples/dspa-with-proxy/dspa_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa-with-proxy/dspa_proxy.yaml -------------------------------------------------------------------------------- /config/samples/dspa-with-proxy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa-with-proxy/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/dspa_healthcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/dspa_healthcheck.yaml -------------------------------------------------------------------------------- /config/samples/external-object-storage/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/external-object-storage/dspa.yaml -------------------------------------------------------------------------------- /config/samples/external-object-storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/external-object-storage/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/local-dev/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/local-dev/dspa.yaml -------------------------------------------------------------------------------- /config/samples/local-dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/local-dev/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/local-dev/storage-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/config/samples/local-dev/storage-creds.yaml -------------------------------------------------------------------------------- /controllers/apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/apiserver.go -------------------------------------------------------------------------------- /controllers/apiserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/apiserver_test.go -------------------------------------------------------------------------------- /controllers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/common.go -------------------------------------------------------------------------------- /controllers/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/common_test.go -------------------------------------------------------------------------------- /controllers/config/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/config/defaults.go -------------------------------------------------------------------------------- /controllers/config/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/config/manifest.go -------------------------------------------------------------------------------- /controllers/config/templating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/config/templating.go -------------------------------------------------------------------------------- /controllers/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/database.go -------------------------------------------------------------------------------- /controllers/database_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/database_test.go -------------------------------------------------------------------------------- /controllers/dspastatus/dspa_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspastatus/dspa_status.go -------------------------------------------------------------------------------- /controllers/dspipeline_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspipeline_controller.go -------------------------------------------------------------------------------- /controllers/dspipeline_controller_func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspipeline_controller_func_test.go -------------------------------------------------------------------------------- /controllers/dspipeline_fake_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspipeline_fake_controller.go -------------------------------------------------------------------------------- /controllers/dspipeline_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspipeline_params.go -------------------------------------------------------------------------------- /controllers/dspipeline_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/dspipeline_params_test.go -------------------------------------------------------------------------------- /controllers/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/metrics.go -------------------------------------------------------------------------------- /controllers/mlmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/mlmd.go -------------------------------------------------------------------------------- /controllers/mlmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/mlmd_test.go -------------------------------------------------------------------------------- /controllers/persistence_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/persistence_agent.go -------------------------------------------------------------------------------- /controllers/persistence_agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/persistence_agent_test.go -------------------------------------------------------------------------------- /controllers/scheduled_workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/scheduled_workflow.go -------------------------------------------------------------------------------- /controllers/scheduled_workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/scheduled_workflow_test.go -------------------------------------------------------------------------------- /controllers/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/storage.go -------------------------------------------------------------------------------- /controllers/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/storage_test.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /controllers/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/README.md -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/deploy/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/deploy/cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/expected/created/configmap_server_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/expected/created/configmap_server_config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/expected/created/mariadb_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/expected/created/mariadb_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/expected/created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/expected/created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_0/expected/created/scheduled-workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_0/expected/created/scheduled-workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/deploy/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/deploy/cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/mariadb_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/mariadb_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/minio_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/minio_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_1/expected/not_created/scheduled-workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_1/expected/not_created/scheduled-workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/deploy/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/deploy/cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/mariadb_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/mariadb_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/minio_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/minio_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/mlmd_envoy_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/mlmd_envoy_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/mlmd_grpc_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/mlmd_grpc_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/sample-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/sample-config.yaml.tmpl -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/scheduled-workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/scheduled-workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_2/expected/created/workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_2/expected/created/workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/deploy/00_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/deploy/00_secret.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/deploy/01_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/deploy/01_secret.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/deploy/02_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/deploy/02_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/not_created/database_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/not_created/database_secret.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/not_created/sample-config.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/not_created/sample-config.yaml.tmpl -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/not_created/sample-pipeline.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/not_created/sample-pipeline.yaml.tmpl -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_3/expected/not_created/storage_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_3/expected/not_created/storage_secret.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/deploy/00_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/deploy/00_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/kube-rbac-proxy-metadata-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/kube-rbac-proxy-metadata-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/mariadb_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/mariadb_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/minio_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/minio_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/mlmd_envoy_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/mlmd_envoy_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/mlmd_grpc_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/mlmd_grpc_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_4/expected/created/scheduled-workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_4/expected/created/scheduled-workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/deploy/00_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/deploy/00_configmap.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/deploy/01_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/deploy/01_configmap.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/deploy/02_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/deploy/02_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/expected/created/configmap_dspa_trusted_ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/expected/created/configmap_dspa_trusted_ca.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/expected/created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/expected/created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_5/expected/created/mariadb_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_5/expected/created/mariadb_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/deploy/00_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/deploy/00_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/expected/created/kube-rbac-proxy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/expected/created/kube-rbac-proxy-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/expected/created/kube-rbac-proxy-metadata-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/expected/created/kube-rbac-proxy-metadata-config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/expected/created/mlmd_envoy_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/expected/created/mlmd_envoy_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_6/expected/created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_6/expected/created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_7/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_7/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_7/deploy/00_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_7/deploy/00_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_7/expected/created/configmap_server_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_7/expected/created/configmap_server_config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/config.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/deploy/00_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/deploy/00_cr.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/expected/created/apiserver_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/expected/created/apiserver_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/expected/created/mlmd_grpc_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/expected/created/mlmd_grpc_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/expected/created/persistence-agent_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/expected/created/persistence-agent_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/expected/created/scheduled-workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/expected/created/scheduled-workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/declarative/case_8/expected/created/workflow_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/declarative/case_8/expected/created/workflow_deployment.yaml -------------------------------------------------------------------------------- /controllers/testdata/tls/ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testdata/tls/ca-bundle.crt -------------------------------------------------------------------------------- /controllers/testdata/tls/dummy-ca-bundle.crt: -------------------------------------------------------------------------------- 1 | dummycontent -------------------------------------------------------------------------------- /controllers/testdata/tls/empty-ca-bundle.crt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controllers/testutil/equalities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testutil/equalities.go -------------------------------------------------------------------------------- /controllers/testutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/testutil/util.go -------------------------------------------------------------------------------- /controllers/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/util/util.go -------------------------------------------------------------------------------- /controllers/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/webhook.go -------------------------------------------------------------------------------- /controllers/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/webhook_test.go -------------------------------------------------------------------------------- /controllers/workflow_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/workflow_controller.go -------------------------------------------------------------------------------- /controllers/workflow_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/workflow_controller_test.go -------------------------------------------------------------------------------- /controllers/workspace_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/controllers/workspace_validation_test.go -------------------------------------------------------------------------------- /datasciencecluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/datasciencecluster/README.md -------------------------------------------------------------------------------- /datasciencecluster/datasciencecluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/datasciencecluster/datasciencecluster.yaml -------------------------------------------------------------------------------- /docs/example_pipelines/iris/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/example_pipelines/iris/Dockerfile -------------------------------------------------------------------------------- /docs/example_pipelines/iris/iris-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/example_pipelines/iris/iris-pipeline.py -------------------------------------------------------------------------------- /docs/example_pipelines/iris/iris-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/example_pipelines/iris/iris-pipeline.yaml -------------------------------------------------------------------------------- /docs/images/create_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/create_run.png -------------------------------------------------------------------------------- /docs/images/executed_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/executed_run.png -------------------------------------------------------------------------------- /docs/images/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/logs.png -------------------------------------------------------------------------------- /docs/images/start_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/start_run.png -------------------------------------------------------------------------------- /docs/images/started_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/started_run.png -------------------------------------------------------------------------------- /docs/images/upload_flipcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/upload_flipcoin.png -------------------------------------------------------------------------------- /docs/images/upload_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/images/upload_pipeline.png -------------------------------------------------------------------------------- /docs/release/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/release/RELEASE.md -------------------------------------------------------------------------------- /docs/release/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/release/compatibility.md -------------------------------------------------------------------------------- /docs/release/compatibility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/docs/release/compatibility.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/main.go -------------------------------------------------------------------------------- /proposals/bring_your_own_argo_workflows/byoaw_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/proposals/bring_your_own_argo_workflows/byoaw_context.md -------------------------------------------------------------------------------- /proposals/bring_your_own_argo_workflows/byoaw_test_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/proposals/bring_your_own_argo_workflows/byoaw_test_plan.md -------------------------------------------------------------------------------- /scripts/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/scripts/release/README.md -------------------------------------------------------------------------------- /scripts/release/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/scripts/release/params.py -------------------------------------------------------------------------------- /scripts/release/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/scripts/release/release.py -------------------------------------------------------------------------------- /scripts/release/template/version_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/scripts/release/template/version_doc.md -------------------------------------------------------------------------------- /scripts/release/version_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/scripts/release/version_doc.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/artifacts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/artifacts_test.go -------------------------------------------------------------------------------- /tests/dspa_v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/dspa_v2_test.go -------------------------------------------------------------------------------- /tests/experiments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/experiments_test.go -------------------------------------------------------------------------------- /tests/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/main.go -------------------------------------------------------------------------------- /tests/pipeline_runs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/pipeline_runs_test.go -------------------------------------------------------------------------------- /tests/pipeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/pipeline_test.go -------------------------------------------------------------------------------- /tests/resources/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/Dockerfile -------------------------------------------------------------------------------- /tests/resources/dspa-external-lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa-external-lite.yaml -------------------------------------------------------------------------------- /tests/resources/dspa-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa-external.yaml -------------------------------------------------------------------------------- /tests/resources/dspa-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa-k8s.yaml -------------------------------------------------------------------------------- /tests/resources/dspa-lite-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa-lite-tls.yaml -------------------------------------------------------------------------------- /tests/resources/dspa-lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa-lite.yaml -------------------------------------------------------------------------------- /tests/resources/dspa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/dspa.yaml -------------------------------------------------------------------------------- /tests/resources/iris_pipeline_without_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/iris_pipeline_without_cache.py -------------------------------------------------------------------------------- /tests/resources/iris_pipeline_without_cache_compiled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/iris_pipeline_without_cache_compiled.yaml -------------------------------------------------------------------------------- /tests/resources/test-k8s-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/test-k8s-pipeline.yaml -------------------------------------------------------------------------------- /tests/resources/test-pipeline-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/test-pipeline-run.yaml -------------------------------------------------------------------------------- /tests/resources/test-pipeline-with-custom-pip-server-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/test-pipeline-with-custom-pip-server-run.yaml -------------------------------------------------------------------------------- /tests/resources/test-pipeline-with-custom-pip-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/test-pipeline-with-custom-pip-server.py -------------------------------------------------------------------------------- /tests/resources/test-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/resources/test-pipeline.py -------------------------------------------------------------------------------- /tests/setup/datasciencecluster_openshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/setup/datasciencecluster_openshift.yaml -------------------------------------------------------------------------------- /tests/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/suite_test.go -------------------------------------------------------------------------------- /tests/upgrades/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/upgrades/main.sh -------------------------------------------------------------------------------- /tests/util/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/util/resources.go -------------------------------------------------------------------------------- /tests/util/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatahub-io/data-science-pipelines-operator/HEAD/tests/util/rest.go --------------------------------------------------------------------------------