Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Armode (0.15 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    					}},
    				},
    			},
    			expectedStatus: api.ServiceStatus{
    				LoadBalancer: api.LoadBalancerStatus{
    					Ingress: []api.LoadBalancerIngress{{
    						IP:     "1.2.3.4",
    						IPMode: &ipModeProxy,
    					}},
    				},
    			},
    			expectErr: false,
    		}, {
    			name:          "LoadBalancerIPMode enabled, ipMode used in old, not used in new",
    			ipModeEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    			ipModeEnabled: false,
    			svcIP:         "10.20.30.42",
    			svcLBIP:       "1.2.3.5",
    			ipMode:        ptr.To(v1.LoadBalancerIPModeVIP),
    			expectedRule:  true,
    		},
    		{
    			name:          "LoadBalancerIPMode disabled, ipMode nil",
    			ipModeEnabled: false,
    			svcIP:         "10.20.30.43",
    			svcLBIP:       "1.2.3.6",
    			ipMode:        nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  3. pkg/apis/core/validation/validation.go

    			if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && ingress.IPMode == nil {
    				if len(ingress.IP) > 0 {
    					allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set"))
    				}
    			} else if ingress.IPMode != nil && len(ingress.IP) == 0 {
    				allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be specified when `ip` is not set"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    func autoConvert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalancerIngress, out *core.LoadBalancerIngress, s conversion.Scope) error {
    	out.IP = in.IP
    	out.Hostname = in.Hostname
    	out.IPMode = (*core.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode))
    	out.Ports = *(*[]core.PortStatus)(unsafe.Pointer(&in.Ports))
    	return nil
    }
    
    // Convert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	Mode *int32 `json:"mode,omitempty" protobuf:"varint,3,opt,name=mode"`
    }
    
    // Local represents directly-attached storage with node affinity (Beta feature)
    type LocalVolumeSource struct {
    	// path of the full path to the volume on the node.
    	// It can be either a directory or block device (disk, partition, ...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    const (
    	// can be mounted read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted read/write mode to exactly 1 pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"mode": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Optional: mode bits used to set permissions on this file, must be an octal value
      // between 0000 and 0777 or a decimal value between 0 and 511.
      // YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
      // If not specified, the volume defaultMode will be used.
      // This might be in conflict with other options that affect the file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - `kube-proxy` now has a new nftables-based mode, available by running
      
          `kube-proxy --feature-gates NFTablesProxyMode=true --proxy-mode nftables`
      
      This is currently an alpha-level feature and while it probably will not
      eat your data, it may nibble at it a bit. (It passes e2e testing but has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top