Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 991 for finalizers (0.16 sec)

  1. samples/ambient-argo/istio/cni.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: istio-cni
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      destination:
        name: ambient-cluster
        namespace: kube-system
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        syncOptions:
          - CreateNamespace=true
      sources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 811 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	destroyFunc, registry := NewTestGenericStoreRegistry(t)
    	registry.EnableGarbageCollection = true
    	defer destroyFunc()
    
    	createPod := func(i int, finalizers []string) *example.Pod {
    		return &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: fmt.Sprintf("pod-%d", i), Finalizers: finalizers, Generation: initialGeneration},
    			Spec:       example.PodSpec{NodeName: "machine"},
    		}
    	}
    
    	i := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller_test.go

    		},
    		{
    			// same as 13-8 but multiple finalizers exists, only the pv deletion protection finalizer needs to be
    			// removed and the in-tree pv deletion protection finalizer needs to be added.
    			name:                "13-9 migration is enabled but plugin migration feature is disabled, volume has multiple finalizers including external PV deletion protection finalizer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/finalizers/groovy/settings.gradle

    rootProject.name = 'finalizers'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/finalizers/kotlin/settings.gradle.kts

    rootProject.name = "finalizers"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/groovy/settings.gradle

    rootProject.name = 'finalizers-with-failure'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/kotlin/settings.gradle.kts

    rootProject.name = "finalizers-with-failure"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  8. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	claimClone := pvc.DeepCopy()
    	claimClone.ObjectMeta.Finalizers = append(claimClone.ObjectMeta.Finalizers, volumeutil.PVCProtectionFinalizer)
    	_, err := c.client.CoreV1().PersistentVolumeClaims(claimClone.Namespace).Update(ctx, claimClone, metav1.UpdateOptions{})
    	logger := klog.FromContext(ctx)
    	if err != nil {
    		logger.Error(err, "Error adding protection finalizer to PVC", "PVC", klog.KObj(pvc))
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.RangeAllocation.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.RangeAllocation.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top