Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for CLUSTER_ID (0.25 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

            - name: KUBECONFIG
              value: /var/run/secrets/remote/config
            - name: PILOT_TRACE_SAMPLING
              value: "1"
            - name: PILOT_ENABLE_ANALYSIS
              value: "false"
            - name: CLUSTER_ID
              value: Kubernetes
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.memory
            - name: GOMAXPROCS
              valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                value: "{{ .Values.pilot.traceSampling }}"
    {{- end }}
              - name: PILOT_ENABLE_ANALYSIS
                value: "{{ .Values.global.istiod.enableAnalysis }}"
              - name: CLUSTER_ID
                value: "{{ $.Values.global.multiCluster.clusterName | default `Kubernetes` }}"
              - name: GOMEMLIMIT
                valueFrom:
                  resourceFieldRef:
                    resource: limits.memory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      graph_opts.expect_device_spec = true;
      graph_opts.allow_internal_ops = true;
      TF_RETURN_IF_ERROR(
          ConvertGraphDefToGraph(graph_opts, auto_clustered_graph_def, &graph));
    
      // cluster_id -> (operation name -> # of operations)
      const int kNoCluster = -1;
      std::map<int, std::map<string, int>> clusters;
      std::map<int, int> cluster_size;
      int clustered_nodes = 0;
      for (Node* n : graph.op_nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. hack/ginkgo-e2e.sh

      --gce-zone="${ZONE:-}" \
      --gce-region="${REGION:-}" \
      --gce-multizone="${MULTIZONE:-false}" \
      --gke-cluster="${CLUSTER_NAME:-}" \
      --kube-master="${KUBE_MASTER:-}" \
      --cluster-tag="${CLUSTER_ID:-}" \
      --cloud-config-file="${CLOUD_CONFIG:-}" \
      --repo-root="${KUBE_ROOT}" \
      --node-instance-group="${NODE_INSTANCE_GROUP:-}" \
      --prefix="${KUBE_GCE_INSTANCE_PREFIX:-e2e}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
                                    "value": "Kubernetes"
                                  }
                                },
                                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.proto

      repeated string authorization_policies = 16;
    
      WorkloadStatus status = 17;
    
      // The cluster ID that the workload instance belongs to
      string cluster_id = 18;
    
      // The Locality defines information about where a workload is geographically deployed
      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    		}
    
    		c.deleteCluster(secretKey, cluster)
    	}
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    func (c *Controller) deleteCluster(secretKey string, cluster *Cluster) {
    	log.Infof("Deleting cluster_id=%v configured by secret=%v", cluster.ID, secretKey)
    	cluster.Stop()
    	c.handleDelete(cluster.ID)
    	c.cs.Delete(secretKey, cluster.ID)
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/testdata/configdump.json

                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
                                    "value": "Kubernetes"
                                  }
                                },
                                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller.go

    	nodeClusterID := nodeClusterID(node)
    	for _, r := range c.GetRegistries() {
    		if skipSearchingRegistryForProxy(nodeClusterID, r) {
    			log.Debugf("GetProxyServiceTargets(): not searching registry %v: proxy %v CLUSTER_ID is %v",
    				r.Cluster(), node.ID, nodeClusterID)
    			continue
    		}
    
    		instances := r.GetProxyServiceTargets(node)
    		if len(instances) > 0 {
    			out = append(out, instances...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top