Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 868 for finalizers (0.15 sec)

  1. samples/ambient-argo/meta-application.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: meta-application
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      destination:
        name: in-cluster
        namespace: argocd
        server: ''
      sources:
      - path: istio
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
      - path: application
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    func (meta *ObjectMeta) SetAnnotations(annotations map[string]string) { meta.Annotations = annotations }
    func (meta *ObjectMeta) GetFinalizers() []string                      { return meta.Finalizers }
    func (meta *ObjectMeta) SetFinalizers(finalizers []string)            { meta.Finalizers = finalizers }
    func (meta *ObjectMeta) GetOwnerReferences() []OwnerReference         { return meta.OwnerReferences }
    func (meta *ObjectMeta) SetOwnerReferences(references []OwnerReference) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  3. samples/ambient-argo/istio/tags.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: istio-tags
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      destination:
        name: ambient-cluster
        namespace: istio-system
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        syncOptions:
          - CreateNamespace=true
      source:
        path: tag-chart
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 754 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/job/tracking_utils.go

    // given job-key.
    // This is thread-safe across different job keys.
    func (u *uidTrackingExpectations) expectFinalizersRemoved(logger klog.Logger, jobKey string, deletedKeys []string) error {
    	logger.V(4).Info("Expecting tracking finalizers removed", "key", jobKey, "podUIDs", deletedKeys)
    
    	uids := u.getSet(jobKey)
    	if uids == nil {
    		uids = &uidSet{
    			key: jobKey,
    			set: sets.New[string](),
    		}
    		if err := u.store.Add(uids); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/patch.go

    	ObjectMetaForFinalizersPatch `json:"metadata"`
    }
    
    // ObjectMetaForFinalizersPatch defines object meta struct for finalizers patch operation.
    type ObjectMetaForFinalizersPatch struct {
    	ResourceVersion string   `json:"resourceVersion"`
    	Finalizers      []string `json:"finalizers"`
    }
    
    type objectForPatch struct {
    	ObjectMetaForPatch `json:"metadata"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 5.6K bytes
    - Viewed (0)
Back to top