Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for rollout (0.14 sec)

  1. operator/pkg/verifier/k8s_util.go

    		return fmt.Errorf("waiting for deployment %q rollout to finish: %d out of %d new replicas have been updated",
    			deployment.Name, deployment.Status.UpdatedReplicas, *deployment.Spec.Replicas)
    	}
    	if deployment.Status.Replicas > deployment.Status.UpdatedReplicas {
    		return fmt.Errorf("waiting for deployment %q rollout to finish: %d old replicas are pending termination",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tests/integration/pilot/cni_race_test.go

    			deleteCNIDaemonset(t, c)
    
    			// Rollout restart instances in the echo namespace, and wait for a broken instance.
    			t.Log("Rollout restart echo instance to get a broken instance")
    			rolloutCmd := fmt.Sprintf("kubectl rollout restart deployment -n %s", ns.Name())
    			if _, err := shell.Execute(true, rolloutCmd); err != nil {
    				t.Fatalf("failed to rollout restart deployments %v", err)
    			}
    			waitForBrokenPodOrFail(t, c, ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/controller/deployment/progress.go

    	"k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller/deployment/util"
    )
    
    // syncRolloutStatus updates the status of a deployment during a rollout. There are
    // cases this helper will run that cannot be prevented from the scaling detection,
    // for example a resync of the deployment after it was scaled up. In those cases,
    // we shouldn't try to estimate any progress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. releasenotes/notes/47574.yaml

      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

    // enabled or disabled, it will decide whether or not to run the bridge.
    //
    // The config_proto param is a required input for all TF1 graphs but it is
    // redundant for TF2 graphs.
    // If getting rollout policy involves graph analysis, `record_stats` is used
    // to decide whether to emit metrics on unsupported features of the graph.
    MlirBridgeRolloutPolicy GetMlirBridgeRolloutPolicy(
        const tensorflow::Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/revisioned_upgrade_test.go

    	}
    
    	log.Infof("rolling out echo workloads for service %q", revisionedInstance.Config().Service)
    	if err := revisionedInstance.Restart(); err != nil {
    		t.Fatalf("revisioned instance rollout failed with: %v", err)
    	}
    	fetch := kubetest.NewPodMustFetch(t.Clusters().Default(), revisionedInstance.Config().Namespace.Name(), fmt.Sprintf("app=%s", revisionedInstance.Config().Service)) // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/runtime/defs_solaris.go

    	MAXHOSTNAMELEN = C.MAXHOSTNAMELEN
    
    	O_WRONLY   = C.O_WRONLY
    	O_NONBLOCK = C.O_NONBLOCK
    	O_CREAT    = C.O_CREAT
    	O_TRUNC    = C.O_TRUNC
    	O_CLOEXEC  = C.O_CLOEXEC
    
    	POLLIN  = C.POLLIN
    	POLLOUT = C.POLLOUT
    	POLLHUP = C.POLLHUP
    	POLLERR = C.POLLERR
    
    	PORT_SOURCE_FD    = C.PORT_SOURCE_FD
    	PORT_SOURCE_ALERT = C.PORT_SOURCE_ALERT
    	PORT_ALERT_UPDATE = C.PORT_ALERT_UPDATE
    )
    
    type SemT C.sem_t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. pkg/version/stats.go

    	istioBuildTag   = monitoring.NewGauge(
    		"istio_build",
    		"Istio component build info",
    	)
    )
    
    // RecordComponentBuildTag sets the value for a metric that will be used to track component build tags for
    // tracking rollouts, etc.
    func (b BuildInfo) RecordComponentBuildTag(component string) {
    	istioBuildTag.With(gitTagKey.Value(b.GitTag), componentTagKey.Value(component)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/runtime/netpoll_aix.go

    		pfd := &pfds[i]
    
    		var mode int32
    		if pfd.revents&(_POLLIN|_POLLHUP|_POLLERR) != 0 {
    			mode += 'r'
    			pfd.events &= ^_POLLIN
    		}
    		if pfd.revents&(_POLLOUT|_POLLHUP|_POLLERR) != 0 {
    			mode += 'w'
    			pfd.events &= ^_POLLOUT
    		}
    		if mode != 0 {
    			pds[i].setEventErr(pfd.revents == _POLLERR, 0)
    			delta += netpollready(&toRun, pds[i], mode)
    			n--
    		}
    	}
    	unlock(&mtxset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/mounter.go

    		}
    	}
    
    	return nil
    }
    
    // GetAttributes get the flex volume attributes. The attributes will be queried
    // using plugin callout after we finalize the callout syntax.
    func (f *flexVolumeMounter) GetAttributes() volume.Attributes {
    	return (*mounterDefaults)(f).GetAttributes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top