Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,020 for deploymentID (0.19 sec)

  1. 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)
  2. 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)
  3. tools/bug-report/pkg/cluster/cluster.go

    	return true
    }
    
    func shouldSkipDeployment(deployment string, config *config2.BugReportConfig) bool {
    	for _, eld := range config.Exclude {
    		if len(eld.Deployments) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Deployments, deployment) {
    				return true
    			}
    		}
    	}
    
    	for _, ild := range config.Include {
    		if len(ild.Deployments) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

    class FileSystemWatchingBuildActionRunnerTest extends Specification {
    
        def watchingHandler = Mock(BuildLifecycleAwareVirtualFileSystem)
        List<Deployment> deployments = []
        def deploymentRegistry = Stub(DeploymentRegistryInternal) {
            getRunningDeployments() >> deployments
        }
        def startParameter = Stub(StartParameterInternal)
        def buildOperationRunner = Mock(BuildOperationRunner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment.md

    Yumihiki <******@****.***> 1660839414 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/main_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    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: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/registry/apps/deployment/storage/storage_test.go

    	defer server.Terminate(t)
    	defer storage.Deployment.Store.DestroyFunc()
    	var deployment apps.Deployment
    	ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), namespace)
    	key := "/deployments/" + namespace + "/" + name
    	if err := storage.Deployment.Storage.Create(ctx, key, &validDeployment, &deployment, 0, false); err != nil {
    		t.Fatalf("error setting new deployment (key: %s) %v: %v", key, validDeployment, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. pkg/registry/apps/deployment/strategy.go

    	deployment := obj.(*apps.Deployment)
    	deployment.Status = apps.DeploymentStatus{}
    	deployment.Generation = 1
    
    	pod.DropDisabledTemplateFields(&deployment.Spec.Template, nil)
    }
    
    // Validate validates a new deployment.
    func (deploymentStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	deployment := obj.(*apps.Deployment)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top