// Whether configuration for accessing federation member clusters should be sourced from the host cluster
FederationConfigFromClusterbool
// Indicates what path the kubernetes-anywhere is installed on
KubernetesAnywherePathstring
// Viper-only parameters. These will in time replace all flags.
// Example: Create a file 'e2e.json' with the following:
...
...
@@ -201,6 +204,7 @@ func RegisterCommonFlags() {
flag.StringVar(&TestContext.ContainerRuntimeEndpoint,"container-runtime-endpoint","","The container runtime endpoint of cluster VM instances.")
flag.StringVar(&TestContext.ImageServiceEndpoint,"image-service-endpoint","","The image service endpoint of cluster VM instances.")
flag.StringVar(&TestContext.DockershimCheckpointDir,"dockershim-checkpoint-dir","/var/lib/dockershim/sandbox","The directory for dockershim to store sandbox checkpoints.")
flag.StringVar(&TestContext.KubernetesAnywherePath,"kubernetes-anywhere-path","/workspace/kubernetes-anywhere","Which directory kubernetes-anywhere is installed to.")
}
// Register flags specific to the cluster e2e test suite.