Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for updating (0.25 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // One of Always, Never, IfNotPresent.
      // Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
      // +optional
      optional string imagePullPolicy = 14;
    
      // SecurityContext defines the security options the container should be run with.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"imagePullPolicy":          "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field
    	// of ClusterTrustBundle objects in an auto-updating file.
    	//
    	// Alpha, gated by the ClusterTrustBundleProjection feature gate.
    	//
    	// ClusterTrustBundle objects can either be selected by name, or by the
    	// combination of signer name and a label selector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    * For Deployment, ReplicaSet, and DaemonSet, selectors are now immutable when updating via the new `apps/v1beta2` API. For backward compatibility, selectors can still be changed when updating via `apps/v1beta1` or `extensions/v1beta1`. ([#50719](https://github.com/kubernetes/kubernetes/pull/50719), [@crimsonfaith91](https://github.com/crimsonfaith91))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Added consistent vanity import to files and provided tooling for verifying and updating them. ([#120642](https://github.com/kubernetes/kubernetes/pull/120642), [@jcchavezs](https://github.com/jcchavezs))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top