Skip to content

Commit

Permalink
envtest: export DefaultKubeAPIServerFlags & make it configurable
Browse files Browse the repository at this point in the history
This change exports DefaultKubeAPIServerFlags, allowing a user to
append the default flags with other custom flags and set it to
Environment.KubeAPIServerFlags.
If KubeAPIServerFlags is not set, DefaultKubeAPIServerFlags is used when
the API server starts.
  • Loading branch information
darkowlzz committed Oct 25, 2018
1 parent 4376e6e commit 2245c64
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions pkg/envtest/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ func defaultAssetPath(binary string) string {

}

// APIServerDefaultArgs are flags necessary to bring up apiserver.
// TODO: create test framework interface to append flag to default flags.
var defaultKubeAPIServerFlags = []string{
// DefaultKubeAPIServerFlags are default flags necessary to bring up apiserver.
var DefaultKubeAPIServerFlags = []string{
"--etcd-servers={{ if .EtcdURL }}{{ .EtcdURL.String }}{{ end }}",
"--cert-dir={{ .CertDir }}",
"--insecure-port={{ if .URL }}{{ .URL.Port }}{{ end }}",
Expand Down Expand Up @@ -92,6 +91,9 @@ type Environment struct {
// may take to stop. It defaults to the KUBEBUILDER_CONTROLPLANE_STOP_TIMEOUT
// environment variable or 20 seconds if unspecified
ControlPlaneStopTimeout time.Duration

// KubeAPIServerFlags is the set of flags passed while starting the api server.
KubeAPIServerFlags []string
}

// Stop stops a running server
Expand All @@ -104,6 +106,11 @@ func (te *Environment) Stop() error {

// Start starts a local Kubernetes server and updates te.ApiserverPort with the port it is listening on
func (te *Environment) Start() (*rest.Config, error) {
// Set default API server flags if not set.
if len(te.KubeAPIServerFlags) == 0 {
te.KubeAPIServerFlags = DefaultKubeAPIServerFlags
}

if te.UseExistingCluster {
if te.Config == nil {
// we want to allow people to pass in their own config, so
Expand All @@ -117,8 +124,7 @@ func (te *Environment) Start() (*rest.Config, error) {
}
} else {
te.ControlPlane = integration.ControlPlane{}
te.ControlPlane.APIServer = &integration.APIServer{Args: defaultKubeAPIServerFlags}

te.ControlPlane.APIServer = &integration.APIServer{Args: te.KubeAPIServerFlags}
if os.Getenv(envKubeAPIServerBin) == "" {
te.ControlPlane.APIServer.Path = defaultAssetPath("kube-apiserver")
}
Expand Down

0 comments on commit 2245c64

Please sign in to comment.