Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,326 for deploymentID (0.17 sec)

  1. 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)
  2. cluster/addons/calico-policy-controller/calico-node-vertical-autoscaler-deployment.yaml

    kind: Deployment
    apiVersion: apps/v1
    metadata:
      name: calico-node-vertical-autoscaler
      namespace: kube-system
      labels:
        k8s-app: calico-node-autoscaler
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      replicas: 1
      selector:
        matchLabels:
          k8s-app: calico-node-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-node-autoscaler
        spec:
          priorityClassName: system-cluster-critical
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistryInternal.java

     * limitations under the License.
     */
    
    package org.gradle.deployment.internal;
    
    import java.util.Collection;
    
    public interface DeploymentRegistryInternal extends DeploymentRegistry {
    
        /**
         * Returns all running deployments
         */
        Collection<Deployment> getRunningDeployments();
    
        boolean isAnyStarted();
    
        ContinuousExecutionGate getExecutionGate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 15:19:59 UTC 2022
    - 949 bytes
    - Viewed (0)
  9. 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)
  10. pkg/registry/apps/deployment/strategy_test.go

    					}},
    			},
    		},
    	}
    }
    
    func TestDeploymentStrategyValidate(t *testing.T) {
    	tests := []struct {
    		name       string
    		deployment *apps.Deployment
    	}{
    		{
    			name:       "validation on a new deployment with indivisible hugepages values",
    			deployment: newDeploymentWithHugePageValue(api.ResourceHugePagesPrefix+"2Mi", resource.MustParse("2.1Mi")),
    		},
    	}
    
    	for _, tc := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top