Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for KubeConfig (0.32 sec)

  1. hack/local-up-cluster.sh

        ${CONTROLPLANE_SUDO} cp "${CERT_DIR}/admin.kubeconfig" "${CERT_DIR}/admin-kube-aggregator.kubeconfig"
        ${CONTROLPLANE_SUDO} chown -R "$(whoami)" "${CERT_DIR}"
        ${KUBECTL} config set-cluster local-up-cluster --kubeconfig="${CERT_DIR}/admin-kube-aggregator.kubeconfig" --server="https://${API_HOST_IP}:31090"
        echo "use 'kubectl --kubeconfig=${CERT_DIR}/admin-kube-aggregator.kubeconfig' to use the aggregated API server"
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        return
      }
    
      $kubeconfig = Get-InstanceMetadataAttribute 'kubeconfig'
      if ($kubeconfig -eq $null) {
        Log-Output `
            "kubeconfig metadata key not found, can't write ${env:KUBECONFIG}" `
            -Fatal
      }
      Set-Content ${env:KUBECONFIG} $kubeconfig
      Log-Output ("kubelet kubeconfig from metadata (non-bootstrap):`n" +
                  "$(Get-Content -Raw ${env:KUBECONFIG})")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    		// 3. If the client provides both and the kubeconfig is valid, we must ignore the bootstrap
    		//    kubeconfig.
    		// 4. If the client provides both and the kubeconfig is expired or otherwise invalid, we must
    		//    replace the kubeconfig with a new file that points to the cert dir
    		//
    		// The desired configuration for bootstrapping is to use a bootstrap kubeconfig and to have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	return func(o *frameworkOptions) {
    		o.clientSet = clientSet
    	}
    }
    
    // WithKubeConfig sets kubeConfig for the scheduling frameworkImpl.
    func WithKubeConfig(kubeConfig *restclient.Config) Option {
    	return func(o *frameworkOptions) {
    		o.kubeConfig = kubeConfig
    	}
    }
    
    // WithEventRecorder sets clientSet for the scheduling frameworkImpl.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	"--horizontal-pod-autoscaler-initial-readiness-delay=50s",
    	"--http2-max-streams-per-connection=47",
    	"--kube-api-burst=100",
    	"--kube-api-content-type=application/json",
    	"--kube-api-qps=50.0",
    	"--kubeconfig=/kubeconfig",
    	"--large-cluster-size-threshold=100",
    	"--leader-elect=false",
    	"--leader-elect-lease-duration=30s",
    	"--leader-elect-renew-deadline=15s",
    	"--leader-elect-resource-lock=configmap",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			Result: simulation.Result{
    				ClusterMatched: fmt.Sprintf("outbound|%d||headless.default.svc.cluster.local", call.Port),
    			},
    		})
    	}
    	runSimulationTest(t, nil, xds.FakeOptions{}, simulationTest{
    		kubeConfig: `apiVersion: v1
    kind: Service
    metadata:
      name: headless
      namespace: default
    spec:
      clusterIP: None
      selector:
        app: headless
      ports:` + ports + `
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StructuredAuthorizationConfiguration, true)
    
    	badKubeConfigFile := "../some/relative/path/kubeconfig"
    
    	tempKubeConfigFile, err := os.CreateTemp("/tmp", "kubeconfig")
    	if err != nil {
    		t.Fatalf("failed to set up temp file: %v", err)
    	}
    	tempKubeConfigFilePath := tempKubeConfigFile.Name()
    	defer os.Remove(tempKubeConfigFilePath)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pilot/pkg/model/kstatus"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	kubeconfig "istio.io/istio/pkg/config/gateway/kube"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/ptr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: fixed a bug where the PublicKeysECDSA feature gate was not respected when generating kubeconfig files. ([#125388](https://github.com/kubernetes/kubernetes/pull/125388), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top