Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Manifest] Cache - MKP deployment #3430

Merged
merged 31 commits into from
Apr 6, 2020
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6994984
Initial execution cache
rui5i Feb 10, 2020
1534782
Merge branch 'master' of https://github.com/kubeflow/pipelines
rui5i Feb 27, 2020
d5ce005
Merge branch 'master' of https://github.com/kubeflow/pipelines
rui5i Mar 3, 2020
fdb3ba4
fix master
rui5i Mar 3, 2020
2b69c1e
Merge branch 'master' of https://github.com/kubeflow/pipelines
rui5i Mar 19, 2020
6a4dca2
Merge branch 'master' of https://github.com/kubeflow/pipelines
rui5i Mar 20, 2020
295f155
Merge branch 'master' of https://github.com/kubeflow/pipelines
rui5i Mar 23, 2020
2f3a7bc
Add cache manifests for mkp deployment
rui5i Mar 23, 2020
d9b4fa2
revert go.sum
rui5i Mar 23, 2020
04d4dcc
Add helm on delete policy for cache deployer job
rui5i Mar 24, 2020
010b749
Change cache deployer job to statefulset
rui5i Mar 25, 2020
89e299f
remove unnecessary cluster role
rui5i Mar 26, 2020
8bbaa93
Merge branch 'master' of https://github.com/kubeflow/pipelines into c…
rui5i Mar 30, 2020
677cc8e
seperate clusterrole and role
rui5i Mar 30, 2020
4366de3
add role and rolebinding to mkp
rui5i Mar 30, 2020
926882a
change secret role to clusterrole
rui5i Mar 30, 2020
7883360
Add cloudsql support to cache
rui5i Mar 31, 2020
39107c4
fix comma
rui5i Apr 2, 2020
76630fd
fix
rui5i Apr 2, 2020
6df9a45
Change cache secret clusterrole to role
rui5i Apr 3, 2020
57b7a0b
merge master
rui5i Apr 3, 2020
97bd65f
Adjust sequences of resources
rui5i Apr 3, 2020
2e33f92
Update values and schema
rui5i Apr 3, 2020
4a0e7d1
Merge branch 'master' of https://github.com/kubeflow/pipelines into c…
rui5i Apr 3, 2020
27bd21d
remove extra tab
rui5i Apr 3, 2020
cbe8bbe
Merge branch 'master' of https://github.com/kubeflow/pipelines into c…
rui5i Apr 3, 2020
b03d78c
Change statefulset to job
rui5i Apr 3, 2020
efdc6e0
Add pod delete permission to cache deployer role
rui5i Apr 3, 2020
9b62a05
Test changing cache deployer job to deployment
rui5i Apr 3, 2020
d5417ef
remove extra permission
rui5i Apr 3, 2020
eedfbda
remove statefulset check
rui5i Apr 6, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove statefulset check
  • Loading branch information
rui5i committed Apr 6, 2020
commit eedfbdad74a5d62a3ad3a4b1768fbed97fa6e985
7 changes: 1 addition & 6 deletions test/deploy-pipeline-lite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,12 @@ echo "Status of pods after kubectl apply"
kubectl get pods -n ${NAMESPACE}

# wait for all deployments to be successful
# note, after we introduce daemonsets, we need to wait their rollout status here too
# note, after we introduce statefulset and daemonsets, we need to wait their rollout status here too
for deployment in $(kubectl get deployments -n ${NAMESPACE} -o name)
do
kubectl rollout status $deployment -n ${NAMESPACE}
done

for statefulset in $(kubectl get statefulset -n ${NAMESPACE} -o name)
do
kubectl rollout status $statefulset -n ${NAMESPACE}
done

echo "Status of pods after rollouts are successful"
kubectl get pods -n ${NAMESPACE}

Expand Down