Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for InfoS (0.09 sec)

  1. pkg/proxy/ipvs/ipset.go

    		// ipv4 names are not altered to minimize the risk for
    		// problems on upgrades.
    		if strings.HasPrefix(name, "KUBE-") {
    			name = strings.Replace(name, "KUBE-", "KUBE-6-", 1)
    			if len(name) > 31 {
    				klog.InfoS("Ipset name truncated", "ipSetName", name, "truncatedName", name[:31])
    				name = name[:31]
    			}
    		}
    	}
    	set := &IPSet{
    		IPSet: utilipset.IPSet{
    			Name:       name,
    			SetType:    setType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. pkg/proxy/topology.go

    	if !ok || zone == "" {
    		klog.V(2).InfoS("Skipping topology aware endpoint filtering since node is missing label", "label", v1.LabelTopologyZone)
    		return false
    	}
    
    	hasEndpointForZone := false
    	for _, endpoint := range endpoints {
    		if !endpoint.IsReady() {
    			continue
    		}
    		if endpoint.ZoneHints().Len() == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    func (c *DynamicFileCAContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/io/fs/glob.go

    // New matches are added in lexicographical order.
    func glob(fs FS, dir, pattern string, matches []string) (m []string, e error) {
    	m = matches
    	infos, err := ReadDir(fs, dir)
    	if err != nil {
    		return // ignore I/O error
    	}
    
    	for _, info := range infos {
    		n := info.Name()
    		matched, err := path.Match(pattern, n)
    		if err != nil {
    			return m, err
    		}
    		if matched {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils.go

    	if !helper.IsServiceIPSet(service) {
    		klog.V(3).InfoS("Skipping service due to cluster IP", "service", klog.KObj(service), "clusterIP", service.Spec.ClusterIP)
    		return true
    	}
    	// Even if ClusterIP is set, ServiceTypeExternalName services don't get proxied
    	if service.Spec.Type == v1.ServiceTypeExternalName {
    		klog.V(3).InfoS("Skipping service due to Type=ExternalName", "service", klog.KObj(service))
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/topology_manager.go

    	if topologyPolicyName == PolicyNone {
    		klog.InfoS("Creating topology manager with none policy")
    		return &manager{scope: NewNoneScope()}, nil
    	}
    
    	opts, err := NewPolicyOptions(topologyPolicyOptions)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. pkg/kubelet/config/common.go

    		klog.V(5).InfoS("Generated UID", "pod", klog.KObj(pod), "podUID", pod.UID, "source", source)
    	}
    
    	pod.Name = generatePodName(pod.Name, nodeName)
    	klog.V(5).InfoS("Generated pod name", "pod", klog.KObj(pod), "podUID", pod.UID, "source", source)
    
    	if pod.Namespace == "" {
    		pod.Namespace = metav1.NamespaceDefault
    	}
    	klog.V(5).InfoS("Set namespace for pod", "pod", klog.KObj(pod), "source", source)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    			if !ok {
    				return
    			}
    			klog.InfoS("Dropping all cache entries for signer", "signerName", ctb.Spec.SignerName)
    			m.dropCacheFor(ctb)
    		},
    		UpdateFunc: func(old, new any) {
    			ctb, ok := new.(*certificatesv1alpha1.ClusterTrustBundle)
    			if !ok {
    				return
    			}
    			klog.InfoS("Dropping cache for ClusterTrustBundle", "signerName", ctb.Spec.SignerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_network_linux.go

    		if kl.syncIPTablesRules(iptClient) {
    			klog.InfoS("Initialized iptables rules.", "protocol", iptClient.Protocol())
    			go iptClient.Monitor(
    				utiliptables.Chain("KUBE-KUBELET-CANARY"),
    				[]utiliptables.Table{utiliptables.TableMangle, utiliptables.TableNAT, utiliptables.TableFilter},
    				func() { kl.syncIPTablesRules(iptClient) },
    				1*time.Minute, wait.NeverStop,
    			)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    }
    
    func removeNonPersistedResources(infos []*storageversion.ResourceInfo) []*storageversion.ResourceInfo {
    	var filtered []*storageversion.ResourceInfo
    	for _, info := range infos {
    		// if EncodingVersion is empty, then the apiserver does not
    		// need to register this resource via the storage version API,
    		// thus we can remove it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top