Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 666 for deploymentID (0.15 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    func (f *fixture) expectUpdateDeploymentStatusAction(d *apps.Deployment) {
    	action := core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)
    	action.Subresource = "status"
    	f.actions = append(f.actions, action)
    }
    
    func (f *fixture) expectUpdateDeploymentAction(d *apps.Deployment) {
    	action := core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-egressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. cluster/addons/metrics-server/metrics-server-deployment.yaml

        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
        apiVersion: nannyconfig/v1alpha1
        kind: NannyConfiguration
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: metrics-server-v0.7.1
      namespace: kube-system
      labels:
        k8s-app: metrics-server
        addonmanager.kubernetes.io/mode: Reconcile
        version: v0.7.1
    spec:
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/echos.go

    type Echos struct {
    	// NS is the list of echo namespaces.
    	NS []EchoNamespace
    
    	// External (out-of-mesh) deployments
    	External External
    
    	// All echo instances.
    	All echo.Services
    }
    
    func (e *Echos) Echos() *Echos {
    	return e
    }
    
    // New echo deployment with the given configuration.
    func New(ctx resource.Context, cfg Config) (*Echos, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

                } else {
                    return null;
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public Collection<Deployment> getRunningDeployments() {
            lock.lock();
            try {
                List<Deployment> runningDeployments = new ArrayList<>();
                for (RegisteredDeployment deployment : deployments.values()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/controller/deployment/deployment_controller.go

    	logger.V(4).Info("Started syncing deployment", "deployment", klog.KRef(namespace, name), "startTime", startTime)
    	defer func() {
    		logger.V(4).Info("Finished syncing deployment", "deployment", klog.KRef(namespace, name), "duration", time.Since(startTime))
    	}()
    
    	deployment, err := dc.dLister.Deployments(namespace).Get(name)
    	if errors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/addons/dns/dns.go

    	deploymentsClient := client.AppsV1().Deployments(metav1.NamespaceSystem)
    	deployments, err := deploymentsClient.List(context.TODO(), metav1.ListOptions{LabelSelector: "k8s-app=kube-dns"})
    	if err != nil {
    		return "", errors.Wrap(err, "couldn't retrieve DNS addon deployments")
    	}
    
    	switch len(deployments.Items) {
    	case 0:
    		return "", nil
    	case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    	c := kube.NewFakeClient()
    	deployments := kclient.New[*appsv1.Deployment](c)
    	obj1 := &appsv1.Deployment{
    		ObjectMeta: metav1.ObjectMeta{Name: "1", Namespace: "default"},
    		Spec:       appsv1.DeploymentSpec{MinReadySeconds: 1},
    	}
    	clienttest.Wrap(t, deployments).Create(obj1)
    	deployments.AddEventHandler(controllers.EventHandler[*appsv1.Deployment]{
    		AddFunc: func(obj *appsv1.Deployment) {
    			handled.Inc()
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top