Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for createBlob (0.12 sec)

  1. cmd/kubeadm/app/phases/upgrade/health.go

    		createdJob, err := client.BatchV1().Jobs(ns).Create(context.Background(), job, metav1.CreateOptions{})
    		if err != nil {
    			klog.V(2).Infof("Could not create a Job with the prefix %q in the namespace %q, retrying: %v", prefix, ns, err)
    			lastError = err
    			return false, nil
    		}
    
    		jobName = createdJob.Name
    		return true, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2.go

    	if err != nil {
    		logger.Error(err, "Unable to make Job from template", "cronjob", klog.KObj(cronJob))
    		return nil, updateStatus, err
    	}
    	jobResp, err := jm.jobControl.CreateJob(cronJob.Namespace, jobReq)
    	switch {
    	case errors.HasStatusCause(err, corev1.NamespaceTerminatingCause):
    		// if the namespace is being terminated, we don't have to do
    		// anything because any creation will fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124503](https://github.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124570](https://github.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top