
Add support for --container flag, which sets an explicit container name for exec operations. Defaults to `controller`. Signed-off-by: Jacob Henner <code@ventricle.us>
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes 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 conf
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"k8s.io/cli-runtime/pkg/genericclioptions"
|
|
|
|
"k8s.io/ingress-nginx/cmd/plugin/kubectl"
|
|
"k8s.io/ingress-nginx/cmd/plugin/request"
|
|
"k8s.io/ingress-nginx/cmd/plugin/util"
|
|
"k8s.io/ingress-nginx/internal/nginx"
|
|
)
|
|
|
|
// CreateCommand creates and returns this cobra subcommand
|
|
func CreateCommand(flags *genericclioptions.ConfigFlags) *cobra.Command {
|
|
var pod, deployment, selector, container *string
|
|
cmd := &cobra.Command{
|
|
Use: "conf",
|
|
Short: "Inspect the generated nginx.conf",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
host, err := cmd.Flags().GetString("host")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
util.PrintError(conf(flags, host, *pod, *deployment, *selector, *container))
|
|
return nil
|
|
},
|
|
}
|
|
cmd.Flags().String("host", "", "Print just the server block with this hostname")
|
|
pod = util.AddPodFlag(cmd)
|
|
deployment = util.AddDeploymentFlag(cmd)
|
|
selector = util.AddSelectorFlag(cmd)
|
|
container = util.AddContainerFlag(cmd)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func conf(flags *genericclioptions.ConfigFlags, host string, podName string, deployment string, selector string, container string) error {
|
|
pod, err := request.ChoosePod(flags, podName, deployment, selector)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nginxConf, err := kubectl.PodExecString(flags, &pod, container, []string{"/dbg", "conf"})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if host != "" {
|
|
block, err := nginx.GetServerBlock(nginxConf, host)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(strings.TrimRight(strings.Trim(block, " \n"), " \n\t"))
|
|
} else {
|
|
fmt.Print(nginxConf)
|
|
}
|
|
|
|
return nil
|
|
}
|