Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for friends (2.66 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/workload.go

    type WorkloadFilter struct {
    	Address   string
    	Node      string
    	Verbose   bool
    	Namespace string
    }
    
    // Verify returns true if the passed workload matches the filter fields
    func (wf *WorkloadFilter) Verify(workload *ZtunnelWorkload) bool {
    	if wf.Address == "" && wf.Node == "" && wf.Namespace == "" {
    		return true
    	}
    
    	if wf.Namespace != "" {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	// errors if the requested configmap does not exist in the given namespace
    	if err != nil {
    		return nil, fmt.Errorf("configmap %s was not found in namespace %s: %v", istioCM, istioNamespace, err)
    	}
    	// fill some fields before applying the yaml to prevent errors later
    	meshConfig := &meshconfig.MeshConfig{
    		DefaultConfig: &meshconfig.ProxyConfig{
    			ProxyMetadata: map[string]string{},
    		},
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top