Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for selected (0.2 sec)

  1. common/scripts/metallb-native.yaml

                        label selector matches all objects. A null label selector matches
                        no objects.
                      properties:
                        matchExpressions:
                          description: matchExpressions is a list of label selector requirements.
                            The requirements are ANDed.
                          items:
                            description: A label selector requirement is a selector that
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/discovery/v1/generated.proto

      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSlice represents a subset of the endpoints that implement a service.
    // For a given service there may be multiple EndpointSlice objects, selected by
    // labels, which must be joined to produce the full set of endpoints.
    message EndpointSlice {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/networking/v1/generated.proto

    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
      // If namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
      // the pods matching podSelector in the Namespaces selected by NamespaceSelector.
      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  4. architecture/environments/operator.md

    both the charts and configuration profiles can come from three different sources: compiled-in, local filesystem.
    The source may be selected independently for the charts and profiles. The different steps in creating the manifest are
    as follows:
    
    1. The user CR (my_custom.yaml) selects a configuration profile. If no profile is selected, the
    [default profile](../manifests/profiles/default.yaml) is used. Each profile is defined as a
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 13.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1/generated.proto

      // budget.
      // A null selector will match no pods, while an empty ({}) selector will select
      // all pods within the namespace.
      // +patchStrategy=replace
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
    
      // An eviction is allowed if at most "maxUnavailable" pods selected by
      // "selector" are unavailable after the eviction, i.e. even in absence of
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // A topology selector requirement is a selector that matches given label.
    // This is an alpha feature and may change in the future.
    message TopologySelectorLabelRequirement {
      // The label key that the selector applies to.
      optional string key = 1;
    
      // An array of string values. One value must match the label to be selected.
      // Each entry in Values is ORed.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  7. operator/README.md

                value: 15099 # OVERRIDDEN
    ```
    
    The user-defined overlay uses a path spec that includes the ability to select list items by key. In the example above,
    the container with the key-value "name: discovery" is selected from the list of containers, and the command line
    parameter with value "30m" is selected to be modified. The advanced overlay capability is described in more detail in
    the spec.
    
    ## Interaction with controller
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  8. istioctl/pkg/cli/option.go

    	selectedContext := config.CurrentContext
    	if *r.configContext != "" {
    		selectedContext = *r.configContext
    	}
    
    	// Use the namespace associated with the selected context as default, if the context has one
    	context, ok := config.Contexts[selectedContext]
    	if !ok {
    		r.defaultNamespace = v1.NamespaceDefault
    		return
    	}
    	if context.Namespace == "" {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 18:01:27 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // budget.
      // A null selector selects no pods.
      // An empty selector ({}) also selects no pods, which differs from standard behavior of selecting all pods.
      // In policy/v1, an empty selector will select all pods in the namespace.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 2;
    
      // An eviction is allowed if at most "maxUnavailable" pods selected by
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/compare/sds/util.go

    	Data        string `json:"cert"`
    	Source      string `json:"source"`
    	Destination string `json:"destination"`
    	State       string `json:"state"`
    	SecretMeta
    }
    
    // SecretMeta holds selected fields which can be extracted from parsed x509 cert
    type SecretMeta struct {
    	Valid        bool   `json:"cert_valid"`
    	SerialNumber string `json:"serial_number"`
    	NotAfter     string `json:"not_after"`
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
Back to top