Skip to content

Commit

Permalink
Add workaround kustomize5 command for pipeline test
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Jung (VMware) <[email protected]>
  • Loading branch information
Anna Jung (VMware) committed Jul 13, 2023
1 parent 41389f3 commit 81a62e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline_kind_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:

- name: Deploy test pipeline
run: |
pip3 install kfp==1.8.4
pip3 install kfp==1.8.22
kustomize build apps/profiles/upstream/overlays/kubeflow | kubectl apply -f -
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 180s
kustomize build common/user-namespace/base | kubectl apply -f -
kustomize build common/kubeflow-roles/base | kubectl apply -f -
kustomize build common/user-namespace/base | awk '!/well-defined/' | kubectl apply -f -
kustomize build common/kubeflow-roles/base | awk '!/well-defined/' | kubectl apply -f -
./tests/e2e/hack/proxy_pipelines.sh
kubectl apply -f tests/e2e/yamls
python3 ./tests/gh-actions/kf-objects/test_pipeline.py
Expand Down
2 changes: 1 addition & 1 deletion tests/gh-actions/install_pipelines.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ kubectl create ns kubeflow
kubectl apply -f third-party/metacontroller/base/crd.yaml
echo "Waiting for crd/compositecontrollers.metacontroller.k8s.io to be available ..."
kubectl wait --for condition=established --timeout=30s crd/compositecontrollers.metacontroller.k8s.io
kustomize build env/cert-manager/platform-agnostic-multi-user | kubectl apply -f -
kustomize build env/cert-manager/platform-agnostic-multi-user | awk '!/well-defined/' | kubectl apply -f -
sleep 60
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout 600s

0 comments on commit 81a62e0

Please sign in to comment.