Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for static_clusters (0.21 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

            }
          },
          "last_updated": "2023-12-26T05:57:09.894Z"
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.ClustersConfigDump",
          "version_info": "2023-12-26T05:56:10Z/3",
          "static_clusters": [
            {
              "cluster": {
                "@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster",
                "name": "agent",
                "type": "STATIC",
                "connect_timeout": "0.250s",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/envoy/configdump/cluster.go

    			err = c.Cluster.UnmarshalTo(clusterTyped)
    			if err != nil {
    				return nil, err
    			}
    			clusters = append(clusters, clusterTyped)
    		}
    	}
    	for _, c := range clusterDump.StaticClusters {
    		if c.Cluster != nil {
    			clusterTyped := &cluster.Cluster{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			c.Cluster.TypeUrl = v3.ClusterType
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 5.9K bytes
    - Viewed (0)
Back to top