Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for updateStats (0.1 sec)

  1. pkg/controller/deployment/deployment_controller.go

    		if d.Status.ObservedGeneration < d.Generation {
    			d.Status.ObservedGeneration = d.Generation
    			dc.client.AppsV1().Deployments(d.Namespace).UpdateStatus(ctx, d, metav1.UpdateOptions{})
    		}
    		return nil
    	}
    
    	// List ReplicaSets owned by this Deployment, while reconciling ControllerRef
    	// through adoption/orphaning.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/controller/daemon/update.go

    		}
    		if currDS.Status.CollisionCount == nil {
    			currDS.Status.CollisionCount = new(int32)
    		}
    		*currDS.Status.CollisionCount++
    		_, updateErr := dsc.kubeClient.AppsV1().DaemonSets(ds.Namespace).UpdateStatus(ctx, currDS, metav1.UpdateOptions{})
    		if updateErr != nil {
    			return nil, updateErr
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top