Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for clusterName (0.21 sec)

  1. manifests/charts/istiod-remote/values.yaml

          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
          # to properly label proxies
          clusterName: ""
        # Network defines the network this cluster belong to. This name
        # corresponds to the networks in the map of mesh networks.
        network: ""
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

          enabled: false
          # Should be set to the name of the cluster this installation will run in. This is required for sidecar injection
          # to properly label proxies
          clusterName: ""
    
        # Network defines the network this cluster belong to. This name
        # corresponds to the networks in the map of mesh networks.
        network: ""
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    		}, nil
    	}
    	return nil, nil
    }
    
    // clusterOrigin defines an Origin that refers to the cluster
    type clusterOrigin struct{}
    
    func (o clusterOrigin) ClusterName() istiocluster.ID {
    	return "Cluster"
    }
    
    func (o clusterOrigin) String() string {
    	return ""
    }
    
    func (o clusterOrigin) FriendlyName() string {
    	return "Cluster"
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

      while read -r value; do
        CLUSTER_NAMES+=("$value")
      done < <(echo "${KUBE_CLUSTERS}" | jq -r '.cluster_name // .clusterName')
    
      while read -r value; do
        CLUSTER_POD_SUBNETS+=("$value")
      done < <(echo "${KUBE_CLUSTERS}" | jq -r '.pod_subnet // .podSubnet')
    
      while read -r value; do
        CLUSTER_SVC_SUBNETS+=("$value")
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    env: {} # Override for the pod imagePullPolicy imagePullPolicy: "" # Settings for multicluster multiCluster: # The name of the cluster we are installing in. Note this is a user-defined name, which must be consistent # with Istiod configuration. clusterName: "" # meshConfig defines runtime configuration of components. # For ztunnel, only defaultConfig is used, but this is nested under `meshConfig` for consistency with other # components. # TODO: https://github.com/istio/istio/issues/43248 meshConfig:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  6. cmd/admin-handlers.go

    		ci.UsedCapacity = dataUsageInfo.ObjectsTotalSize
    		ci.Info.NoOfBuckets = dataUsageInfo.BucketsCount
    		ci.Info.NoOfObjects = dataUsageInfo.ObjectsTotalCount
    
    		ci.DeploymentID = globalDeploymentID()
    		ci.ClusterName = fmt.Sprintf("%d-servers-%d-disks-%s", ci.Info.NoOfServers, ci.Info.NoOfDrives, ci.Info.MinioVersion)
    
    		select {
    		case resultCh <- ci:
    		case <-ctx.Done():
    			return
    		}
    	}()
    
    	select {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.16.md

        * to ensure backword and forward compat:
        * - SingleStack -v4 (pre v1.16) => BackendPool name == clusterName
        * - SingleStack -v6 => BackendPool name == clusterName (all cluster bootstrap uses this name)
        * DualStack:
        * => IPv4 BackendPool name == clusterName
        * => IPv6 BackendPool name == <clusterName>-IPv6
        * This result into:
        * - clusters moving from IPv4 to duakstack will require no changes
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 11 10:00:57 GMT 2021
    - 345.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    ### Feature
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jan 19 21:05:45 GMT 2022
    - 409K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    - AWS cloud provider supports auto-discovering subnets without any `kubernetes.io/cluster/<clusterName>` tags. It also supports additional service annotation `service.beta.kubernetes.io/aws-load-balancer-subnets` to manually configure the subnets. ([#97431](https://github.com/kubernetes/kubernetes/pull/97431), [@kishorj](https://github.com/kishorj))...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  10. CHANGELOG/CHANGELOG-1.25.md

    - The `metadata.clusterName` field is completely removed. This should not have any user-visible impact. ([#109602](https://github.com/kubernetes/kubernetes/pull/109602), [@lavalamp](https://github.com/lavalamp))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Nov 16 11:30:31 GMT 2023
    - 419K bytes
    - Viewed (0)
Back to top