Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for DELETING (0.27 sec)

  1. cluster/gce/upgrade.sh

        exit 1
      fi
    
      echo "== Upgrading master to '${SERVER_BINARY_TAR_URL}'. Do not interrupt, deleting master instance. =="
    
      # Tries to figure out KUBE_USER/KUBE_PASSWORD by first looking under
      # kubeconfig:username, and then under kubeconfig:username-basic-auth.
      # TODO: KUBE_USER is used in generating ABAC policy which the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. build/common.sh

        if [[ "${tag}" != "${2}"* ]] ; then
          V=3 kube::log::status "Keeping image ${1}:${tag}"
          continue
        fi
    
        if [[ -z "${3:-}" || "${tag}" != "${3}" ]] ; then
          V=2 kube::log::status "Deleting image ${1}:${tag}"
          "${DOCKER[@]}" rmi "${1}:${tag}" >/dev/null
        else
          V=3 kube::log::status "Keeping image ${1}:${tag}"
        fi
      done
    }
    
    # Stop and delete all containers that match a pattern
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		}
    		castObj, ok = tombstone.Obj.(*apiextensionsv1.CustomResourceDefinition)
    		if !ok {
    			klog.Errorf("Tombstone contained object that is not expected %#v", obj)
    			return
    		}
    	}
    	klog.V(4).Infof("Deleting %q", castObj.Name)
    	c.enqueue(castObj)
    }
    
    func (c *NamingConditionController) requeueAllOtherGroupCRDs(name string) error {
    	pluralGroup := strings.SplitN(name, ".", 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/aggregator.go

    		}
    		go func() {
    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// deletedVolumeInUseError returned from this function will not be reported
    	// as error and it will be sent as "Info" event to the PV being deleted. The
    	// volume controller will retry deleting the volume in the next periodic
    	// sync. This can be used to postpone deletion of a volume that is being
    	// detached from a node. Deletion of such volume would fail anyway and such
    	// error would confuse users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    | `minio_node_ilm_action_count_delete_action`                  | Total action outcome of lifecycle checks since server start for deleting object                            |
    | `minio_node_ilm_action_count_delete_version_action`          | Total action outcome of lifecycle checks since server start for deleting a version                         |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		return err
    	} else if expiredAt == nil {
    		return nil
    	}
    
    	// The Job's TTL is assumed to have expired, but the Job TTL might be stale.
    	// Before deleting the Job, do a final sanity check.
    	// If TTL is modified before we do this check, we cannot be sure if the TTL truly expires.
    	// The latest Job may have a different UID, but it's fine because the checks will be run again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    	return nil, fmt.Errorf("unable to monitor quota for resource %q", resource.String())
    }
    
    // SyncMonitors rebuilds the monitor set according to the supplied resources,
    // creating or deleting monitors as necessary. It will return any error
    // encountered, but will make an attempt to create a monitor for each resource
    // instead of immediately exiting on an error. It may be called before or after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    	// Case 1: pod is being deleted.
    	if pod.DeletionTimestamp != nil {
    		fwk.EventRecorder().Eventf(pod, nil, v1.EventTypeWarning, "FailedScheduling", "Scheduling", "skip schedule deleting pod: %v/%v", pod.Namespace, pod.Name)
    		klog.FromContext(ctx).V(3).Info("Skip schedule deleting pod", "pod", klog.KObj(pod))
    		return true
    	}
    
    	// Case 2: pod that has been assumed could be skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top