Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for filter_metadata (0.2 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.json

                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "metadata": {
                                "filterMetadata": {
                                    "istio": {
                                        "workload": "istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes"
                                    }
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.yaml

            address:
              socketAddress:
                address: 10.244.0.176
                portValue: 8080
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
                workload: istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes
        loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                                "healthCheckConfig": {}
                            },
                            "healthStatus": "HEALTHY",
                            "metadata": {
                                "filterMetadata": {
                                    "istio": {
                                        "workload": "cert-manager-istio-csr;cert-manager;;;Kubernetes"
                                    }
                                }
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 40.4K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/route.go

    			ret = append(ret, h)
    		}
    	}
    	return ret
    }
    
    func describeManagement(metadata *core.Metadata) string {
    	if metadata == nil {
    		return ""
    	}
    	istioMetadata, ok := metadata.FilterMetadata[pilot_util.IstioMetadataKey]
    	if !ok {
    		return ""
    	}
    	config, ok := istioMetadata.Fields["config"]
    	if !ok {
    		return ""
    	}
    	return renderConfig(config.GetStringValue())
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top