Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for ExtraArgs (0.17 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	out.ExtraEnvs = []kubeadm.EnvVar{}
    	out.ExtraArgs = convertToArgs(in.ExtraArgs)
    	return autoConvert_v1beta3_LocalEtcd_To_kubeadm_LocalEtcd(in, out, s)
    }
    
    // Convert_kubeadm_LocalEtcd_To_v1beta3_LocalEtcd converts a private LocalEtcd to public LocalEtcd.
    func Convert_kubeadm_LocalEtcd_To_v1beta3_LocalEtcd(in *kubeadm.LocalEtcd, out *LocalEtcd, s conversion.Scope) error {
    	out.ExtraArgs = convertFromArgs(in.ExtraArgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //   - Replace the existing string/string extra argument maps with structured extra arguments that support duplicates.
    //     The change applies to `ClusterConfiguration` - `APIServer.ExtraArgs, `ControllerManager.ExtraArgs`,
    //     `Scheduler.ExtraArgs`, `Etcd.Local.ExtraArgs`. Also to `NodeRegistrationOptions.KubeletExtraArgs`.
    //   - Add `ClusterConfiguration.EncryptionAlgorithm` that can be used to set the asymmetric encryption algorithm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs = append(allErrs, ValidateExtraArgs(a.ExtraArgs, fldPath.Child("extraArgs"))...)
    	return allErrs
    }
    
    // ValidateControllerManager validates the controller manager object and collects all encountered errors
    func ValidateControllerManager(a *kubeadm.ControlPlaneComponent, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateExtraArgs(a.ExtraArgs, fldPath.Child("extraArgs"))...)
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. pkg/envoy/proxy.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/env"
    	common_features "istio.io/istio/pkg/features"
    	"istio.io/istio/pkg/log"
    )
    
    type envoy struct {
    	ProxyConfig
    	extraArgs []string
    }
    
    // Envoy binary flags
    type ProxyConfig struct {
    	LogLevel          string
    	ComponentLogLevel string
    	NodeIPs           []string
    	Sidecar           bool
    	LogAsJSON         bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local_test.go

    				AdvertiseAddress: rt.advertiseAddress,
    			}
    			cfg := &kubeadmapi.ClusterConfiguration{
    				Etcd: kubeadmapi.Etcd{
    					Local: &kubeadmapi.LocalEtcd{
    						DataDir:   "/var/lib/etcd",
    						ExtraArgs: rt.extraArgs,
    					},
    				},
    			}
    			actual := getEtcdCommand(cfg, endpoint, rt.nodeName, rt.initialCluster)
    			sort.Strings(actual)
    			sort.Strings(rt.expected)
    			if !reflect.DeepEqual(actual, rt.expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    type ControlPlaneComponent struct {
    	// ExtraArgs is an extra set of flags to pass to the control plane component.
    	// A key in this map is the flag name as it appears on the
    	// command line except without leading dash(es).
    	// TODO: This is temporary and ideally we would like to switch all components to
    	// use ComponentConfig + ConfigMaps.
    	// +optional
    	ExtraArgs map[string]string `json:"extraArgs,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *ControlPlaneComponent) DeepCopyInto(out *ControlPlaneComponent) {
    	*out = *in
    	if in.ExtraArgs != nil {
    		in, out := &in.ExtraArgs, &out.ExtraArgs
    		*out = make([]Arg, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExtraVolumes != nil {
    		in, out := &in.ExtraVolumes, &out.ExtraVolumes
    		*out = make([]HostPathMount, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    func istioctlSafe(t test.Failer, i istioctl.Instance, ns string, useKube bool, extraArgs ...string) ([]string, error) {
    	output, stderr, err := istioctlWithStderr(t, i, ns, useKube, extraArgs...)
    	return strings.Split(strings.TrimSpace(output+stderr), "\n"), err
    }
    
    func istioctlWithStderr(t test.Failer, i istioctl.Instance, ns string, useKube bool, extraArgs ...string) (string, string, error) {
    	t.Helper()
    
    	args := []string{"analyze"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *ControlPlaneComponent) DeepCopyInto(out *ControlPlaneComponent) {
    	*out = *in
    	if in.ExtraArgs != nil {
    		in, out := &in.ExtraArgs, &out.ExtraArgs
    		*out = make([]Arg, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExtraVolumes != nil {
    		in, out := &in.ExtraVolumes, &out.ExtraVolumes
    		*out = make([]HostPathMount, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    					ExtraArgs: []kubeadmapi.Arg{
    						{Name: "node-cidr-mask-size-ipv6", Value: "83"},
    					},
    				},
    			},
    			isIPv6:       true,
    			expectedMask: 83,
    		},
    		{
    			name: "dual ipv4 custom mask",
    			cfg: &kubeadmapi.ClusterConfiguration{
    				ControllerManager: kubeadmapi.ControlPlaneComponent{
    					ExtraArgs: []kubeadmapi.Arg{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top