Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Goldis (0.21 sec)

  1. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    option go_package = "k8s.io/api/rbac/v1alpha1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
      // If any of the selectors match, then the ClusterRole's permissions will be added
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    option go_package = "k8s.io/api/rbac/v1beta1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
      // If any of the selectors match, then the ClusterRole's permissions will be added
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authentication/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/storage/v1/generated.proto

      //
      // Default is "false".
      //
      // +featureGate=SELinuxMountReadWriteOncePod
      // +optional
      optional bool seLinuxMount = 8;
    }
    
    // CSINode holds information about all CSI drivers installed on a node.
    // CSI drivers do not need to create the CSINode object directly. As long as
    // they use the node-driver-registrar sidecar container, the kubelet will
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
      optional string name = 1;
    
      // State holds details about the container's current condition.
      // +optional
      optional ContainerState state = 2;
    
      // LastTerminationState holds the last termination state of the container to
      // help debug container crashes and restarts. This field is not
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // the requested value of the resource for the pods.
      // Currently only valid for Resource metric source type
      // +optional
      optional int32 averageUtilization = 4;
    }
    
    // MetricValueStatus holds the current value for a metric
    message MetricValueStatus {
      // value is the current value of the metric (as a quantity).
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity value = 1;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    message FlowSchemaStatus {
      // `conditions` is a list of the current states of FlowSchema.
      // +listType=map
      // +listMapKey=type
      // +optional
      repeated FlowSchemaCondition conditions = 1;
    }
    
    // GroupSubject holds detailed information for group-kind subject.
    message GroupSubject {
      // name is the user group that matches, or "*" to match all user groups.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

    message FlowSchemaStatus {
      // `conditions` is a list of the current states of FlowSchema.
      // +listType=map
      // +listMapKey=type
      // +optional
      repeated FlowSchemaCondition conditions = 1;
    }
    
    // GroupSubject holds detailed information for group-kind subject.
    message GroupSubject {
      // name is the user group that matches, or "*" to match all user groups.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/informers.go

    	case controllers.EventAdd:
    		log.Debugf("Namespace %s added", ns.Name)
    		s.enqueueNamespace(ns)
    
    	case controllers.EventUpdate:
    		newNs := event.New.(*corev1.Namespace)
    		oldNs := event.Old.(*corev1.Namespace)
    
    		if getModeLabel(oldNs.Labels) != getModeLabel(newNs.Labels) {
    			log.Debugf("Namespace %s updated", newNs.Name)
    			s.enqueueNamespace(newNs)
    		}
    	}
    	return nil
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top