Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for updating (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`. ([#116065](https://github.com/kubernetes/kubernetes/pull/116065), [@sanposhiho](https://github.com/sanposhiho))
    - When updating a CRD, per-expression cost limit check are now skipped for `x-kubernetes-validations` rules of versions that are not mutated. ([#121460](https://github.com/kubernetes/kubernetes/pull/121460), [@jiahuif](https://github.com/jiahuif))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - Fix problem in updating VolumeAttached in node status ([#112302](https://github.com/kubernetes/kubernetes/pull/112302), [@xing-yang](https://github.com/xing-yang)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.15.md

    - Fix invalid VMSS updates due to incorrect cache ([#89002](https://github.com/kubernetes/kubernetes/pull/89002), [@ArchangelSDY](https://github.com/ArchangelSDY)) [SIG Cloud Provider]
    - Fix the VMSS name and resource group name when updating Azure VMSS for LoadBalancer backendPools ([#89337](https://github.com/kubernetes/kubernetes/pull/89337), [@feiskyer](https://github.com/feiskyer)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.26.md

    - Metrics for `RetroactiveDefaultStorageClass` feature are now available. To see an attempt count for updating PVC retroactively with a default StorageClass see `retroactive_storageclass_total` metric and for total numer of errors see `retroactive_storageclass_errors_total`. ([#113323](https://github.com/kubernetes/kubernetes/pull/113323), [@RomanBednar]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.20.md

    - Fix: ignore not a VMSS error for VMAS nodes in EnsureBackendPoolDeleted. (#105404, @ialidzhikov) [SIG Cloud Provider]
    - Fix: ignore the case when updating Azure tags (#104687, @nilo19) [SIG Cloud Provider]
    - Revert PR #102925 which introduced unexpected scheduling behavior based on balanced resource allocation (#105239, @damemi) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    				if tc.update.expectError && err != nil {
    					return
    				}
    				if err != nil {
    					t.Fatalf("unexpected error updating service: %v", err)
    				}
    				if tc.update.expectError && err == nil {
    					t.Fatalf("unexpected success updating service")
    				}
    				if created {
    					t.Fatalf("unexpected create-on-update")
    				}
    				updatedSvc := obj.(*api.Service)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// token into.
    	Path string
    }
    
    // ClusterTrustBundleProjection allows a pod to access the
    // `.spec.trustBundle` field of a ClusterTrustBundle object in an auto-updating
    // file.
    type ClusterTrustBundleProjection struct {
    	// Select a single ClusterTrustBundle by object name.   Mutually-exclusive
    	// with SignerName and LabelSelector.
    	Name *string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    * Re-enable nodeipam controller for external clouds.  ([#63049](https://github.com/kubernetes/kubernetes/pull/63049), [@andrewsykim](https://github.com/andrewsykim))
    * kubelet: fix hangs in updating Node status after network interruptions/changes between the kubelet and API server ([#63492](https://github.com/kubernetes/kubernetes/pull/63492), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	return append(allErrs, ValidateService(service)...)
    }
    
    // ValidateServiceStatusUpdate tests if required fields in the Service are set when updating status.
    func ValidateServiceStatusUpdate(service, oldService *core.Service) field.ErrorList {
    	allErrs := ValidateObjectMetaUpdate(&service.ObjectMeta, &oldService.ObjectMeta, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    		return false
    	}
    
    	// Anything else is assumed to match
    	return true
    }
    
    // runChain runs the given packet through the rules in the given table and chain, updating
    // tracer's internal state accordingly. It returns true if it hits a terminal action.
    func (tracer *iptablesTracer) runChain(table utiliptables.Table, chain utiliptables.Chain, sourceIP, protocol, destIP, destPort string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top