Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 247 for KubeConfig (0.22 sec)

  1. cmd/kubeadm/app/util/config/cluster.go

    	currentContext, exists := config.Contexts[config.CurrentContext]
    	if !exists {
    		return "", errors.Errorf("invalid kubeconfig file %s: missing context %s", fileName, config.CurrentContext)
    	}
    	authInfo, exists := config.AuthInfos[currentContext.AuthInfo]
    	if !exists {
    		return "", errors.Errorf("invalid kubeconfig file %s: missing AuthInfo %s", fileName, currentContext.AuthInfo)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/admission_test.go

    )
    
    const defaultConfigTmplJSON = `
    {
    "imagePolicy": {
    	"kubeConfigFile": "{{ .KubeConfig }}",
    	"allowTTL": {{ .AllowTTL }},
    	"denyTTL": {{ .DenyTTL }},
    	"retryBackoff": {{ .RetryBackoff }},
    	"defaultAllow": {{ .DefaultAllow }}
    }
    }
    `
    
    const defaultConfigTmplYAML = `
    imagePolicy:
      kubeConfigFile: "{{ .KubeConfig }}"
      allowTTL: {{ .AllowTTL }}
      denyTTL: {{ .DenyTTL }}
      retryBackoff: {{ .RetryBackoff }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    			}
    		}
    	}
    	return nil
    }
    
    // configureRemoteConfigForControlPlane allows istiod in the given external control plane to read resources
    // in its remote config cluster by creating the kubeconfig secret pointing to the remote kubeconfig, and the
    // service account required to read the secret.
    func (i *istioImpl) configureRemoteConfigForControlPlane(c cluster.Cluster) error {
    	configCluster := c.Config()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/reset.go

    		klog.V(1).Infof("[reset] Loaded client set from kubeconfig file: %s", opts.kubeconfigPath)
    		initCfg, err = configutil.FetchInitConfigurationFromCluster(client, nil, "reset", false, false)
    		if err != nil {
    			klog.Warningf("[reset] Unable to fetch the kubeadm-config ConfigMap from cluster: %v", err)
    		}
    	} else {
    		klog.V(1).Infof("[reset] Could not obtain a client set from the kubeconfig file: %s", opts.kubeconfigPath)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. cni/pkg/constants/constants.go

    	CNINetworkConfigFile = "cni-network-config-file"
    	CNINetworkConfig     = "cni-network-config"
    	LogLevel             = "log-level"
    	KubeconfigFilename   = "kubecfg-file-name"
    	KubeconfigMode       = "kubeconfig-mode"
    	KubeCAFile           = "kube-ca-file"
    	SkipTLSVerify        = "skip-tls-verify"
    	MonitoringPort       = "monitoring-port"
    	LogUDSAddress        = "log-uds-address"
    	ZtunnelUDSAddress    = "ztunnel-uds-address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. .gitignore

    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    /www/master/npm-debug.log
    /www/master/shared/config/development.json
    
    # Karma output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. cmd/kubemark/app/hollow_node_test.go

    	server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer server.Close()
    
    	kubeconfigPath := filepath.Join(tmpDir, "config.kubeconfig")
    	if err := os.WriteFile(kubeconfigPath, []byte(fmt.Sprintf(fakeKubeconfig, server.URL)), os.FileMode(0600)); err != nil {
    		t.Fatal(err)
    	}
    
    	for morph := range knownMorphs {
    		morph := morph
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tools/certs/common.mk

    #------------------------------------------------------------------------
    # variables: root CA
    ROOTCA_DAYS ?= 3650
    ROOTCA_KEYSZ ?= 4096
    ROOTCA_ORG ?= Istio
    ROOTCA_CN ?= Root CA
    KUBECONFIG ?= $(HOME)/.kube/config
    ISTIO_NAMESPACE ?= istio-system
    # Additional variables are defined in root-ca.conf target below.
    
    #------------------------------------------------------------------------
    # variables: intermediate CA
    INTERMEDIATE_DAYS ?= 3650
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/bugreport/flags.go

    )
    
    func addFlags(cmd *cobra.Command, args *config2.BugReportConfig) {
    	// k8s client config
    	cmd.PersistentFlags().StringVarP(&args.KubeConfigPath, "kubeconfig", "c", "",
    		"Path to kube config.")
    	cmd.PersistentFlags().StringVar(&args.Context, "context", "",
    		"Name of the kubeconfig Context to use.")
    
    	// input config
    	cmd.PersistentFlags().StringVarP(&configFile, "filename", "f", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/config/config.go

    	Authentication apiserver.AuthenticationInfo
    	Authorization  apiserver.AuthorizationInfo
    	SecureServing  *apiserver.SecureServingInfo
    
    	Client             clientset.Interface
    	KubeConfig         *restclient.Config
    	InformerFactory    informers.SharedInformerFactory
    	DynInformerFactory dynamicinformer.DynamicSharedInformerFactory
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top