mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-24 16:41:35 -04:00
@@ -7,22 +7,6 @@ variables:
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: registryAddressEnv
|
||||
path: ocis-pkg/registry/registry.go:42
|
||||
foundincode: true
|
||||
name: registryAddressEnv
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: MICRO_LOG_LEVEL
|
||||
path: ocis-pkg/log/log.go:34
|
||||
foundincode: true
|
||||
name: MICRO_LOG_LEVEL
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: CS3_MACHINE_AUTH_API_KEY
|
||||
path: services/idp/pkg/backends/cs3/bootstrap/cs3.go:77
|
||||
foundincode: true
|
||||
@@ -31,10 +15,18 @@ variables:
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: registryEnv
|
||||
path: ocis-pkg/registry/registry.go:44
|
||||
- rawname: MICRO_LOG_LEVEL
|
||||
path: ocis-pkg/log/log.go:34
|
||||
foundincode: true
|
||||
name: registryEnv
|
||||
name: MICRO_LOG_LEVEL
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: MICRO_LOG_LEVEL
|
||||
path: ocis-pkg/log/log.go:30
|
||||
foundincode: true
|
||||
name: MICRO_LOG_LEVEL
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
@@ -63,10 +55,18 @@ variables:
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: MICRO_LOG_LEVEL
|
||||
path: ocis-pkg/log/log.go:30
|
||||
- rawname: registryAddressEnv
|
||||
path: ocis-pkg/registry/registry.go:42
|
||||
foundincode: true
|
||||
name: MICRO_LOG_LEVEL
|
||||
name: registryAddressEnv
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
do_ignore: false
|
||||
- rawname: registryEnv
|
||||
path: ocis-pkg/registry/registry.go:44
|
||||
foundincode: true
|
||||
name: registryEnv
|
||||
type: ""
|
||||
default_value: ""
|
||||
description: ""
|
||||
|
||||
@@ -8,6 +8,7 @@ import (
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
"text/template"
|
||||
|
||||
@@ -117,6 +118,12 @@ func GetRogueEnvs() {
|
||||
vars.Variables = append(vars.Variables, v)
|
||||
}
|
||||
|
||||
less := func(i, j int) bool {
|
||||
return vars.Variables[i].Name < vars.Variables[j].Name
|
||||
}
|
||||
|
||||
sort.Slice(vars.Variables, less)
|
||||
|
||||
output, err := yaml.Marshal(vars)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
|
||||
4
docs/templates/ADOC_global.tmpl
vendored
4
docs/templates/ADOC_global.tmpl
vendored
@@ -14,13 +14,15 @@
|
||||
{{- if .Ignore }}
|
||||
{{ continue }}
|
||||
{{- end }}
|
||||
|
||||
a| `{{- .Name }}` +
|
||||
a| [subs=-attributes]
|
||||
++{{ .Type }} ++
|
||||
a| [subs=-attributes]
|
||||
++{{.DefaultValue}} ++
|
||||
a| [subs=-attributes]
|
||||
{{.Description}}
|
||||
++{{.Description}} ++
|
||||
a| [subs=-attributes]
|
||||
|
||||
{{- end }}
|
||||
|===
|
||||
|
||||
Reference in New Issue
Block a user