Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 201 for NodeSelectorTerms (0.41 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

          mountOptions:
          - mountOptionsValue
          nfs:
            path: pathValue
            readOnly: true
            server: serverValue
          nodeAffinity:
            required:
              nodeSelectorTerms:
              - matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchFields:
                - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.json

            "mountOptions": [
              "mountOptionsValue"
            ],
            "volumeMode": "volumeModeValue",
            "nodeAffinity": {
              "required": {
                "nodeSelectorTerms": [
                  {
                    "matchExpressions": [
                      {
                        "key": "keyValue",
                        "operator": "operatorValue",
                        "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

            "mountOptions": [
              "mountOptionsValue"
            ],
            "volumeMode": "volumeModeValue",
            "nodeAffinity": {
              "required": {
                "nodeSelectorTerms": [
                  {
                    "matchExpressions": [
                      {
                        "key": "keyValue",
                        "operator": "operatorValue",
                        "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.json

            "mountOptions": [
              "mountOptionsValue"
            ],
            "volumeMode": "volumeModeValue",
            "nodeAffinity": {
              "required": {
                "nodeSelectorTerms": [
                  {
                    "matchExpressions": [
                      {
                        "key": "keyValue",
                        "operator": "operatorValue",
                        "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

          mountOptions:
          - mountOptionsValue
          nfs:
            path: pathValue
            readOnly: true
            server: serverValue
          nodeAffinity:
            required:
              nodeSelectorTerms:
              - matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchFields:
                - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. operator/pkg/validate/validate_test.go

    			yamlStr: `
    profile: default
    components:
      ingressGateways:
      - enabled: true
        k8s:
          affinity:
            nodeAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
                nodeSelectorTerms:
                - matchExpressions:
                  - key: zone
                    operator: In
                    values:
                    - istio`,
    		},
    		{
    			desc: "CommonConfig",
    			yamlStr: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

            "mountOptions": [
              "mountOptionsValue"
            ],
            "volumeMode": "volumeModeValue",
            "nodeAffinity": {
              "required": {
                "nodeSelectorTerms": [
                  {
                    "matchExpressions": [
                      {
                        "key": "keyValue",
                        "operator": "operatorValue",
                        "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

          mountOptions:
          - mountOptionsValue
          nfs:
            path: pathValue
            readOnly: true
            server: serverValue
          nodeAffinity:
            required:
              nodeSelectorTerms:
              - matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchFields:
                - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml

          mountOptions:
          - mountOptionsValue
          nfs:
            path: pathValue
            readOnly: true
            server: serverValue
          nodeAffinity:
            required:
              nodeSelectorTerms:
              - matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchFields:
                - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	if noNodeAffinity || len(affinity.NodeAffinity.RequiredDuringSchedulingIgnoredDuringExecution.NodeSelectorTerms) == 0 {
    		return nil, nil
    	}
    
    	// Check if there is affinity to a specific node and return it.
    	terms := affinity.NodeAffinity.RequiredDuringSchedulingIgnoredDuringExecution.NodeSelectorTerms
    	var nodeNames sets.Set[string]
    	for _, t := range terms {
    		var termNodeNames sets.Set[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top