Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for KubeConfig (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		}
    	}
    
    	// if controller-manager, renew the certificate embedded in the controller-manager kubeConfig file
    	if component == constants.KubeControllerManager {
    		certificates = []string{
    			constants.ControllerManagerKubeConfigFileName,
    		}
    	}
    
    	// if scheduler, renew the certificate embedded in the scheduler kubeConfig file
    	if component == constants.KubeScheduler {
    		certificates = []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/types.go

    	metav1.TypeMeta
    
    	// featureGates is a map of feature names to bools that enable or disable alpha/experimental features.
    	FeatureGates map[string]bool
    
    	// clientConnection specifies the kubeconfig file and client connection settings for the proxy
    	// server to use when communicating with the apiserver.
    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    	// logging specifies the options of logging.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server.go

    			}
    			if len(meshConfig.ConfigSources) == 0 && args.RegistryOptions.KubeConfig != "" {
    				hasK8SConfigStore = true
    			}
    			for _, cs := range meshConfig.ConfigSources {
    				if cs.Address == string(Kubernetes)+"://" {
    					hasK8SConfigStore = true
    					break
    				}
    			}
    		} else if args.RegistryOptions.KubeConfig != "" {
    			hasK8SConfigStore = true
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/token.go

    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    			kubeConfigFile = cmdutil.GetKubeConfigPath(kubeConfigFile)
    			client, err := cmdutil.GetClientSet(kubeConfigFile, dryRun)
    			if err != nil {
    				return err
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	// The return value indicates if the pod is waiting or not.
    	RejectWaitingPod(uid types.UID) bool
    
    	// ClientSet returns a kubernetes clientSet.
    	ClientSet() clientset.Interface
    
    	// KubeConfig returns the raw kube config.
    	KubeConfig() *restclient.Config
    
    	// EventRecorder returns an event recorder.
    	EventRecorder() events.EventRecorder
    
    	SharedInformerFactory() informers.SharedInformerFactory
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top