Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for filterMetadata (0.3 sec)

  1. pilot/pkg/networking/util/util_test.go

    				Namespace:        "default",
    				Domain:           "svc.cluster.local",
    				GroupVersionKind: gvk.DestinationRule,
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{},
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"config": {
    								Kind: &structpb.Value_StringValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "metadata": {
                                "filterMetadata": {
                                    "istio": {
                                        "workload": "cert-manager-istio-csr;cert-manager;;;Kubernetes"
                                    }
                                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

          metadata:
            filterMetadata:
              istio:
                workload: coredns;kube-system;;;Kubernetes
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.3
                portValue: 53
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    	}
    
    	if metadata == nil {
    		metadata = &core.Metadata{
    			FilterMetadata: map[string]*structpb.Struct{},
    		}
    	}
    
    	if _, ok := metadata.FilterMetadata[IstioMetadataKey]; !ok {
    		metadata.FilterMetadata[IstioMetadataKey] = &structpb.Struct{
    			Fields: map[string]*structpb.Value{},
    		}
    	}
    
    	metadata.FilterMetadata[IstioMetadataKey].Fields["alpn_override"] = &structpb.Value{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		cluster.Metadata = &core.Metadata{
    			FilterMetadata: map[string]*structpb.Struct{},
    		}
    	}
    	// Create Istio metadata if does not exist yet
    	if _, ok := cluster.Metadata.FilterMetadata[util.IstioMetadataKey]; !ok {
    		cluster.Metadata.FilterMetadata[util.IstioMetadataKey] = &structpb.Struct{
    			Fields: map[string]*structpb.Value{},
    		}
    	}
    	return cluster.Metadata.FilterMetadata[util.IstioMetadataKey]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/endpoint_builder.go

    		}}
    		ep.Metadata.FilterMetadata[util.OriginalDstMetadataKey] = util.BuildTunnelMetadataStruct(address, port)
    		if b.dir != model.TrafficDirectionInboundVIP {
    			// Add TLS metadata matcher to indicate we can use HBONE for this endpoint.
    			// We skip this for service waypoint, which doesn't need to dynamically match mTLS vs HBONE.
    			ep.Metadata.FilterMetadata[util.EnvoyTransportSocketMetadataKey] = &structpb.Struct{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters_test.go

    			// check workload metadata
    			var gotWorkloadMetadata []string
    			for _, llbEndpoints := range filtered {
    				for _, ep := range llbEndpoints.LbEndpoints {
    					metadata := ep.Metadata.FilterMetadata[util.IstioMetadataKey].Fields["workload"].GetStringValue()
    					gotWorkloadMetadata = append(gotWorkloadMetadata, metadata)
    				}
    			}
    			if !slices.Equal(gotWorkloadMetadata, tt.wantWorkloadMetadata) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/http_config.json

                              503
                            ]
                          },
                          "max_grpc_timeout": "0s"
                        },
                        "metadata": {
                          "filter_metadata": {
                            "istio": {
                              "config": "/apis/networking.istio.io/v1alpha3/namespaces/default/virtual-service/bookinfo"
                            }
                          }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top