File tree Expand file tree Collapse file tree 3 files changed +621
-5
lines changed
11551-kubernetes-native-api Expand file tree Collapse file tree 3 files changed +621
-5
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ set -o pipefail
2121# cd to the root path
2222ROOT=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /.." && pwd -P) "
2323cd " ${ROOT} "
24+ PATH=" ${PATH} :${ROOT} /bin:$( go env GOPATH) /bin"
2425
2526echo " Updating tables of contents if necessary..."
2627# Update tables of contents if necessary.
27- find keps -name ' *.md' \
28- | grep -Fxvf hack/.notableofcontents \
29- | xargs " ${ROOT} /bin/mdtoc" --inplace --max-depth=5 || (
28+ find proposals -mindepth 2 -name ' *.md' \
29+ | xargs mdtoc --inplace --max-depth=5 || (
3030 echo " Failed generating TOC. If this failed silently and you are on mac, try 'brew install grep'"
3131 exit 1
3232 )
Original file line number Diff line number Diff line change 11# KEP-11551: Introducing a Kubernetes Native API for Pipelines and Pipeline Versions
22
33<!-- toc -->
4-
54- [ Summary] ( #summary )
65- [ Motivation] ( #motivation )
76 - [ Goals] ( #goals )
1615 - [ Migration] ( #migration )
1716- [ Design Details] ( #design-details )
1817 - [ Custom Resource Definitions] ( #custom-resource-definitions )
18+ - [ Go Types] ( #go-types )
19+ - [ Pipelines] ( #pipelines )
20+ - [ Pipeline Versions] ( #pipeline-versions )
21+ - [ Anything Type] ( #anything-type )
1922 - [ Kubeflow Pipelines API Server] ( #kubeflow-pipelines-api-server )
2023 - [ Webhooks] ( #webhooks )
2124 - [ Validating Webhook] ( #validating-webhook )
3033- [ Alternatives] ( #alternatives )
3134 - [ Sync from Kubernetes to the Database] ( #sync-from-kubernetes-to-the-database )
3235 - [ A Kubernetes Aggregation Layer API Server] ( #a-kubernetes-aggregation-layer-api-server )
33- <!-- /toc -->
36+ - [ Use Argo Workflows Directly] ( #use-argo-workflows-directly )
37+ <!-- /toc -->
3438
3539## Summary
3640
You can’t perform that action at this time.
0 commit comments