mirror of https://github.com/kubeflow/website.git
44 lines
1.7 KiB
Bash
Executable File
44 lines
1.7 KiB
Bash
Executable File
# Change this to where gen-crd-api-reference-docs is extracted
|
|
GEN_DOCS=${HOME}/gen-crd-api-reference-docs
|
|
|
|
# Change this to where the website repository is cloned.
|
|
WEBSITE_ROOT=${GOPATH}/src/github.com/kubeflow/website
|
|
|
|
# table style substitutions
|
|
TABLE_SUB='<div class=\"table-responsive\"><table class=\"table table-bordered\">'
|
|
THEAD_SUB='<thead class=\"thead-light\">'
|
|
|
|
# V1beta2
|
|
CONTENT_DIR=${WEBSITE_ROOT}/content/docs/reference/pytorchjob/v1beta2
|
|
|
|
echo "+++
|
|
title = \"PyTorchJob\"
|
|
description = \"Reference documentation for PyTorchJob\"
|
|
weight = 100
|
|
+++" > ${CONTENT_DIR}/pytorch.md
|
|
|
|
${GEN_DOCS}/gen-crd-api-reference-docs -config ${WEBSITE_ROOT}/gen-api-reference/kubeflow-config.json -template-dir ${GEN_DOCS}/template -api-dir "github.com/kubeflow/pytorch-operator/pkg/apis/pytorch/v1beta2" -out-file temp_pytorch.md
|
|
cat temp_pytorch.md >> ${CONTENT_DIR}/pytorch.md
|
|
rm temp_pytorch.md
|
|
|
|
sed 's/<table>/'"$TABLE_SUB"'/g' ${CONTENT_DIR}/pytorch.md > temp_pytorch.md
|
|
sed 's/<thead>/'"$THEAD_SUB"'/g' temp_pytorch.md > ${CONTENT_DIR}/pytorch.md
|
|
rm temp_pytorch.md
|
|
|
|
|
|
# V1
|
|
CONTENT_DIR=${WEBSITE_ROOT}/content/docs/reference/pytorchjob/v1
|
|
|
|
echo "+++
|
|
title = \"PyTorchJob\"
|
|
description = \"Reference documentation for PyTorchJob\"
|
|
weight = 100
|
|
+++" > ${CONTENT_DIR}/pytorch.md
|
|
|
|
${GEN_DOCS}/gen-crd-api-reference-docs -config ${WEBSITE_ROOT}/gen-api-reference/kubeflow-config.json -template-dir ${GEN_DOCS}/template -api-dir "github.com/kubeflow/pytorch-operator/pkg/apis/pytorch/v1" -out-file temp_pytorch.md
|
|
cat temp_pytorch.md >> ${CONTENT_DIR}/pytorch.md
|
|
rm temp_pytorch.md
|
|
|
|
sed 's/<table>/'"$TABLE_SUB"'/g' ${CONTENT_DIR}/pytorch.md > temp_pytorch.md
|
|
sed 's/<thead>/'"$THEAD_SUB"'/g' temp_pytorch.md > ${CONTENT_DIR}/pytorch.md
|
|
rm temp_pytorch.md |