Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for makeDeleteContentCondition (1.71 sec)

  1. pkg/controller/namespace/deletion/status_condition_utils.go

    	if c := getCondition(u.newConditions, v1.NamespaceDeletionContentFailure); c == nil {
    		if c := makeDeleteContentCondition(u.deleteContentErrors); c != nil {
    			u.newConditions = append(u.newConditions, *c)
    		}
    	}
    	return updateConditions(&ns.Status, u.newConditions)
    }
    
    func makeDeleteContentCondition(err []error) *v1.NamespaceCondition {
    	if len(err) == 0 {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 06 13:58:41 UTC 2019
    - 8.1K bytes
    - Viewed (0)
Back to top