Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for krew (0.04 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			}
    			forceDetach := !isHealthy && forceDetatchTimeoutExpired
    
    			hasOutOfServiceTaint, err := rc.hasOutOfServiceTaint(attachedVolume.NodeName)
    			if err != nil {
    				logger.Error(err, "Failed to get taint specs for node", "node", klog.KRef("", string(attachedVolume.NodeName)))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. fuzzing/fuzzingserver-test.sh

    SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
    cd "$SCRIPT_DIR"
    
    which wstest
    if [ $? != 0 ]; then
      echo "Run 'pip install autobahntestsuite', maybe with 'sudo'."
      exit 1
    fi
    which jq
    if [ $? != 0 ]; then
      echo "Run 'brew install jq'"
      exit 1
    fi
    
    trap 'kill $(jobs -pr)' SIGINT SIGTERM EXIT
    
    set -ex
    
    wstest -m fuzzingserver -s fuzzingserver-config.json &
    sleep 2 # wait for wstest to start
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 673 bytes
    - Viewed (0)
  3. pkg/controller/nodeipam/ipam/sync/sync.go

    	logger.V(2).Info("Starting sync loop", "node", klog.KRef("", sync.nodeName))
    
    	defer func() {
    		if done != nil {
    			close(done)
    		}
    	}()
    
    	timeout := sync.c.ResyncTimeout()
    	delayTimer := time.NewTimer(timeout)
    	logger.V(4).Info("Try to resync node later", "node", klog.KRef("", sync.nodeName), "resyncTime", timeout)
    
    	for {
    		select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    				logger.Error(err, "Parsing lastUsed time", "secret", klog.KRef(secret.Namespace, secret.Name))
    				continue
    			}
    			if lastUsed >= preserveUsedOnOrAfter {
    				continue
    			}
    		}
    
    		sa, saErr := tc.getServiceAccount(secret)
    
    		if saErr != nil {
    			logger.Error(saErr, "Getting service account", "secret", klog.KRef(secret.Namespace, secret.Name))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache.go

    			// The pod was added to a different node than it was assumed to.
    			logger.Info("Pod was added to a different node than it was assumed", "podKey", key, "pod", klog.KObj(pod), "assumedNode", klog.KRef("", pod.Spec.NodeName), "currentNode", klog.KRef("", currState.pod.Spec.NodeName))
    			return nil
    		}
    	case !ok:
    		// Pod was expired. We should add it back.
    		if err = cache.addPod(logger, pod, false); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/completion.go

    		the .bash_profile.
    
    		Note: this requires the bash-completion framework.
    
    		To install it on Mac use homebrew:
    		    $ brew install bash-completion
    		Once installed, bash_completion must be evaluated. This can be done by adding the
    		following line to the .bash_profile
    		    $ source $(brew --prefix)/etc/bash_completion
    
    		If bash-completion is not installed on Linux, please install the 'bash-completion' package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/pvprotection/pv_protection_controller.go

    	logger.V(4).Info("Processing PV", "PV", klog.KRef("", pvName))
    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished processing PV", "PV", klog.KRef("", pvName), "cost", time.Since(startTime))
    	}()
    
    	pv, err := c.pvLister.Get(pvName)
    	if apierrors.IsNotFound(err) {
    		logger.V(4).Info("PV not found, ignoring", "PV", klog.KRef("", pvName))
    		return nil
    	}
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    		volumeObj.devicePath = devicePath
    		volumeObj.spec = volumeSpec
    		logger.V(2).Info("Volume is already added to attachedVolume list to node, update device path",
    			"volumeName", volumeName,
    			"node", klog.KRef("", string(nodeName)),
    			"devicePath", devicePath)
    	}
    	node, nodeExists := volumeObj.nodesAttachedTo[nodeName]
    	if !nodeExists {
    		// Create object if it doesn't exist.
    		node = nodeAttachedTo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/controller/util/node/controller_utils.go

    	logger := klog.FromContext(ctx)
    	logger.V(2).Info("Update ready status of pods on node", "node", klog.KRef("", nodeName))
    
    	errs := []error{}
    	for i := range pods {
    		// Defensive check, also needed for tests.
    		if pods[i].Spec.NodeName != nodeName {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/attach_detach_controller.go

    				continue
    			}
    		}
    
    		volumeName, err := volumeutil.GetUniqueVolumeNameFromSpec(plugin, volumeSpec)
    		if err != nil {
    			logger.Error(err, "Failed to find unique name for volume", "node", klog.KRef("", string(nodeName)), "vaName", va.Name, "PV", klog.KRef("", *pvName))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top