Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 545 for deploy2 (0.23 sec)

  1. pkg/test/framework/components/istio/flags.go

    		"Specifies the namespace in which kiali, tracing providers, graphana, prometheus are deployed.")
    	flag.BoolVar(&settingsFromCommandline.DeployIstio, "istio.test.kube.deploy", settingsFromCommandline.DeployIstio,
    		"Deploy Istio into the target Kubernetes environment.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. samples/multicluster/README.md

    All of these instructions here assume that Istio has already been deployed to your primary clusters.
    
    ## Creating East-West Gateway
    
    All configurations rely on a separate gateway deployment that is dedicated to
    east-west traffic. This is done to avoid having east-west traffic flooding
    the default north-south ingress gateway.
    
    Run the following command to deploy the east-west gateway to a primary cluster:
    
    ```bash
    export MESH=mesh1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/kotlin/buildSrc/src/main/java/org/myorg/ServerEnvironmentPlugin.java

                String env = serverEnvironment.getName();
                String capitalizedServerEnv = env.substring(0, 1).toUpperCase() + env.substring(1);
                String taskName = "deployTo" + capitalizedServerEnv;
                project.getTasks().register(taskName, Deploy.class, task -> task.getUrl().set(serverEnvironment.getUrl()));
            });
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. docs/orchestration/docker-compose/README.md

    ### GNU/Linux and macOS
    
    ```sh
    docker-compose pull
    docker-compose up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    ### Windows
    
    ```sh
    docker-compose.exe pull
    docker-compose.exe up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/groovy/buildSrc/src/main/java/org/myorg/ServerEnvironmentPlugin.java

                String env = serverEnvironment.getName();
                String capitalizedServerEnv = env.substring(0, 1).toUpperCase() + env.substring(1);
                String taskName = "deployTo" + capitalizedServerEnv;
                project.getTasks().register(taskName, Deploy.class, task -> task.getUrl().set(serverEnvironment.getUrl()));
            });
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

     *       sourceDirs += file('someExtraFolder')
     *
     *       // dependencies to mark as deployable with lib folder deploy path
     *       libConfigurations += [ configurations.someInterestingConfiguration ]
     *
     *       // dependencies to mark as deployable with root folder deploy path
     *       rootConfigurations += [ configurations.someInterestingConfiguration ]
     *
     *       // dependencies to exclude from wtp deployment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java

            String extension = artifact.getArtifactHandler().getExtension();
            File source = new File(basedir, finalName + "." + extension);
            deploy(source, artifact, deploymentRepository, localRepository);
        }
    
        public void deploy(
                File source, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository)
                throws ArtifactDeploymentException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/builder.go

    func build(b *builder) (out echo.Instances, err error) {
    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy echo instances ===")
    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy echo instances ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy echo instances in %v ===", time.Since(start))
    		}
    	}()
    
    	// load additional configs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/deployer/ArtifactDeployerTest.java

                File file = new File(artifactBasedir, "artifact-1.0.jar");
                assertEquals("dummy", new String(Files.readAllBytes(file.toPath()), StandardCharsets.UTF_8).trim());
    
                artifactDeployer.deploy(file, artifact, remoteRepository(), localRepository());
    
                ArtifactRepository remoteRepository = remoteRepository();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. hack/testdata/scale-deploy-2.yaml

    Jordan Liggitt <******@****.***> 1545236266 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 436 bytes
    - Viewed (0)
Back to top