mirror of
https://github.com/alibaba/higress.git
synced 2026-02-06 23:21:08 +08:00
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
// Copyright (c) 2022 Alibaba Group Holding Ltd.
|
|
//
|
|
// 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 hgctl
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/alibaba/higress/hgctl/cmd/hgctl/config"
|
|
"github.com/spf13/cobra"
|
|
cmdutil "k8s.io/kubectl/pkg/cmd/util"
|
|
)
|
|
|
|
func endpointConfigCmd() *cobra.Command {
|
|
configCmd := &cobra.Command{
|
|
Use: "endpoint <pod-name>",
|
|
Short: "Retrieves endpoint Envoy xDS resources from the specified Higress Gateway Pod",
|
|
Aliases: []string{"e"},
|
|
Long: `Retrieves information about endpoint Envoy xDS resources from the specified Higress Gateway Pod`,
|
|
Example: ` # Retrieve summary about endpoint configuration for a given pod from Envoy.
|
|
hgctl gateway-config endpoint <pod-name> -n <pod-namespace>
|
|
|
|
# Retrieve configuration dump as YAML
|
|
hgctl gateway-config endpoint <pod-name> -n <pod-namespace> -o yaml
|
|
|
|
# Retrieve configuration dump with short syntax
|
|
hgctl gc e <pod-name> -n <pod-namespace>
|
|
`,
|
|
Run: func(c *cobra.Command, args []string) {
|
|
cmdutil.CheckErr(runEndpointConfig(c, args))
|
|
},
|
|
}
|
|
|
|
return configCmd
|
|
}
|
|
|
|
func runEndpointConfig(c *cobra.Command, args []string) error {
|
|
if len(args) != 0 {
|
|
podName = args[0]
|
|
}
|
|
envoyConfig, err := config.GetEnvoyConfig(&config.GetEnvoyConfigOptions{
|
|
PodName: podName,
|
|
PodNamespace: podNamespace,
|
|
BindAddress: bindAddress,
|
|
Output: output,
|
|
EnvoyConfigType: config.EndpointEnvoyConfigType,
|
|
IncludeEds: true,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = fmt.Fprintln(c.OutOrStdout(), string(envoyConfig))
|
|
return err
|
|
}
|