Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for deploymentID (0.47 sec)

  1. pkg/test/framework/resource/settings.go

    	Hub string
    
    	// Tag value to use in Helm templates
    	Tag string
    
    	// Variant value to use in Helm templates
    	Variant string
    
    	// Image pull policy to use for deployments. If not specified, the defaults of each deployment will be used.
    	PullPolicy string
    
    	// PullSecret path to a file containing a k8s secret in yaml so test pods can pull from protected registries.
    	PullSecret string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection.go

    	// resources (Service, Deployment, etc).
    	// Unlike other types which use ConfigMaps, we use a Lease here. This is because:
    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    	// * Other types use "prioritized leader election", which isn't implemented for Lease
    	GatewayDeploymentController = "istio-gateway-deployment"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. docs/en/mkdocs.yml

        - advanced/wsgi.md
        - advanced/generate-clients.md
      - fastapi-cli.md
      - Deployment:
        - deployment/index.md
        - deployment/versions.md
        - deployment/https.md
        - deployment/manually.md
        - deployment/concepts.md
        - deployment/cloud.md
        - deployment/server-workers.md
        - deployment/docker.md
      - How To - Recipes:
        - how-to/index.md
        - how-to/general.md
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/internal/deployment/JavaApplicationDeploymentIntegrationTest.groovy

                    classpath = sourceSets.main.runtimeClasspath
                    mainClassName = "org.gradle.deployment.Main"
                    arguments = [ file("log").absolutePath, file("ready").absolutePath, "Hello, World!" ]
                }
            """
    
            file("src/main/java/org/gradle/deployment/Main.java") << """
                package org.gradle.deployment;
    
                import java.io.File;
                import java.io.FileOutputStream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. samples/ratelimit/rate-limit-service.yaml

    #   limitations under the License.
    
    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/external.go

    // limitations under the License.
    
    package deployment
    
    import (
    	"path"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/README.md

    Prometheus sets the `Host` header to `domain:port` as part of HTTP operations against the MinIO metrics endpoint. For MinIO deployments behind a load balancer, reverse proxy, or other control plane (HAProxy, nginx, pfsense, opnsense, etc.), ensure the network service supports routing these requests to the deployment.
    
    ### 6. Configure Grafana
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. tests/integration/ambient/traffic_test.go

    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    func TestTraffic(t *testing.T) {
    	framework.NewTest(t).
    		TopLevel().
    		Run(func(t framework.TestContext) {
    			apps := deployment.NewOrFail(t, t, deployment.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. docs/tr/docs/deployment/index.md

    # Deployment (Yayınlama)
    
    **FastAPI** uygulamasını deploy etmek oldukça kolaydır.
    
    ## Deployment Ne Anlama Gelir?
    
    Bir uygulamayı **deploy** etmek (yayınlamak), uygulamayı **kullanıcılara erişilebilir hale getirmek** için gerekli adımları gerçekleştirmek anlamına gelir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. tests/integration/security/main_test.go

    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&serverNS)),
    			authz.Setup(&authzServer, namespace.Future(&serverNS)),
    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    			deployment.SetupTwoNamespaces(&apps, deployment.Config{
    				IncludeExtAuthz: true,
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    					namespace.Future(&echo2NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top