Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 215 for upgrades (0.13 sec)

  1. pilot/pkg/networking/core/listener_builder.go

    	}
    
    	if httpOpts.useRemoteAddress {
    		connectionManager.UseRemoteAddress = proto.BoolTrue
    	} else {
    		connectionManager.UseRemoteAddress = proto.BoolFalse
    	}
    
    	// Allow websocket upgrades
    	websocketUpgrade := &hcm.HttpConnectionManager_UpgradeConfig{UpgradeType: "websocket"}
    	connectionManager.UpgradeConfigs = []*hcm.HttpConnectionManager_UpgradeConfig{websocketUpgrade}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{[]string{"--config=hello", "--ignore-preflight-errors=baz", "--foo=bar"}, false},
    		{[]string{"--config=hello", "--foo=bar"}, false},
    		// Expected to fail, --config is mixed with the upgrade related flag
    		{[]string{"--config=hello", "--allow-experimental-upgrades"}, false},
    	}
    
    	var cfgPath string
    	var ignorePreflightErrors []string
    	for _, rt := range tests {
    		f := pflag.NewFlagSet("test", pflag.ContinueOnError)
    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. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	}
    
    	retries := 10
    	retryInterval := 15 * time.Second
    
    	// Perform etcd upgrade using common to all control plane components function
    	if err := upgradeComponent(constants.Etcd, certsRenewMgr, waiter, pathMgr, cfg, beforeEtcdPodHash, recoverManifests); err != nil {
    		fmt.Printf("[upgrade/etcd] Failed to upgrade etcd: %v\n", err)
    		// Since upgrade component failed, the old etcd manifest has either been restored or was never touched
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	ImageRepository string `json:"imageRepository,omitempty"`
    
    	// ImageTag allows to specify a tag for the image.
    	// In case this value is set, kubeadm does not change automatically the version of the above components during upgrades.
    	// +optional
    	ImageTag string `json:"imageTag,omitempty"`
    
    	//TODO: evaluate if we need also a ImageName based on user feedbacks
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    					return fmt.Errorf("failed to precedence kubeletConfigFlag: %w", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/resolution_rules.html">Customizing Resolution</a></li>
                            <li><a href="../userguide/resolution_strategy_tuning.html">Preventing accidental upgrades</a></li>
                        </ul>
                    </li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/generated.proto

      // the Pod hostname takes the form `$(job-name)-$(index)`.
      //
      // More completion modes can be added in the future.
      // If the Job controller observes a mode that it doesn't recognize, which
      // is possible during upgrades due to version skew, the controller
      // skips updates for the Job.
      // +optional
      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. buildscripts/minio-upgrade.sh

    # shellcheck disable=SC2120
    cleanup() {
    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \
    		-f "buildscripts/upgrade-tests/compose.yml" \
    		down || true
    
    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \
    		-f "buildscripts/upgrade-tests/compose.yml" \
    		rm || true
    
    	for volume in $(docker volume ls -q | grep upgrade); do
    		docker volume rm ${volume} || true
    	done
    
    	docker volume prune -f
    	docker system prune -f || true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// the Pod hostname takes the form `$(job-name)-$(index)`.
    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top