mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 03:09:33 -06:00
54 lines
986 B
Cheetah
54 lines
986 B
Cheetah
// set the attribute to true or leave empty, true without any quotes.
|
|
|
|
:show-deprecation: {{ .HasDeprecations }}
|
|
|
|
ifeval::[{show-deprecation} == true]
|
|
|
|
[[deprecation-note]]
|
|
[caption=]
|
|
.Deprecation notes for the {{ .ExtensionName }} service
|
|
[width="100%",cols="~,~,~,~",options="header"]
|
|
|===
|
|
| Deprecation Info
|
|
| Deprecation Version
|
|
| Removal Version
|
|
| Deprecation Replacment
|
|
|
|
{{- range .Deprecations }}
|
|
|
|
| {{ .DeprecationInfo }}
|
|
| {{ .DeprecationVersion }}
|
|
| {{ .RemovalVersion }}
|
|
| {{ .DeprecationReplacement }}
|
|
{{- end }}
|
|
|===
|
|
|
|
endif::[]
|
|
|
|
[caption=]
|
|
.Environment variables for the {{ .ExtensionName }} service
|
|
[width="100%",cols="~,~,~,~",options="header"]
|
|
|===
|
|
| Name
|
|
| Type
|
|
| Default Value
|
|
| Description
|
|
|
|
{{- range .Fields}}
|
|
|
|
a| {{- range $i, $value := .EnvVars }}{{- if $i }} +
|
|
{{ end -}}
|
|
`{{- $value }}`
|
|
{{- end }} +
|
|
{{ .DeprecationLink }}
|
|
a| [subs=-attributes]
|
|
++{{.Type}} ++
|
|
a| [subs=-attributes]
|
|
++{{.DefaultValue}} ++
|
|
a| [subs=-attributes]
|
|
{{.Description}}
|
|
|
|
{{- end }}
|
|
|===
|
|
|