Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for deploying (0.21 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    	}
    
    	// Apply the deployment to the configured cluster.
    	if err = ctx.ConfigKube(cfg.Cluster).
    		YAML(cfg.Namespace.Name(), deploymentYAML).
    		Apply(apply.NoCleanup); err != nil {
    		return nil, fmt.Errorf("failed deploying echo %s to cluster %s: %v",
    			cfg.ClusterLocalFQDN(), cfg.Cluster.Name(), err)
    	}
    
    	return &deployment{
    		ctx:             ctx,
    		cfg:             cfg,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/server-workers.md

    * Memory
    * Previous steps before starting
    
    Up to this point, with all the tutorials in the docs, you have probably been running a **server program** like Uvicorn, running a **single process**.
    
    When deploying applications you will probably want to have some **replication of processes** to take advantage of **multiple cores** and to be able to handle more requests.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. cmd/testdata/xl-meta-merge.zip

    Œx-minio-internal-inline-dataÄ true§MetaUsr ¬content-type­text/markdown€etagÙ 4af243ccccbadaf12545¡vÎeçnÐÎÓ° , €nullÅ%u&vÎ e ( [ ðK Ô X· Øü *š ÂWåion. Certain features such as versioning, object locking, and bucket replication require distributed deploying MinIO with Erasure Coding. For extended development and production, deploy MinIO with Erasure Coding enabled - specifically, with a *minimum* of 4 drives per MinIO server. See [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operati...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                </plugin>
            </plugins>
        </reporting>
    
        <profiles>
            <profile>
                <id>junit-release</id>
                <!--
                Signs all artifacts before deploying to Maven Central.
                -->
                <build>
                    <plugins>
                        <plugin>
                            <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                </plugin>
            </plugins>
        </reporting>
    
        <profiles>
            <profile>
                <id>junit-release</id>
                <!--
                Signs all artifacts before deploying to Maven Central.
                -->
                <build>
                    <plugins>
                        <plugin>
                            <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/builder.go

    			shouldSkip = true
    			continue
    		}
    
    		var ref *echo.Instance
    		if idx == 0 {
    			// ref only applies to the first cluster deployed to
    			// refs shouldn't be used when deploying to multiple targetClusters
    			// TODO: should we just panic if a ref is passed in a multi-cluster context?
    			ref = i
    		}
    		perClusterConfig = perClusterConfig.DeepCopy()
    		perClusterConfig.Cluster = ec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/common.go

    		return nil
    	}
    	// If not a pre-release version, handle the validation normally.
    	if k8sVersion.LessThan(mcpVersion) {
    		return errors.Errorf("this version of kubeadm only supports deploying clusters with the control plane version >= %s. Current version: %s",
    			mcpVersion, cfg.KubernetesVersion)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    But everything else it can do is supplied by plugins.
    
    Plugins encapsulate logic for specific tasks or integrations, such as compiling code, running tests, or deploying artifacts.
    By applying plugins, users can easily add new features to their build process without having to write complex code from scratch.
    
    This plugin-based approach allows Gradle to be lightweight and modular.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    It might represent a library JAR, a web application, or a distribution ZIP assembled from the JARs produced by other projects.
    
    On the other hand, it might represent a thing to be done, such as deploying your application to staging or production environments.
    
    Gradle scripts are written in either Groovy DSL or Kotlin DSL (domain-specific language).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/README.md

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    kind: KubeProxyConfiguration
    mode: ipvs
    ...
    ```
    
    before running
    
    `kubeadm init --config <path_to_configuration_file>`
    
    to specify the ipvs mode before deploying the cluster.
    
    **Notes**
    If ipvs mode is successfully on, you should see IPVS proxy rules (use `ipvsadm`) like
    ```shell
     # ipvsadm -ln
    IP Virtual Server version 1.2.1 (size=4096)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
Back to top