Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 744 for mydeployment (0.28 sec)

  1. pkg/test/framework/components/echo/echotest/run.go

    // of source instance to target deployment.
    //
    // For example, in a test named `a/to_b/from_cluster-0`,
    // `a` is the source deployment, `b` is the destination deployment and
    // `cluster-0` marks which instance of the source deployment.
    //
    // We use a combination of deployment name and cluster name to identify
    // a particular source instance, as there should typically be one instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/cluster/cluster.go

    }
    
    func (r *Resources) insertContainer(namespace, deployment, pod, container string) {
    	if r.Root == nil {
    		r.Root = make(map[string]any)
    	}
    	if r.Root[namespace] == nil {
    		r.Root[namespace] = make(map[string]any)
    	}
    	d := r.Root[namespace].(map[string]any)
    	if d[deployment] == nil {
    		d[deployment] = make(map[string]any)
    	}
    	p := d[deployment].(map[string]any)
    	if p[pod] == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/DeploymentDescriptor.java

        /**
         * Reads the deployment descriptor from a reader.
         *
         * @param reader
         *            The reader to read the deployment descriptor from
         * @return this
         */
        DeploymentDescriptor readFrom(Reader reader);
    
        /**
         * Reads the deployment descriptor from a file. The paths are resolved as defined by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:removed=1.16
    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,Deployment
    
    // DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
    // more information.
    // Deployment enables declarative updates for Pods and ReplicaSets.
    type Deployment struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. 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)
  6. operator/pkg/helmreconciler/wait.go

    	// cRDPollTimeout is the maximum wait time for all CRDs to be created.
    	cRDPollTimeout = 60 * time.Second
    )
    
    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    	replicaSets *appsv1.ReplicaSet
    	deployment  *appsv1.Deployment
    }
    
    // WaitForResources polls to get the current status of all pods, PVCs, and Services
    // until all are ready or a timeout is reached
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/main_test.go

    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&serverNS)),
    			authz.Setup(&authzServer, namespace.Future(&serverNS)),
    			authz.SetupLocal(&localAuthzServer, namespace.Future(&echo1NS)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				IncludeExtAuthz: true,
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    			})).
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/controller/deployment/sync_test.go

    		name          string
    		deployment    *apps.Deployment
    		oldDeployment *apps.Deployment
    
    		newRS  *apps.ReplicaSet
    		oldRSs []*apps.ReplicaSet
    
    		expectedNew  *apps.ReplicaSet
    		expectedOld  []*apps.ReplicaSet
    		wasntUpdated map[string]bool
    
    		desiredReplicasAnnotations map[string]int32
    	}{
    		{
    			name:          "normal scaling event: 10 -> 12",
    			deployment:    newDeployment("foo", 12, nil, nil, nil, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top