Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 519 for ImagePullPolicy (0.29 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    	if data.IsControlPlaneNode() {
    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    		initConfig := data.InitCfg()
    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    		initConfig.NodeRegistration.ImagePullSerial = data.Cfg().Node.ImagePullSerial
    
    		if !data.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/basic.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. samples/helloworld/helloworld.yaml

            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. samples/helloworld/helloworld-dual-stack.yaml

            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    }
    
    // SetDefaults_NodeRegistration sets the defaults for the NodeRegistrationOptions object
    func SetDefaults_NodeRegistration(obj *NodeRegistrationOptions) {
    	if len(obj.ImagePullPolicy) == 0 {
    		obj.ImagePullPolicy = DefaultImagePullPolicy
    	}
    	if obj.ImagePullSerial == nil {
    		obj.ImagePullSerial = ptr.To(true)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
              - --xds-grpc-server=7070
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/alwayspullimages/admission.go

    	}
    
    	var allErrs []error
    	pods.VisitContainersWithPath(&pod.Spec, field.NewPath("spec"), func(c *api.Container, p *field.Path) bool {
    		if c.ImagePullPolicy != api.PullAlways {
    			allErrs = append(allErrs, admission.NewForbidden(attributes,
    				field.NotSupported(p.Child("imagePullPolicy"), c.ImagePullPolicy, []string{string(api.PullAlways)}),
    			))
    		}
    		return true
    	})
    	if len(allErrs) > 0 {
    		return utilerrors.NewAggregate(allErrs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.Node.EtcdUpgrade = ptr.To(true)
    	obj.Node.CertificateRenewal = ptr.To(false)
    	obj.Node.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Node.ImagePullSerial = ptr.To(true)
    
    	obj.Apply.EtcdUpgrade = ptr.To(true)
    	obj.Apply.CertificateRenewal = ptr.To(false)
    	obj.Apply.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.Apply.ImagePullSerial = ptr.To(true)
    
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top