Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for componentconfig (0.35 sec)

  1. cmd/kubeadm/app/util/config/strict/strict_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/config/strict"
    )
    
    func TestVerifyUnmarshalStrict(t *testing.T) {
    	const (
    		pathTestData = "testdata/"
    	)
    
    	var schemes = []*runtime.Scheme{kubeadmscheme.Scheme, componentconfigs.Scheme}
    	var testFiles = []struct {
    		fileName      string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/cluster_test.go

    			}
    			if _, ok := cfg.ComponentConfigs[componentconfigs.KubeletGroup]; !ok {
    				t.Errorf("no cfg.ComponentConfigs[%q]", componentconfigs.KubeletGroup)
    			}
    			if _, ok := cfg.ComponentConfigs[componentconfigs.KubeProxyGroup]; !ok {
    				t.Errorf("no cfg.ComponentConfigs[%q]", componentconfigs.KubeProxyGroup)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    - kube-scheduler dropped support for configuration files with apiVersion `componentconfig/v1alpha1`. Ensure kube-scheduler is configured using command-line flags or a configuration file with apiVersion `kubescheduler.config.k8s.io/v1alpha1` before upgrading to 1.13.
    - kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.18.md

      - HardPodAffinityWeight moved from a top level ComponentConfig parameter to a PluginConfig parameter of InterPodAffinity Plugin in `kubescheduler.config.k8s.io/v1alpha2` ([#88002](https://github.com/kubernetes/kubernetes/pull/88002), [@alculquicondor](https://github.com/alculquicondor)) [SIG Scheduling and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  5. pkg/controller/apis/config/v1alpha1/defaults_test.go

    	}
    
    	if !reflect.DeepEqual(ks2, ks1) {
    		t.Errorf("Expected:\n%#v\n\nGot:\n%#v", ks1, ks2)
    	}
    }
    
    // convertObjToConfigMap converts an object to a ConfigMap.
    // This is specifically meant for ComponentConfigs.
    func convertObjToConfigMap(name string, obj runtime.Object) (*v1.ConfigMap, error) {
    	eJSONBytes, err := json.Marshal(obj)
    	if err != nil {
    		return nil, err
    	}
    	cm := &v1.ConfigMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 04 11:39:35 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    - The deprecated flag `--hard-pod-affinity-symmetric-weight` and `--scheduler-name` have been removed from `kube-scheduler`. Use `ComponentConfig` instead to configure those parameters. ([#102805](https://github.com/kubernetes/kubernetes/pull/102805), [@ahg-g](https://github.com/ahg-g))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/kubelet_unix.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 componentconfigs
    
    import (
    	"k8s.io/klog/v2"
    	kubeletconfig "k8s.io/kubelet/config/v1beta1"
    	"k8s.io/utils/ptr"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/initsystem"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	waiter := apiclient.NewKubeWaiter(nil, 0, os.Stdout)
    	waiter.SetTimeout(cfg.Timeouts.KubeletHealthCheck.Duration)
    	kubeletConfig := initCfg.ClusterConfiguration.ComponentConfigs[componentconfigs.KubeletGroup].Get()
    	kubeletConfigTyped, ok := kubeletConfig.(*kubeletconfig.KubeletConfiguration)
    	if !ok {
    		return errors.New("could not convert the KubeletConfiguration to a typed object")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubelet_unix_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 componentconfigs
    
    import (
    	"reflect"
    	"testing"
    
    	kubeletconfig "k8s.io/kubelet/config/v1beta1"
    	"k8s.io/utils/ptr"
    )
    
    func TestMutateResolverConfig(t *testing.T) {
    	var fooResolverConfig = "/foo/resolver"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/kubelet_windows_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 componentconfigs
    
    import (
    	"path/filepath"
    	"reflect"
    	"testing"
    
    	kubeletconfig "k8s.io/kubelet/config/v1beta1"
    	"k8s.io/utils/ptr"
    )
    
    func TestMutatePaths(t *testing.T) {
    	const drive = "C:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top