Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 192 for KubeConfig (1.41 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	//   SubjectAccessReview API hosted by kube-apiserver. This mode is not
    	//   allowed for kube-apiserver.
    	Type string
    
    	// Path to KubeConfigFile for connection info
    	// Required, if connectionInfo.Type is KubeConfig
    	KubeConfigFile *string
    }
    
    type WebhookMatchCondition struct {
    	// expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. 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)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  path: istio-token
          - name: cacerts
            secret:
              optional: true
              secretName: cacerts
          - name: istio-kubeconfig
            secret:
              optional: true
              secretName: istio-kubeconfig
          - name: istio-csr-dns-cert
            secret:
              optional: true
              secretName: istiod-tls
          - configMap:
              defaultMode: 420
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/apis/config/types.go

    	Parallelism int32
    
    	// LeaderElection defines the configuration of leader election client.
    	LeaderElection componentbaseconfig.LeaderElectionConfiguration
    
    	// ClientConnection specifies the kubeconfig file and client connection
    	// settings for the proxy server to use when communicating with the apiserver.
    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    func (m *mockV1beta1Service) Deny()               { m.allow = false }
    func (m *mockV1beta1Service) HTTPStatusCode() int { return m.statusCode }
    
    // newV1beta1Authorizer creates a temporary kubeconfig file from the provided arguments and attempts to load
    // a new WebhookAuthorizer from it.
    func newV1beta1Authorizer(callbackURL string, clientCert, clientKey, ca []byte, cacheTime time.Duration) (*WebhookAuthorizer, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/util/config/cluster_test.go

    			}
    
    			kubeconfigPath := filepath.Join(tmpdir, kubeadmconstants.KubeletKubeConfigFileName)
    			err := os.WriteFile(kubeconfigPath, rt.kubeconfigContent, 0644)
    			if err != nil {
    				t.Errorf("Couldn't create kubeconfig: %v", err)
    				return
    			}
    
    			name, err := getNodeNameFromKubeletConfig(kubeconfigPath)
    			if rt.expectedError != (err != nil) {
    				t.Errorf("unexpected return err from getNodeRegistration: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// RecommendedOptions.CoreAPI.ApplyTo called by RecommendedOptions.ApplyTo. It uses an in-cluster client config
    	// by default, or the kubeconfig given with kubeconfig command line flag.
    	SharedInformerFactory informers.SharedInformerFactory
    
    	// ClientConfig holds the kubernetes client configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. cluster/gce/config-default.sh

    # Their values can be overridden for more granular control of the proxy.
    
    # Optional: Whether to do the setup for the konnectivity service
    # Includes setting up kubeconfig, tokens, egress files, and firewall rules
    export PREPARE_KONNECTIVITY_SERVICE="${KUBE_ENABLE_KONNECTIVITY_SERVICE:-true}"
    # Optional: Whether to use konnectivity network proxy for all egress from apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top