mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-06 11:41:41 +00:00
* fix bugs in using local filepath as markdown filename; fix bugs in parseLocalFile Signed-off-by: Nicola115 <2225992901@qq.com> * ignore control character mismatch between lc.TerraformConfiguration and raw text Signed-off-by: Nicola115 <2225992901@qq.com> * goimports Signed-off-by: Nicola115 <2225992901@qq.com> * store remote and local in MarkDownReference struct Signed-off-by: Nicola115 <2225992901@qq.com> * gofmt Signed-off-by: Nicola115 <2225992901@qq.com> * fix too many argument bugs in generate.go:45 Signed-off-by: Nicola115 <2225992901@qq.com> * fix invalid comment Signed-off-by: Nicola115 <2225992901@qq.com>
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/oam-dev/kubevela/apis/types"
|
|
"github.com/oam-dev/kubevela/pkg/utils/common"
|
|
"github.com/oam-dev/kubevela/references/plugins"
|
|
)
|
|
|
|
func main() {
|
|
ref := &plugins.MarkdownReference{}
|
|
ctx := context.Background()
|
|
path := plugins.BaseRefPath
|
|
|
|
if len(os.Args) == 2 {
|
|
ref.DefinitionName = os.Args[1]
|
|
path = plugins.KubeVelaIOTerraformPath
|
|
}
|
|
|
|
c, err := common.InitBaseRestConfig()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
ref.Remote = &plugins.Remote{Namespace: types.DefaultKubeVelaNS}
|
|
if err := ref.GenerateReferenceDocs(ctx, c, path); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|