Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 133 for KubeConfig (0.19 sec)

  1. .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)
  2. cmd/kubeadm/app/phases/addons/proxy/manifests.go

    	KubeProxyConfigMap19 = `
    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: {{ .ProxyConfigMap }}
      namespace: kube-system
      labels:
        app: kube-proxy
    data:
      kubeconfig.conf: |-
        apiVersion: v1
        kind: Config
        clusters:
        - cluster:
            certificate-authority: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
            server: {{ .ControlPlaneEndpoint }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 06:51:57 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/cmd/pilot-discovery/app/cmd.go

    		serverArgs.RegistryOptions.ClusterRegistriesNamespace, "Namespace for ConfigMap which stores clusters configs")
    	c.PersistentFlags().StringVar(&serverArgs.RegistryOptions.KubeConfig, "kubeconfig", "",
    		"Use a Kubernetes configuration file instead of in-cluster configuration")
    	c.PersistentFlags().StringVar(&serverArgs.MeshConfigFile, "meshConfig", "./etc/istio/config/mesh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember_test.go

    			validConfig:   true,
    		},
    		"etcd pod spec without data volume": {
    			podYaml:       etcdPodWithoutDataVolume,
    			expectErr:     true,
    			writeManifest: true,
    			validConfig:   true,
    		},
    		"kubeconfig file doesn't exist": {
    			dataDir:       "/path/to/etcd",
    			podYaml:       etcdPod,
    			expectErr:     false,
    			writeManifest: true,
    			validConfig:   false,
    		},
    	}
    
    	for name, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 03:55:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags_fake.go

    	}
    	return f.clientConfig
    }
    
    // ToRESTConfig implements RESTClientGetter.
    // Returns a REST client configuration based on a provided path
    // to a .kubeconfig file, loading rules, and config flag overrides.
    // Expects the AddFlags method to have been called.
    func (f *TestConfigFlags) ToRESTConfig() (*rest.Config, error) {
    	return f.ToRawKubeConfigLoader().ClientConfig()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. tools/certs/Makefile.k8s.mk

    ##fetch-root-ca:	fetch root CA  and key from a k8s cluster.
    .PHONY: fetch-root-ca
    rawcluster := $(shell kubectl config current-context)
    cluster := $(subst /,-,$(rawcluster))
    pwd := $(shell pwd)
    export KUBECONFIG
    
    fetch-root-ca:
    	@echo "fetching root ca from k8s cluster: "$(cluster)""
    	@mkdir -p $(pwd)/$(cluster)
    	@res=$$(kubectl get secret istio-ca-secret -n $(ISTIO_NAMESPACE) >/dev/null 2>&1; echo $$?); \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top