Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DaemonSetConditionType (0.43 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    type DaemonSetConditionType string
    
    // TODO: Add valid condition types of a DaemonSet.
    
    // DaemonSetCondition describes the state of a DaemonSet at a certain point.
    type DaemonSetCondition struct {
    	// Type of DaemonSet condition.
    	Type DaemonSetConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=DaemonSetConditionType"`
    	// Status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1/zz_generated.conversion.go

    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	return nil
    }
    
    func autoConvert_v1beta2_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1beta2.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  6. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_DaemonSetCondition_To_apps_DaemonSetCondition(in *v1beta1.DaemonSetCondition, out *apps.DaemonSetCondition, s conversion.Scope) error {
    	out.Type = apps.DaemonSetConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
Back to top