-
Notifications
You must be signed in to change notification settings - Fork 880
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge pull request #2626 from rimolive/sync-kubeflow-kfp-tekton-manifests-2.0.5 Update kubeflow/kfp-tekton manifests from 2.0.5 Signed-off-by: juliusvonkohout <[email protected]> * Update kubeflow/pipelines manifests from 2.0.5 (#2623) * Update kubeflow/pipelines manifests from 2.0.5 Signed-off-by: Ricardo M. Oliveira <[email protected]> * Fix integration test With KFP 2.0 release, we need to bump SDK version to the latest release (2.7.0) Signed-off-by: Ricardo M. Oliveira <[email protected]> * only v1 is tested for now. We can add tests for v2 later on. Signed-off-by: juliusvonkohout <[email protected]> --------- Signed-off-by: Ricardo M. Oliveira <[email protected]> Signed-off-by: juliusvonkohout <[email protected]> Co-authored-by: juliusvonkohout <[email protected]> Signed-off-by: juliusvonkohout <[email protected]> * fix readme Signed-off-by: juliusvonkohout <[email protected]> --------- Signed-off-by: juliusvonkohout <[email protected]> Signed-off-by: Ricardo M. Oliveira <[email protected]> Co-authored-by: Ricardo Martinelli de Oliveira <[email protected]>
- Loading branch information
1 parent
4b25eac
commit 8b28ca2
Showing
37 changed files
with
971 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ commonLabels: | |
app: cache-deployer | ||
images: | ||
- name: gcr.io/ml-pipeline/cache-deployer | ||
newTag: 2.0.0 | ||
newTag: 2.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ resources: | |
namespace: kubeflow | ||
images: | ||
- name: gcr.io/ml-pipeline/metadata-envoy | ||
newTag: 2.0.0 | ||
newTag: 2.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
apps/kfp-tekton/upstream/cluster-scoped-resources-tekton/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: kubeflow | ||
|
||
resources: | ||
- namespace.yaml | ||
bases: | ||
- ../third-party/application/cluster-scoped | ||
# - ../third-party/argo/installs/namespace/cluster-scoped | ||
- ../base/pipeline/cluster-scoped | ||
- ../base/cache-deployer/cluster-scoped | ||
vars: | ||
# NOTE: var name must be unique globally to allow composition of multiple kustomize | ||
# packages. Therefore, we added prefix `kfp-cluster-scoped-` to distinguish it from | ||
# others. | ||
- name: kfp-cluster-scoped-namespace | ||
objref: | ||
# cache deployer sa's metadata.namespace will be first transformed by namespace field in kustomization.yaml | ||
# so that we only need to change kustomization.yaml's namespace field for namespace customization. | ||
kind: ServiceAccount | ||
name: kubeflow-pipelines-cache-deployer-sa | ||
apiVersion: v1 | ||
fieldref: | ||
fieldpath: metadata.namespace | ||
configurations: | ||
- params.yaml |
4 changes: 4 additions & 0 deletions
4
apps/kfp-tekton/upstream/cluster-scoped-resources-tekton/namespace.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: '$(kfp-cluster-scoped-namespace)' |
4 changes: 4 additions & 0 deletions
4
apps/kfp-tekton/upstream/cluster-scoped-resources-tekton/params.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Allow Kustomize var to replace following fields. | ||
varReference: | ||
- path: metadata/name | ||
kind: Namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
resources: | ||
- ../../cluster-scoped-resources-tekton | ||
- ../../base/installs/generic | ||
- ../../base/metadata/base | ||
- ../../third-party/minio/base | ||
- ../../third-party/mysql/base | ||
|
||
# Identifier for application manager to apply ownerReference. | ||
# The ownerReference ensures the resources get garbage collected | ||
# when application is deleted. | ||
commonLabels: | ||
application-crd-id: kubeflow-pipelines | ||
|
||
# !!! If you want to customize the namespace, | ||
# please also update base/cache-deployer/cluster-scoped/cache-deployer-clusterrolebinding.yaml | ||
namespace: kubeflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
apps/kfp-tekton/upstream/env/platform-agnostic-tekton-multi-user/tekton-config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: feature-flags | ||
namespace: tekton-pipelines | ||
labels: | ||
app.kubernetes.io/instance: default | ||
app.kubernetes.io/part-of: tekton-pipelines | ||
data: | ||
running-in-environment-with-injected-sidecars: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.