Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 274 for featureGate (0.31 sec)

  1. pkg/registry/core/persistentvolume/strategy_test.go

    package persistentvolume
    
    import (
    	"context"
    
    	"github.com/google/go-cmp/cmp"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	apitesting "k8s.io/kubernetes/pkg/api/testing"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    	"reflect"
    	"testing"
    	"time"
    
    	// ensure types are installed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +featureGate=VolumeAttributesClass
    	// +optional
    	CurrentVolumeAttributesClassName *string
    	// ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.
    	// When this is unset, there is no ModifyVolume operation being attempted.
    	// This is an alpha field and requires enabling VolumeAttributesClass feature.
    	// +featureGate=VolumeAttributesClass
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	certificatesapi "k8s.io/kubernetes/pkg/apis/certificates"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    func TestPluginValidate(t *testing.T) {
    	tests := []struct {
    		description                      string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
      // +featureGate=TopologyAwareHints
      // +optional
      optional EndpointHints hints = 7;
    }
    
    // EndpointConditions represents the current condition of an endpoint.
    message EndpointConditions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/validation_test.go

    import (
    	"net"
    	"testing"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	netutils "k8s.io/utils/net"
    
    	"k8s.io/kubernetes/pkg/features"
    )
    
    func makeOptionsWithCIDRs(serviceCIDR string, secondaryServiceCIDR string) *ServerRunOptions {
    	value := serviceCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/apis/discovery/types.go

    	// +optional
    	NodeName *string
    	// zone is the name of the Zone this endpoint exists in.
    	// +optional
    	Zone *string
    	// hints contains information associated with how an endpoint should be
    	// consumed.
    	// +featureGate=TopologyAwareHints
    	// +optional
    	Hints *EndpointHints
    }
    
    // EndpointConditions represents the current condition of an endpoint.
    type EndpointConditions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
      // +featureGate=TopologyAwareHints
      // +optional
      optional EndpointHints hints = 7;
    }
    
    // EndpointConditions represents the current condition of an endpoint.
    message EndpointConditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/publishing/import-restrictions.yaml

    - baseImportPath: "./pkg/apis/core"
      allowedImports:
      - k8s.io/apimachinery
      - k8s.io/apiserver/pkg/util/feature
      - k8s.io/component-base/featuregate/testing
      - k8s.io/kubernetes/pkg/apis/core
      - k8s.io/kubernetes/pkg/api/v1/service
      - k8s.io/kubernetes/pkg/features
      - k8s.io/kubernetes/pkg/fieldpath
      - k8s.io/kubernetes/pkg/util
      - k8s.io/api/core/v1
      - k8s.io/utils/pointer
      - k8s.io/utils/net
      - k8s.io/klog
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	apitesting "k8s.io/kubernetes/pkg/api/testing"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    
    	// ensure types are installed
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    	"k8s.io/apiserver/pkg/util/peerproxy/metrics"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/transport"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    const (
    	requestTimeout = 30 * time.Second
    	localServerId  = "local-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top