Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for controlPlane (1.46 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// to a chunking list request.
    	RemainingItemCount featuregate.Feature = "RemainingItemCount"
    
    	// owner: @wojtek-t
    	// beta: v1.31
    	//
    	// Enables resilient watchcache initialization to avoid controlplane
    	// overload.
    	ResilientWatchCacheInitialization featuregate.Feature = "ResilientWatchCacheInitialization"
    
    	// owner: @serathius
    	// beta: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options.go

    	kubeoptions "k8s.io/kubernetes/pkg/kubeapiserver/options"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Options define the flags and validation for a generic controlplane. If the
    // structs are nil, the options are not added to the command line and not validated.
    type Options struct {
    	GenericServerRunOptions *genericoptions.ServerRunOptions
    	Etcd                    *genericoptions.EtcdOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    	// Connection is the exact information used to configure the egress selection
    	Connection Connection
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    	applyv1 "k8s.io/client-go/applyconfigurations/core/v1"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	core "k8s.io/client-go/testing"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controlplane/controller/legacytokentracking"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func configuredConfigMap(label string) *v1.ConfigMap {
    	if label == "" {
    		return &v1.ConfigMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package controlplane
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"reflect"
    	"testing"
    
    	"k8s.io/api/core/v1"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery
    
    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    	ControlPlane *JoinControlPlane
    
    	// SkipPhases is a list of phases to skip during command execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs = append(allErrs, ValidateNodeRegistrationOptions(&c.NodeRegistration, field.NewPath("nodeRegistration"))...)
    	allErrs = append(allErrs, ValidateJoinControlPlane(c.ControlPlane, field.NewPath("controlPlane"))...)
    
    	if !isAbs(c.CACertPath) || !strings.HasSuffix(c.CACertPath, ".crt") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	k8stesting "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controlplane/controller/defaultservicecidr"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/test/utils/ktesting"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    type testController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top