Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ImagePullPolicy (0.65 sec)

  1. prow/config/calico.yaml

            # upgraded to use calico-ipam.
            - name: upgrade-ipam
              image: gcr.io/istio-testing/calico/cni:v3.27.0
              imagePullPolicy: IfNotPresent
              command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
              envFrom:
              - configMapRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.TerminationMessagePath = in.TerminationMessagePath
    	out.TerminationMessagePolicy = core.TerminationMessagePolicy(in.TerminationMessagePolicy)
    	out.ImagePullPolicy = core.PullPolicy(in.ImagePullPolicy)
    	out.SecurityContext = (*core.SecurityContext)(unsafe.Pointer(in.SecurityContext))
    	out.Stdin = in.Stdin
    	out.StdinOnce = in.StdinOnce
    	out.TTY = in.TTY
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Cannot be updated.
    	// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
    	// +optional
    	ImagePullPolicy PullPolicy `json:"imagePullPolicy,omitempty" protobuf:"bytes,14,opt,name=imagePullPolicy,casttype=PullPolicy"`
    	// 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
    - 390.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
    	ImagePullPolicy string `protobuf:"bytes,13,opt,name=imagePullPolicy,proto3" json:"imagePullPolicy,omitempty"`
    	// ImagePullSecrets for the control plane ServiceAccount, list of secrets in the same namespace
    	// to use for pulling any images in pods that reference this ServiceAccount.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, ValidateVolumeDevices(ctr.VolumeDevices, volMounts, volumes, path.Child("volumeDevices"))...)
    	allErrs = append(allErrs, validatePullPolicy(ctr.ImagePullPolicy, path.Child("imagePullPolicy"))...)
    	allErrs = append(allErrs, ValidateResourceRequirements(&ctr.Resources, podClaimNames, path.Child("resources"), opts)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // 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.
      // If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Required.
    	// +optional
    	TerminationMessagePath string
    	// +optional
    	TerminationMessagePolicy TerminationMessagePolicy
    	// Required: Policy for pulling images for this container
    	ImagePullPolicy PullPolicy
    	// Optional: SecurityContext defines the security options the container should be run with.
    	// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.
    	// +optional
    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. 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)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // 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.
      // If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

    ### **Multicluster**
    
    #### **Federation**
    
    *   Kubefed init now supports --imagePullSecrets and --imagePullPolicy, making it possible to use private registries. ([#50740](https://github.com/kubernetes/kubernetes/pull/50740),[ @dixudx](https://github.com/dixudx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top