Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for generateServiceEntryUID (0.17 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    }
    
    // name format: <cluster>/<group>/<kind>/<namespace>/<name></section-name>
    // if the WorkloadEntry is inlined in the ServiceEntry, we may need section name. caller should use generateServiceEntryUID
    func (a *index) generateWorkloadEntryUID(wkEntryNamespace, wkEntryName string) string {
    	return a.ClusterID.String() + "/networking.istio.io/WorkloadEntry/" + wkEntryNamespace + "/" + wkEntryName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			network := a.Network(wle.Address, wle.Labels).String()
    			if wle.Network != "" {
    				network = wle.Network
    			}
    			w := &workloadapi.Workload{
    				Uid:                   a.generateServiceEntryUID(se.Namespace, se.Name, wle.Address),
    				Name:                  se.Name,
    				Namespace:             se.Namespace,
    				Network:               network,
    				ClusterId:             string(a.ClusterID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top