Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for KubeConfig (0.23 sec)

  1. cni/pkg/install/cniconfig.go

    		PluginLogLevel:  cfg.PluginLogLevel,
    		LogUDSAddress:   cfg.LogUDSAddress,
    		CNIEventAddress: cfg.CNIEventAddress,
    		AmbientEnabled:  cfg.AmbientEnabled,
    		Kubernetes: plugin.Kubernetes{
    			Kubeconfig:        filepath.Join(cfg.CNINetDir, cfg.KubeconfigFilename),
    			ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","),
    		},
    	}
    
    	pluginConfig.Name = "istio-cni"
    	pluginConfig.Type = "istio-cni"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    		Title:   "Istio Control",
    		Section: "istioctl CLI",
    		Manual:  "Istio Control",
    	}))
    
    	validateCmd := validate.NewValidateCommand(ctx)
    	hideInheritedFlags(validateCmd, "kubeconfig")
    	rootCmd.AddCommand(validateCmd)
    
    	rootCmd.AddCommand(optionsCommand(rootCmd))
    
    	// BFS applies the flag error function to all subcommands
    	seenCommands := make(map[*cobra.Command]bool)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager.go

    	rootClientBuilder = clientbuilder.SimpleControllerClientBuilder{
    		ClientConfig: c.Kubeconfig,
    	}
    	if c.ComponentConfig.KubeCloudShared.UseServiceAccountCredentials {
    		if len(c.ComponentConfig.SAController.ServiceAccountKeyFile) == 0 {
    			// It's possible another controller process is creating the tokens for us.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/common.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	dryrunutil "k8s.io/kubernetes/cmd/kubeadm/app/util/dryrun"
    	kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    // enforceRequirements verifies that it's okay to upgrade and then returns the variables needed for the rest of the procedure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server_test.go

    					GRPCAddr:       ":0",
    					HTTPSAddr:      ":0",
    					TLSOptions: TLSOptions{
    						CipherSuits: c.serverCipherSuites,
    					},
    				}
    				p.RegistryOptions = RegistryOptions{
    					KubeConfig: "config",
    					FileDir:    configDir,
    				}
    
    				// Include all of the default plugins
    				p.ShutdownDuration = 1 * time.Millisecond
    			})
    
    			g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    	UnsafeSkipCAVerification bool
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string
    }
    
    // GetControlPlaneImageRepository returns name of image repository
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	UnsafeSkipCAVerification bool `json:"unsafeSkipCAVerification,omitempty"`
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string `json:"kubeConfigPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. cni/test/install_cni.go

    			K8sServicePort:        "443",
    			K8sServiceHost:        "10.110.0.1",
    			MonitoringPort:        0,
    			LogUDSAddress:         "",
    			KubeconfigFilename:    "ZZZ-istio-cni-kubeconfig",
    			CNINetDir:             "/etc/cni/net.d",
    			ChainedCNIPlugin:      chainedCNIPlugin,
    			PluginLogLevel:        "debug",
    			ExcludeNamespaces:     "istio-system",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    	InsecureKubeConfigOptions = func() sets.String {
    		v := env.Register(
    			"PILOT_INSECURE_MULTICLUSTER_KUBECONFIG_OPTIONS",
    			"",
    			"Comma separated list of potentially insecure kubeconfig authentication options that are allowed for multicluster authentication."+
    				"Support values: all authProviders (`gcp`, `azure`, `exec`, `openstack`), "+
    				"`clientKey`, `clientCertificate`, `tokenFile`, and `exec`.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    		cc.Client,
    		cc.InformerFactory,
    		cc.DynInformerFactory,
    		recorderFactory,
    		scheduler.WithComponentConfigVersion(cc.ComponentConfig.TypeMeta.APIVersion),
    		scheduler.WithKubeConfig(cc.KubeConfig),
    		scheduler.WithProfiles(cc.ComponentConfig.Profiles...),
    		scheduler.WithPercentageOfNodesToScore(cc.ComponentConfig.PercentageOfNodesToScore),
    		scheduler.WithFrameworkOutOfTreeRegistry(outOfTreeRegistry),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top