Prepare for future updates of Go, which may result in some changes in
formatting in GoDoc comments.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-07-25 12:31:30 +02:00
Родитель 8839c52fea
Коммит fb71f3bc8a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 76698F39D527CE8C
5 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -33,7 +33,7 @@ import (
"golang.org/x/oauth2"
)
//go login process, derived from code sample provided by MS at https://github.com/devigned/go-az-cli-stuff
// go login process, derived from code sample provided by MS at https://github.com/devigned/go-az-cli-stuff
const (
clientID = "04b07795-8ddb-461a-bbee-02f9e1bf7b46" // Azure CLI client id
)

Просмотреть файл

@ -285,7 +285,7 @@ func (kc KubeClient) WaitForPodState(ctx context.Context, opts WaitForStatusOpti
return nil
}
//MapPortsToLocalhost runs a port-forwarder daemon process
// MapPortsToLocalhost runs a port-forwarder daemon process
func (kc KubeClient) MapPortsToLocalhost(ctx context.Context, opts PortMappingOptions) error {
stopChannel := make(chan struct{}, 1)
readyChannel := make(chan struct{})

Просмотреть файл

@ -37,7 +37,7 @@ import (
"k8s.io/apimachinery/pkg/runtime"
)
//ConvertToChart convert Kube objects to helm chart
// ConvertToChart convert Kube objects to helm chart
func ConvertToChart(name string, objects map[string]runtime.Object) (*chart.Chart, error) {
files := []*loader.BufferedFile{

Просмотреть файл

@ -39,7 +39,7 @@ const (
clusterIPHeadless = "None"
)
//MapToKubernetesObjects maps compose project to Kubernetes objects
// MapToKubernetesObjects maps compose project to Kubernetes objects
func MapToKubernetesObjects(project *types.Project) (map[string]runtime.Object, error) {
objects := map[string]runtime.Object{}

Просмотреть файл

@ -286,7 +286,7 @@ func GoldenFile(name string) string {
return name + ".golden"
}
//Lines split output into lines
// Lines split output into lines
func Lines(output string) []string {
return strings.Split(strings.TrimSpace(output), "\n")
}