Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 318 for DELETING (0.3 sec)

  1. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    								err := cluster.Kube().CoreV1().Services(echos.Namespace.Name()).Delete(
    									context.TODO(), common.ServiceB, metav1.DeleteOptions{})
    								if err != nil {
    									ctx.Fatalf("failed deleting service %s/%s in cluster %s: %v",
    										echos.Namespace, common.ServiceB, cluster.Name(), err)
    								}
    								retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/controller/validatingadmissionpolicystatus/controller.go

    	}
    	defer c.policyQueue.Done(key)
    
    	err := func() error {
    		policy, err := c.policyInformer.Lister().Get(key)
    		if err != nil {
    			if kerrors.IsNotFound(err) {
    				// If not found, the policy is being deleting, do nothing.
    				return nil
    			}
    			return err
    		}
    		return c.reconcile(ctx, policy)
    	}()
    
    	if err == nil {
    		c.policyQueue.Forget(key)
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	// If the request itself is creating or updating a namespace, then get the
    	// labels from attr.Object, because namespaceLister doesn't have the latest
    	// namespace yet.
    	//
    	// However, if the request is deleting a namespace, then get the label from
    	// the namespace in the namespaceLister, because a delete request is not
    	// going to change the object, and attr.Object will be a DeleteOptions
    	// rather than a namespace object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/pod_manager.go

    	AddPod(pod *v1.Pod)
    	// UpdatePod updates the given pod in the manager.
    	UpdatePod(pod *v1.Pod)
    	// RemovePod deletes the given pod from the manager.  For mirror pods,
    	// this means deleting the mappings related to mirror pods.  For non-
    	// mirror pods, this means deleting from indexes for all non-mirror pods.
    	RemovePod(pod *v1.Pod)
    
    	// TranslatePodUID returns the actual UID of a pod. If the UID belongs to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver_test.go

    		if obj == nil {
    			t.Errorf("%s: Uses[%s] == nil", id.Pos(), id.Value)
    		}
    	}
    
    	// Check that each identifier in the source is found in uses or defs or both.
    	// We need the foundUses/Defs maps (rather than just deleting the found objects
    	// from the uses and defs maps) because syntax.Walk traverses shared nodes multiple
    	// times (e.g. types in field lists such as "a, b, c int").
    	foundUses := make(map[*syntax.Name]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. hack/verify-licenses.sh

    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
    mkdir -p "$ARTIFACTS/logs/"
    
    # Creating a new repository tree 
    # Deleting vendor directory to make go-licenses fetch license URLs from go-packages source repository
    git worktree add -f "${KUBE_TEMP}"/tmp_test_licenses/kubernetes HEAD >/dev/null 2>&1 || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

          # labelPods will label all pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/cleanup.go

    		// This includes things like leader election locks (allowing next test to start without 30s delay),
    		// custom cacerts, custom kubeconfigs, etc.
    		// We avoid deleting the whole namespace since its extremely slow in Kubernetes (30-60s+)
    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. cluster/gce/upgrade-aliases.sh

        routes+=( "${route}" )
      done < <(gcloud compute routes list \
        --project="${PROJECT}" --filter='description=k8s-node-route' \
        --format='value(name)')
      while (( "${#routes[@]}" > 0 )); do
          echo Deleting k8s node routes "${routes[*]::${batch}}"
          gcloud compute routes delete --project "${PROJECT}" --quiet "${routes[@]::${batch}}"
          routes=( "${routes[@]:${batch}}" )
      done
    }
    
    detect-project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/kube/multicluster/secretcontroller.go

    		if err := c.addSecret(key, scrt); err != nil {
    			return fmt.Errorf("error adding secret %s: %v", key, err)
    		}
    	} else {
    		log.Debugf("secret %s does not exist in informer cache, deleting it", key)
    		c.deleteSecret(key.String())
    	}
    	remoteClusters.Record(float64(c.cs.Len()))
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top