Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 666 for deploymentID (0.15 sec)

  1. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	dc.services.AddEventHandler(parentHandler)
    	dc.clients[gvr.Service] = NewUntypedWrapper(dc.services)
    
    	dc.deployments = kclient.NewFiltered[*appsv1.Deployment](client, filter)
    	dc.deployments.AddEventHandler(parentHandler)
    	dc.clients[gvr.Deployment] = NewUntypedWrapper(dc.deployments)
    
    	dc.serviceAccounts = kclient.NewFiltered[*corev1.ServiceAccount](client, filter)
    	dc.serviceAccounts.AddEventHandler(parentHandler)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	role1v1 := makeID("rbac.authorization.k8s.io/v1", "Role", "ns1", "role1", "roleuid1")
    
    	deployment1apps := makeID("apps/v1", "Deployment", "ns1", "deployment1", "deploymentuid1")
    	deployment1extensions := makeID("extensions/v1beta1", "Deployment", "ns1", "deployment1", "deploymentuid1") // not served, still referenced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    	}{
    		{
    			name: "deployment with correct expression",
    			policy: withGVRMatch([]string{"apps"}, []string{"v1"}, []string{"deployments"}, withValidations([]admissionregistrationv1.Validation{
    				{
    					Expression: "object.spec.replicas > 1",
    				},
    			}, makePolicy("replicated-deployment"))),
    			assertFieldRef: toHaveLengthOf(0),
    			assertWarnings: toHaveLengthOf(0),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

    import org.gradle.api.internal.StartParameterInternal
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.deployment.internal.DefaultContinuousExecutionGate
    import org.gradle.deployment.internal.Deployment
    import org.gradle.deployment.internal.DeploymentInternal
    import org.gradle.deployment.internal.DeploymentRegistryInternal
    import org.gradle.initialization.BuildRequestMetaData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    				client.PrependReactor("get", "deployments", func(clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, &apps.Deployment{}, nil
    				})
    			},
    			expectedError: false,
    		},
    		{
    			name: "deployment get returns an error",
    			setupClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("get", "deployments", func(clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo.yaml

    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    								APIVersions: []string{"v1"},
    								Resources:   []string{"deployments"},
    							},
    						},
    					},
    					{
    						RuleWithOperations: v1.RuleWithOperations{
    							Rule: v1.Rule{
    								APIGroups:   []string{"apps"},
    								APIVersions: []string{"*"},
    								Resources:   []string{"deployments"},
    							},
    						},
    					},
    				}},
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top