forked from kubeflow/pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate KFService api docs (kubeflow#381)
* Generate api docs * Add link to readme * Rename html to README.md
- Loading branch information
1 parent
7b03350
commit 98841bb
Showing
4 changed files
with
1,296 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM golang:1.13.1 | ||
|
||
RUN apt-get update && apt-get -y upgrade && apt-get -y install git | ||
|
||
RUN git clone https://github.com/ahmetb/gen-crd-api-reference-docs | ||
|
||
WORKDIR gen-crd-api-reference-docs | ||
|
||
RUN go build | ||
|
||
VOLUME /go/gen-crd-api-reference-docs/apidocs | ||
|
||
ENTRYPOINT ["./gen-crd-api-reference-docs"] | ||
CMD ["-config", "./example-config.json", "-api-dir", "github.com/kubeflow/kfserving/pkg/apis/serving/v1alpha2", "-out-file", "./apidocs/README.md"] |
Oops, something went wrong.