Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 237 for DELETING (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cni/pkg/nodeagent/informers.go

    		// remove it (the pod process is gone, but kube will keep the Pods around in
    		// a terminated || failed state - we should still do cleanup)
    		if isAnnotated && isTerminated {
    			log.Debugf("deleting pod %s from mesh, reason: isAnnotated(%v), isTerminated(%v)", newPod.Name, isAnnotated, isTerminated)
    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/delete_test.go

    		},
    		{
    			// delete success(?) - volume is deleted before doDelete() starts
    			name:            "8-6 - volume is deleted before deleting",
    			initialVolumes:  newVolumeArray("volume8-6", "1Gi", "uid8-6", "claim8-6", v1.VolumeBound, v1.PersistentVolumeReclaimDelete, classEmpty),
    			expectedVolumes: novolumes,
    			initialClaims:   noclaims,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

            } else {
                // Jars that are in some mutable location (e.g. build/ directory) need to be copied to the global cache,
                // since daemon keeps them locked when loading them to a classloader, which prevents e.g. deleting the build directory on windows
                File copyOfOriginalFile = outputs.file(ORIGINAL_DIR_NAME + "/" + input.getName());
                GFileUtils.copyFile(input, copyOfOriginalFile);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                case RegularFile:
                    throw new IllegalStateException(
                        "Immutable workspace is occupied by a file: " + immutableLocation.getAbsolutePath() + ". " +
                            "Deleting the file in question can allow the content to be recreated.");
                case Missing:
                    return Optional.empty();
                default:
                    throw new AssertionError();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltatest.go

    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    		// TODO: it suspicious full is never nil - are there case where we should be deleting everything?
    		// Both SotW and Delta did not respond, nothing to compare
    		return
    	}
    	newByName := slices.GroupUnique(sotwRes, (*discovery.Resource).GetName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/controller/certificates/certificate_controller.go

    				csr, ok = tombstone.Obj.(*certificates.CertificateSigningRequest)
    				if !ok {
    					logger.V(2).Info("Tombstone contained object that is not a CSR", "object", obj)
    					return
    				}
    			}
    			logger.V(4).Info("Deleting certificate request", "csr", csr.Name)
    			cc.enqueueCertificateRequest(obj)
    		},
    	})
    	cc.csrLister = csrInformer.Lister()
    	cc.csrsSynced = csrInformer.Informer().HasSynced
    	return cc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top