Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,313 for cdeployment (1.76 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    		if resource.Resource == "deployments" {
    			// co-locate deployments in all API groups
    			return "/deployments"
    		}
    		return ""
    	})
    	mapper.RegisterKindFor(gvr("extensions", "v1beta1", "deployments"), "", gvk("extensions", "v1beta1", "Deployment"))
    	mapper.RegisterKindFor(gvr("apps", "v1", "deployments"), "", gvk("apps", "v1", "Deployment"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. hack/testdata/invalid-deployment-unknown-and-duplicate-fields.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: invalid-nginx-deployment
      labels:
        app: nginx
    spec:
      replicas: 3
      replicas: 4
      foo: bar
      baz: baq
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
          - name: nginx
            image: nginx:1.14.2
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 385 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-pod-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
  4. pkg/registry/apps/deployment/storage/storage.go

    			Name:              deployment.Name,
    			Namespace:         deployment.Namespace,
    			UID:               deployment.UID,
    			ResourceVersion:   deployment.ResourceVersion,
    			CreationTimestamp: deployment.CreationTimestamp,
    		},
    		Spec: autoscaling.ScaleSpec{
    			Replicas: deployment.Spec.Replicas,
    		},
    		Status: autoscaling.ScaleStatus{
    			Replicas: deployment.Status.Replicas,
    			Selector: selector.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller.go

    	d := obj.(*apps.Deployment)
    	logger.V(4).Info("Adding deployment", "deployment", klog.KObj(d))
    	dc.enqueueDeployment(d)
    }
    
    func (dc *DeploymentController) updateDeployment(logger klog.Logger, old, cur interface{}) {
    	oldD := old.(*apps.Deployment)
    	curD := cur.(*apps.Deployment)
    	logger.V(4).Info("Updating deployment", "deployment", klog.KObj(oldD))
    	dc.enqueueDeployment(curD)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/deployment/sync.go

    	// rolling deployment.
    	if deploymentutil.IsRollingUpdate(deployment) {
    		allRSs := controller.FilterActiveReplicaSets(append(oldRSs, newRS))
    		allRSsReplicas := deploymentutil.GetReplicaCountForReplicaSets(allRSs)
    
    		allowedSize := int32(0)
    		if *(deployment.Spec.Replicas) > 0 {
    			allowedSize = *(deployment.Spec.Replicas) + deploymentutil.MaxSurge(*deployment)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns.go

    	default:
    		return "", errors.Errorf("multiple DNS addon deployments found: %v", deployments.Items)
    	}
    }
    
    // deployedDNSReplicas returns the replica count for the current DNS deployment
    func deployedDNSReplicas(client clientset.Interface, replicas int32) (*int32, error) {
    	deploymentsClient := client.AppsV1().Deployments(metav1.NamespaceSystem)
    	deployments, err := deploymentsClient.List(context.TODO(), metav1.ListOptions{LabelSelector: "k8s-app=kube-dns"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top