Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for updating (0.21 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.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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Kubeadm: improved retries when updating node information, in case `kube-apiserver` is temporarily unavailable ([#114176](https://github.com/kubernetes/kubernetes/pull/114176), [@QuantumEnergyE](https://github.com/QuantumEnergyE))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. 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)
Back to top