Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 312 for clustername (0.17 sec)

  1. istioctl/pkg/describe/describe.go

    			if ss[1] == svc.ObjectMeta.Name && ss[2] == svc.ObjectMeta.Namespace {
    				return true
    			}
    		}
    	}
    
    	clusterName := ""
    	switch cs := vhRoute.GetRoute().GetClusterSpecifier().(type) {
    	case *route.RouteAction_Cluster:
    		clusterName = cs.Cluster
    	case *route.RouteAction_WeightedClusters:
    		clusterName = cs.WeightedClusters.Clusters[0].GetName()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. pilot/test/xdstest/validate.go

    	}
    }
    
    func ValidateClusterLoadAssignment(t testing.TB, l *endpoint.ClusterLoadAssignment) {
    	if err := l.Validate(); err != nil {
    		t.Errorf("cluster load assignment %v is invalid: %v", l.ClusterName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  valueFrom:
                    resourceFieldRef:
                      resource: limits.cpu
                - name: ISTIO_META_CLUSTER_ID
                  value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
                - name: ISTIO_META_NODE_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: spec.nodeName
                - name: ISTIO_META_INTERCEPTION_MODE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// FeatureGates enabled by the user.
    	// +optional
    	FeatureGates map[string]bool `json:"featureGates,omitempty"`
    
    	// The cluster name
    	// +optional
    	ClusterName string `json:"clusterName,omitempty"`
    }
    
    // ControlPlaneComponent holds settings common to control plane component of the cluster
    type ControlPlaneComponent struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    		return err
    	}
    	out.CertificatesDir = in.CertificatesDir
    	out.ImageRepository = in.ImageRepository
    	out.FeatureGates = *(*map[string]bool)(unsafe.Pointer(&in.FeatureGates))
    	out.ClusterName = in.ClusterName
    	out.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmType(in.EncryptionAlgorithm)
    	out.CertificateValidityPeriod = (*v1.Duration)(unsafe.Pointer(in.CertificateValidityPeriod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/local/istiod_analyze.go

    // It functions like the same as AddSource, but it adds the source to the specified cluster.
    func (sa *IstiodAnalyzer) AddSourceForCluster(src model.ConfigStoreController, clusterName cluster.ID) {
    	sa.multiClusterStores[clusterName] = src
    }
    
    // CollectionReporterFn is a hook function called whenever a collection is accessed through the AnalyzingDistributor's context
    type CollectionReporterFn func(config.GroupVersionKind)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

            {{- end}}
            ]
        - name: ISTIO_META_APP_CONTAINERS
          value: "{{ $containers | join "," }}"
        - name: ISTIO_META_CLUSTER_ID
          value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
        - name: ISTIO_META_NODE_NAME
          valueFrom:
            fieldRef:
              fieldPath: spec.nodeName
        {{- if .Values.global.network }}
        - name: ISTIO_META_NETWORK
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/README.md

                c.Report(gvk.VirtualService, msg)
            }
        }
    }
    ```
    
    If you are writing a multi-cluster analyzer, you can obtain the cluster name from the resource metadata:
    
    ```go
    clusterID := r.Origin.ClusterName()
    ```
    
    ### 2. Add the Analyzer to All()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/config.go

    	return []option.Instance{option.Region(l.Region), option.Zone(l.Zone), option.SubZone(l.SubZone)}
    }
    
    func getServiceCluster(metadata *model.BootstrapNodeMetadata) string {
    	switch name := metadata.ProxyConfig.ClusterName.(type) {
    	case *meshAPI.ProxyConfig_ServiceCluster:
    		return serviceClusterOrDefault(name.ServiceCluster, metadata)
    
    	case *meshAPI.ProxyConfig_TracingServiceName_:
    		workloadName := metadata.WorkloadName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pkg/config/mesh/mesh.go

    	// TODO: include revision based on REVISION env
    	// TODO: set default namespace based on POD_NAMESPACE env
    	return &meshconfig.ProxyConfig{
    		ConfigPath:               constants.ConfigPathDir,
    		ClusterName:              &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: constants.ServiceClusterName},
    		DrainDuration:            durationpb.New(45 * time.Second),
    		TerminationDrainDuration: durationpb.New(5 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top