Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for clusterIPs (0.25 sec)

  1. cluster/gce/util.sh

      quoted_dns_server_ip=$(yaml-quote "${DNS_SERVER_IP}")
      quoted_dns_domain=$(yaml-quote "${DNS_DOMAIN}")
      cat <<EOF
    kind: KubeletConfiguration
    apiVersion: kubelet.config.k8s.io/v1beta1
    cgroupRoot: /
    clusterDNS:
      - ${quoted_dns_server_ip}
    clusterDomain: ${quoted_dns_domain}
    readOnlyPort: 10255
    EOF
    
      # Note: ENABLE_MANIFEST_URL is used by GKE.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    // simplest and safest way to have things match.
    //
    // Note that K8S is not required to use JWT tokens - we will fallback to the defaults
    // or require explicit user option for K8S clusters using opaque tokens.
    func detectAuthEnv(jwt string) (*authenticate.JwtPayload, error) {
    	jwtSplit := strings.Split(jwt, ".")
    	if len(jwtSplit) != 3 {
    		return nil, fmt.Errorf("invalid JWT parts: %s", jwt)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
        Clusters operations with the same device assignment id. For each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	TLSServerInfo map[*networking.Server]*TLSServerInfo
    
    	// ContainsAutoPassthroughGateways determines if there are any type AUTO_PASSTHROUGH Gateways, requiring additional
    	// clusters to be sent to the workload
    	ContainsAutoPassthroughGateways bool
    
    	// PortMap defines a mapping of targetPorts to the set of Service ports that reference them
    	PortMap GatewayPortMap
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    	pm "istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/proto/merge"
    	"istio.io/istio/pkg/util/strcase"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// BlackHoleCluster to catch traffic from routes with unresolved clusters. Traffic arriving here goes nowhere.
    	BlackHoleCluster = "BlackHoleCluster"
    	// BlackHole is the name of the virtual host and route name used to block all traffic
    	BlackHole = "block_all"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    	return inst.ServiceName() + "-" + inst.Config().Version
    }
    
    func TestMetadataServer(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		ver, _ := t.Clusters().Default().GetKubernetesVersion()
    		if !strings.Contains(ver.GitVersion, "-gke") {
    			t.Skip("requires GKE cluster")
    		}
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    // If there is an IP, we will set the `loadBalancerIP` type.
    // While there is no defined standard for this in the API yet, it is tracked in https://github.com/kubernetes-sigs/gateway-api/issues/892.
    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    // Currently, the supported options are:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/kubernetes/kubernetes/pull/124503), [@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)
  9. pkg/workloadapi/workload.pb.go

    	// Address represents the addresses the service can be reached at.
    	// There may be multiple addresses for a single service if it resides in multiple networks,
    	// multiple clusters, and/or if it's dual stack (TODO: support dual stack).
    	// For a headless kubernetes service, this list will be empty.
    	Addresses []*NetworkAddress `protobuf:"bytes,4,rep,name=addresses,proto3" json:"addresses,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    A security issue was discovered in Kubernetes where a user that can create pods and persistent volumes on Windows nodes may be able to escalate to admin privileges on those nodes. Kubernetes clusters are only affected if they are using an in-tree storage plugin for Windows nodes.
    
    **Affected Versions**:
      - kubelet >= v1.8.0
    
    **Fixed Versions**:
      - kubelet v1.28.4
      - kubelet v1.27.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top