Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewService (0.1 sec)

  1. pkg/quota/v1/install/update_filter.go

    		case schema.GroupResource{Resource: "services"}:
    			oldService := oldObj.(*v1.Service)
    			newService := newObj.(*v1.Service)
    			return core.GetQuotaServiceType(oldService) != core.GetQuotaServiceType(newService)
    		case schema.GroupResource{Resource: "persistentvolumeclaims"}:
    			oldPVC := oldObj.(*v1.PersistentVolumeClaim)
    			newPVC := newObj.(*v1.PersistentVolumeClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/ipvs_linux.go

    	svc, err := toIPVSService(vs)
    	if err != nil {
    		return fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    	return runner.ipvsHandle.NewService(svc)
    }
    
    // UpdateVirtualServer is part of ipvs.Interface.
    func (runner *runner) UpdateVirtualServer(vs *VirtualServer) error {
    	svc, err := toIPVSService(vs)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top