Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 616 for typev3 (0.1 sec)

  1. pkg/apis/storage/types.go

    type CSIDriverList struct {
    	metav1.TypeMeta
    
    	// Standard list metadata
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// items is the list of CSIDriver
    	Items []CSIDriver
    }
    
    // CSIDriverSpec is the specification of a CSIDriver.
    type CSIDriverSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  2. pkg/apis/storagemigration/types.go

    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType
    	// Status of the condition, one of True, False, Unknown.
    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // CronJobControllerConfiguration contains elements describing the
    // CronJobControllerV2.
    type CronJobControllerConfiguration struct {
    	// ConcurrentCronJobSyncs is the number of cron job objects that are
    	// allowed to sync concurrently. Larger number = more responsive jobs,
    	// but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 22:32:06 UTC 2020
    - 934 bytes
    - Viewed (0)
  4. pkg/controller/apis/config/types.go

    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // KubeControllerManagerConfiguration contains elements describing kube-controller manager.
    type KubeControllerManagerConfiguration struct {
    	metav1.TypeMeta
    
    	// Generic holds configuration for a generic controller-manager
    	Generic cmconfig.GenericControllerManagerConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    }
    
    // PodFailurePolicyOnPodConditionsPattern describes a pattern for matching
    // an actual pod condition type.
    type PodFailurePolicyOnPodConditionsPattern struct {
    	// Specifies the required Pod condition type. To match a pod condition
    	// it is required that specified type equals the pod condition type.
    	Type api.PodConditionType
    	// Specifies the required Pod condition status. To match a pod condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pkg/apis/imagepolicy/types.go

    type ImageReview struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta
    
    	// Spec holds information about the pod being evaluated
    	Spec ImageReviewSpec
    
    	// Status is filled in by the backend and indicates whether the pod should be allowed.
    	Status ImageReviewStatus
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    type ImageReviewSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  7. pkg/apis/coordination/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// spec contains the specification of the Lease.
    	// +optional
    	Spec LeaseSpec
    }
    
    // LeaseSpec is a specification of a Lease.
    type LeaseSpec struct {
    	// holderIdentity contains the identity of the holder of a current lease.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. pkg/apis/extensions/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    /*
    This file (together with pkg/apis/extensions/v1beta1/types.go) contain the experimental
    types in kubernetes. These API objects are experimental, meaning that the
    APIs may be broken at any time by the kubernetes team.
    
    DISCLAIMER: The implementation of the experimental API group itself is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // ReplicaSetControllerConfiguration contains elements describing ReplicaSetController.
    type ReplicaSetControllerConfiguration struct {
    	// concurrentRSSyncs is the number of replica sets that are  allowed to sync
    	// concurrently. Larger number = more responsive replica  management, but more
    	// CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 936 bytes
    - Viewed (0)
  10. pkg/controller/replication/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // ReplicationControllerConfiguration contains elements describing ReplicationController.
    type ReplicationControllerConfiguration struct {
    	// concurrentRCSyncs is the number of replication controllers that are
    	// allowed to sync concurrently. Larger number = more responsive replica
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 948 bytes
    - Viewed (0)
Back to top