Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for ISTIO_VERSION (0.12 sec)

  1. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. 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)
  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