Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 310 for deploymentID (0.19 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    }
    
    func deploymentComplete(deployment *appsv1.Deployment) bool {
    	return deployment.Status.UpdatedReplicas == *(deployment.Spec.Replicas) &&
    		deployment.Status.Replicas == *(deployment.Spec.Replicas) &&
    		deployment.Status.AvailableReplicas == *(deployment.Spec.Replicas) &&
    		deployment.Status.ReadyReplicas == *(deployment.Spec.Replicas) &&
    		deployment.Status.ObservedGeneration >= deployment.Generation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
              {{- else if .Values.meshConfig.trustDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    func SetFromReplicaSetTemplate(deployment *apps.Deployment, template v1.PodTemplateSpec) *apps.Deployment {
    	deployment.Spec.Template.ObjectMeta = template.ObjectMeta
    	deployment.Spec.Template.Spec = template.Spec
    	deployment.Spec.Template.ObjectMeta.Labels = labelsutil.CloneAndRemoveLabel(
    		deployment.Spec.Template.ObjectMeta.Labels,
    		apps.DefaultDeploymentUniqueLabelKey)
    	return deployment
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
              {{- else if .Values.meshConfig.trustDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/controller/deployment/sync.go

    //  2. Get new RS this deployment targets (whose pod template matches deployment's), and update new RS's revision number to (maxOldV + 1),
    //     only if its revision number is smaller than (maxOldV + 1). If this step failed, we'll update it in the next deployment sync loop.
    //  3. Copy new RS's revision number to deployment (update deployment's revision). If this step failed, we'll update it in the next deployment sync loop.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/controller/deployment/util/deployment_util_test.go

    			deployment: deployment(5, intstr.FromInt32(10)),
    			expected:   int32(5),
    		},
    		{
    			name:       "maxUnavailable with replicas is 0",
    			deployment: deployment(0, intstr.FromInt32(10)),
    			expected:   int32(0),
    		},
    		{
    			name: "maxUnavailable with Recreate deployment strategy",
    			deployment: apps.Deployment{
    				Spec: apps.DeploymentSpec{
    					Strategy: apps.DeploymentStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top