-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deployment): keep defaulting to argo docker container runtime ex…
- Loading branch information
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
bases: | ||
# platform-agnostic env is already defaulting to pns, so this env will be removed soon. | ||
- ../platform-agnostic | ||
|
||
patchesStrategicMerge: | ||
- workflow-controller-configmap-patch.yaml |
14 changes: 14 additions & 0 deletions
14
manifests/kustomize/env/platform-agnostic-pns/workflow-controller-configmap-patch.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,14 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: workflow-controller-configmap | ||
data: | ||
# References: | ||
# * https://github.com/argoproj/argo-workflows/blob/v2.12.9/config/config.go | ||
# * https://github.com/argoproj/argo-workflows/blob/v2.12.9/docs/workflow-controller-configmap.md | ||
# * https://github.com/argoproj/argo-workflows/blob/v2.12.9/docs/workflow-controller-configmap.yaml | ||
|
||
# pns executor is a more portable default, see https://github.com/kubeflow/pipelines/issues/1654. | ||
# However, it is flaky for containers that run really fast, see https://github.com/kubeflow/pipelines/issues/5285. | ||
# So we still default to docker for now. | ||
containerRuntimeExecutor: pns |
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