Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for ISTIO_VERSION (0.12 sec)

  1. pkg/adsc/adsc.go

    	}
    	if config.Meta == nil {
    		n.Metadata = &pstruct.Struct{
    			Fields: map[string]*pstruct.Value{
    				"ISTIO_VERSION": {Kind: &pstruct.Value_StringValue{StringValue: "65536.65536.65536"}},
    			},
    		}
    	} else {
    		n.Metadata = config.Meta
    		if config.Meta.Fields["ISTIO_VERSION"] == nil {
    			config.Meta.Fields["ISTIO_VERSION"] = &pstruct.Value{Kind: &pstruct.Value_StringValue{StringValue: "65536.65536.65536"}}
    		}
    	}
    	return n
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds_sh_test.go

    	t.Helper()
    	ads := s.ConnectADS().WithID(sidecarID)
    
    	metadata := &structpb.Struct{Fields: map[string]*structpb.Value{
    		"ISTIO_VERSION": {Kind: &structpb.Value_StringValue{StringValue: "1.3"}},
    		"NETWORK":       {Kind: &structpb.Value_StringValue{StringValue: network}},
    	}}
    
    	ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    		Node: &core.Node{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

              "id": "waypoint~192.168.252.229~httpbin-istio-waypoint-58f646c5ff-dbfkz.default~default.svc.cluster.local",
              "metadata": {
                "ISTIO_PROXY_SHA": "ee85c5f28702f00621aed895915fca565796b9e4",
                "ISTIO_VERSION": "1.21.0-1226",
                "metadata": {
                  "build.type": "RELEASE",
                  "build.label": "dev",
                  "revision.sha": "ee85c5f28702f00621aed895915fca565796b9e4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/instances_test.go

    			option: option.NodeMetadata(&model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    					IstioVersion: "fake",
    				},
    			}, map[string]any{
    				"key": "value",
    			}),
    			expected: "{\"ISTIO_VERSION\":\"fake\",\"key\":\"value\"}",
    		},
    		{
    			testName: "discovery address",
    			key:      "discovery_address",
    			option:   option.DiscoveryAddress("fake"),
    			expected: "fake",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	// this field should be preferred if it is present.
    	ProxyConfig *NodeMetaProxyConfig `json:"PROXY_CONFIG,omitempty"`
    
    	// IstioVersion specifies the Istio version associated with the proxy
    	IstioVersion string `json:"ISTIO_VERSION,omitempty"`
    
    	// IstioRevision specifies the Istio revision associated with the proxy.
    	// Mostly used when istiod requests the upstream.
    	IstioRevision string `json:"ISTIO_REVISION,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    	ProxyVersion         string         `json:"proxy_version,omitempty"`
    	IstioVersion         string         `json:"istio_version,omitempty"`
    	ClusterSent          string         `json:"cluster_sent,omitempty"`
    	ClusterAcked         string         `json:"cluster_acked,omitempty"`
    	ListenerSent         string         `json:"listener_sent,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top