-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deployment): Add env/platform-agnostic-pns standalone deployment…
… option (#4278) Add containerRuntimeExecutor explicit type on the configMap configuration. Set `docker` as default. Add platform-agnostic type configuration needed by Kind, K3s and Minikube. Part of #4256
- Loading branch information
1 parent
8014a44
commit dac5a94
Showing
5 changed files
with
37 additions
and
0 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
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
21 changes: 21 additions & 0 deletions
21
manifests/kustomize/env/platform-agnostic-pns/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,21 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
bases: | ||
- ../platform-agnostic | ||
|
||
# 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 refer sample/cluster-scoped-resources to update the namespace for cluster-scoped-resources | ||
namespace: kubeflow | ||
|
||
# Used by Kustomize | ||
configMapGenerator: | ||
- name: pipeline-install-config | ||
env: params.env | ||
behavior: merge |
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 @@ | ||
containerRuntimeExecutor=pns |