Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for ISTIO_VERSION (0.23 sec)

  1. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_inclusion_golden.json

    wnstream_rq_4xx,downstream_rq_5xx,downstream_rq_time,downstream_cx_tx_bytes_total,downstream_cx_rx_bytes_total,downstream_cx_total"},"ENVOY_PROMETHEUS_PORT":15090,"ENVOY_STATUS_PORT":15021,"INSTANCE_IPS":"10.3.3.3,10.4.4.4,10.5.5.5,10.6.6.6","ISTIO_VERSION":"binary-1.0","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/stats_inclusion","customConfi...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/configdump.go

    	}
    	return "", fmt.Errorf("can not find ROOTCA from secret")
    }
    
    func (c *ConfigWriter) getIstioVersionInfo(bootstrapDump *adminv3.BootstrapConfigDump) (version, sha string) {
    	const (
    		istioVersionKey  = "ISTIO_VERSION"
    		istioProxyShaKey = "ISTIO_PROXY_SHA"
    	)
    
    	md := bootstrapDump.GetBootstrap().GetNode().GetMetadata().GetFields()
    
    	if versionPB, ok := md[istioVersionKey]; ok {
    		version = versionPB.GetStringValue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/stats_compression_brotli_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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top