Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 17.1K bytes
    - Viewed (0)
  2. 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")
    }
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K 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