Skip to content

Commit 7342f2b

Browse files
authored
docs(KEP): Propose a new pipeline run workspace feature (#11875)
* Propose a new pipeline run workspace feature Signed-off-by: mprahl <[email protected]> * Fix update-toc.sh and fix outdated ToCs Signed-off-by: mprahl <[email protected]> --------- Signed-off-by: mprahl <[email protected]>
1 parent 4f09f01 commit 7342f2b

File tree

3 files changed

+621
-5
lines changed

3 files changed

+621
-5
lines changed

hack/update-toc.sh

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ set -o pipefail
2121
# cd to the root path
2222
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
2323
cd "${ROOT}"
24+
PATH="${PATH}:${ROOT}/bin:$(go env GOPATH)/bin"
2425

2526
echo "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
)

proposals/11551-kubernetes-native-api/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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)
@@ -16,6 +15,10 @@
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)
@@ -30,7 +33,8 @@
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

0 commit comments

Comments
 (0)