Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 143 for ExtraArgs (0.28 sec)

  1. 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)
  2. cluster/images/etcd/migrate/migrate_server.go

    		"--listen-peer-urls", r.cfg.peerListenUrls,
    		"--initial-advertise-peer-urls", r.cfg.peerAdvertiseUrls,
    	)
    	if r.cfg.etcdServerArgs != "" {
    		extraArgs := strings.Fields(r.cfg.etcdServerArgs)
    		etcdCmd.Args = append(etcdCmd.Args, extraArgs...)
    	}
    	fmt.Printf("Starting server %s: %+v\n", r.cfg.name, etcdCmd.Args)
    
    	etcdCmd.Stdout = os.Stdout
    	etcdCmd.Stderr = os.Stderr
    	err := etcdCmd.Start()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 30 16:29:59 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. helm/minio/templates/_helpers.tpl

      {{- printf "%s-%s" "scc" (include "minio.fullname" .) | trunc 63 | trimSuffix "-" -}}
    {{- end -}}
    
    {{/*
    Properly format optional additional arguments to MinIO binary
    */}}
    {{- define "minio.extraArgs" -}}
    {{- range .Values.extraArgs -}}
    {{ " " }}{{ . }}
    {{- end -}}
    {{- end -}}
    
    {{/*
    Return the proper Docker Image Registry Secret Names
    */}}
    {{- define "minio.imagePullSecrets" -}}
    {{/*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils.go

    	if addr, idx := kubeadmapi.GetArgValue(cfg.ControllerManager.ExtraArgs, kubeControllerManagerBindAddressArg, -1); idx > -1 {
    		return getProbeAddress(addr)
    	}
    	return "127.0.0.1"
    }
    
    // GetSchedulerProbeAddress returns the kubernetes scheduler probe address
    func GetSchedulerProbeAddress(cfg *kubeadmapi.ClusterConfiguration) string {
    	if addr, idx := kubeadmapi.GetArgValue(cfg.Scheduler.ExtraArgs, kubeSchedulerBindAddressArg, -1); idx > -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. 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)
  6. cluster/images/etcd/migrate/integration_test.go

    		peer := fmt.Sprintf("%s=%s://127.0.0.1:%d", memberName, protocol, peerPort)
    		peers = append(peers, peer)
    	}
    	initialCluster := strings.Join(peers, ",")
    
    	extraArgs := ""
    	if protocol == "https" {
    		extraArgs = getOrCreateTLSPeerCertArgs(t)
    	}
    
    	cfgs := []*EtcdMigrateCfg{}
    	for i := 0; i < memberCount; i++ {
    		memberName := fmt.Sprintf("%s-%d", name, i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

                            }
                        }
                    }
                }
            """
    
            when:
            fails("test", *extraArgs)
    
            then:
            result.assertHasCause('boom!')
    
            where:
            extraArgs << [[], ["--tests", "MyTest"]]
        }
    
        def "test framework can be set to the same value twice"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.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