Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for controlPlane (0.22 sec)

  1. cmd/kubeadm/app/util/config/cluster.go

    		if err := componentconfigs.FetchFromCluster(&initcfg.ClusterConfiguration, client); err != nil {
    			return nil, errors.Wrap(err, "failed to get component configs")
    		}
    	}
    
    	// if this isn't a new controlplane instance (e.g. in case of kubeadm upgrades)
    	// get nodes specific information as well
    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    				},
    				TLSBootstrapToken: "abcdef.1234567890123456",
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{
    				Name:      "aaa",
    				CRISocket: criPath,
    			},
    			ControlPlane: &kubeadmapi.JoinControlPlane{
    				LocalAPIEndpoint: kubeadmapi.APIEndpoint{
    					AdvertiseAddress: "1.2.3.4",
    					BindPort:         1234,
    				},
    			},
    		}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    			s.StatusReporter.RegisterEvent(con.ID(), w.TypeUrl, req.Push.LedgerVersion)
    		}
    		return err
    	}
    	defer func() { recordPushTime(w.TypeUrl, time.Since(t0)) }()
    	resp := &discovery.DeltaDiscoveryResponse{
    		ControlPlane: ControlPlane(),
    		TypeUrl:      w.TypeUrl,
    		// TODO: send different version for incremental eds
    		SystemVersionInfo: req.Push.PushVersion,
    		Nonce:             nonce(req.Push.LedgerVersion),
    		Resources:         res,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top