Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for filterMetadata (0.24 sec)

  1. 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)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    		}
    	}
    }
    
    func verifyALPNOverride(t *testing.T, md *core.Metadata, tlsMode networking.ClientTLSSettings_TLSmode) {
    	istio, ok := md.FilterMetadata[util.IstioMetadataKey]
    	if tlsMode == networking.ClientTLSSettings_SIMPLE || tlsMode == networking.ClientTLSSettings_MUTUAL {
    		if !ok {
    			t.Errorf("Istio metadata not found")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. 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)
  4. istioctl/pkg/describe/describe.go

    			return true
    		}
    	}
    
    	return false
    }
    
    // getIstioConfig returns .metadata.filter_metadata.istio.config, err
    func getIstioConfig(metadata *core.Metadata) (string, error) {
    	if metadata != nil {
    		istioConfig := asMyProtoValue(metadata.FilterMetadata[util.IstioMetadataKey]).
    			keyAsString("config")
    		return istioConfig, nil
    	}
    	return "", fmt.Errorf("no istio config")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/testdata/describe/tls_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
    - 8K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                                            },
                                            "health_status": "HEALTHY",
                                            "metadata": {
                                                "filter_metadata": {
                                                    "envoy.transport_socket_match": {
                                                        "tlsMode": "istio"
                                                    },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  7. 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)
  8. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

                 503
                ]
               },
               "cluster_not_found_response_code": "INTERNAL_SERVER_ERROR",
               "max_grpc_timeout": "0s"
              },
              "metadata": {
               "filter_metadata": {
                "istio": {
                 "config": "/apis/networking.istio.io/v1alpha3/namespaces/default/virtual-service/http-0-istio-autogenerated-k8s-gateway"
                }
               }
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

                "retriable_status_codes": [
                 503
                ]
               },
               "max_grpc_timeout": "0s"
              },
              "metadata": {
               "filter_metadata": {
                "istio": {
                 "config": "/apis/networking.istio.io/v1alpha3/namespaces/default/virtual-service/httpbin"
                }
               }
              },
              "decorator": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/testdata/config_dump.json

                      }
                    }
                  }
                },
                "metadata": {
                  "filter_metadata": {
                    "istio": {
                      "services": [
                        {
                          "name": "httpbin",
                          "namespace": "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
Back to top