-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate primaryUserDefinedNetworkBinding FG (#3204)
Have the relevant changes done by default, i.e adding the bindings. Signed-off-by: Or Shoval <[email protected]>
- Loading branch information
Showing
10 changed files
with
4,702 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{{- /* templates */ -}} | ||
{{- define "type-doc-header" }}## {{ .Name }} | ||
|
||
{{ .Doc }} | ||
{{ end -}} | ||
{{- define "table" -}} | ||
| Field | Description | Scheme | Default | Required | | ||
| ----- | ----------- | ------ | -------- |-------- | | ||
{{- range .}} | ||
| {{.Name}} | {{.Doc}} | {{.PrintedType}} | {{.DefaultValue}} | {{.Mandatory}} | | ||
{{- end -}} | ||
{{ end -}} | ||
{{- define "type-doc" }} | ||
{{ template "type-doc-header" . | FirstItem }} | ||
{{ template "table" . | ItemFields }} | ||
|
||
[Back to TOC](#table-of-contents) | ||
{{- end -}} | ||
{{ define "toc-line" }}* [{{ .Name }}](#{{ .Name | ToLower }}){{ end }} | ||
{{- /* the document starts here */ -}} | ||
# API Docs | ||
|
||
This Document documents the types introduced by the hyperconverged-cluster-operator to be consumed by users. | ||
|
||
> Note this document is generated from code comments. When contributing a change to this document please do so by changing the code comments. | ||
|
||
## Table of Contents | ||
{{- range . }} | ||
{{ template "toc-line" . | FirstItem -}} | ||
{{ end -}} | ||
{{ range . }} | ||
{{ template "type-doc" . -}} | ||
{{ end }} |
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
Oops, something went wrong.