Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for pullpolicy (0.28 sec)

  1. pkg/wasm/options.go

    		HTTPRequestTimeout:    DefaultHTTPRequestTimeout,
    		HTTPRequestMaxRetries: DefaultHTTPRequestMaxRetries,
    	}
    }
    
    type PullPolicy int32
    
    const (
    	Unspecified  PullPolicy = 0
    	IfNotPresent PullPolicy = 1
    	Always       PullPolicy = 2
    )
    
    var PullPolicyValues = map[string]PullPolicy{
    	"UNSPECIFIED_POLICY": 0,
    	"IfNotPresent":       1,
    	"Always":             2,
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. helm/minio/templates/post-job.yaml

                runAsUser: {{ .Values.makePolicyJob.securityContext.runAsUser }}
                runAsGroup: {{ .Values.makePolicyJob.securityContext.runAsGroup }}
              {{- end }}
              imagePullPolicy: {{ .Values.mcImage.pullPolicy }}
              {{- if .Values.makePolicyJob.exitCommand }}
              command: [ "/bin/sh", "-c" ]
              args: [ "/bin/sh /config/add-policy; EV=$?; {{ .Values.makePolicyJob.exitCommand }} && exit $EV" ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/wasm/cache_test.go

    	wantFilePath2 := generateModulePath(t, tmpDir, url2, fmt.Sprintf("%x.wasm", sha256.Sum256(binary2)))
    	var defaultPullPolicy PullPolicy
    
    	testWasmGet := func(downloadURL string, policy PullPolicy, resourceVersion string, wantFilePath string, wantNumRequest int) {
    		t.Helper()
    		gotFilePath, err := cache.Get(downloadURL, GetOptions{
    			ResourceName:    "namespace.resource",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/flags.go

    		"Common Container variant to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.PullPolicy, "istio.test.pullpolicy", settingsFromCommandLine.Image.PullPolicy,
    		"Common image pull policy to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.PullSecret, "istio.test.imagePullSecret", settingsFromCommandLine.Image.PullSecret,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pkg/wasm/cache.go

    			// remove tag or sha
    			return ociURLPrefix + tag.Context().Name()
    		}
    	}
    	return fullURLStr
    }
    
    func shouldIgnoreResourceVersion(pullPolicy PullPolicy, u *url.URL) bool {
    	switch pullPolicy {
    	case Always:
    		// When Always, pull a wasm module when the resource version is changed.
    		return false
    	case IfNotPresent:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tests/integration/pilot/gw_topology_test.go

    			}
    
    			templateParams := map[string]string{
    				"imagePullSecret": t.Settings().Image.PullSecret,
    				"injectLabel":     injectLabel,
    				"imagePullPolicy": t.Settings().Image.PullPolicy,
    			}
    
    			// we only apply to config clusters
    			t.ConfigIstio().Eval(gatewayNs.Name(), templateParams, `apiVersion: v1
    kind: Service
    metadata:
      name: custom-gateway
      labels:
        istio: ingressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pkg/wasm/convert.go

    		Checksum:        remote.Sha256,
    		ResourceName:    resourceName,
    		ResourceVersion: resourceVersion,
    		RequestTimeout:  timeout,
    		PullSecret:      pullSecret,
    		PullPolicy:      pullPolicy,
    	})
    	if err != nil {
    		*status = fetchFailure
    		return fmt.Errorf("cannot fetch Wasm module %v: %w", remote.GetHttpUri().GetUri(), err)
    	}
    
    	// Rewrite remote fetch to local file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/kubelet/images/types.go

    	ErrImageInspect = errors.New("ImageInspectError")
    
    	// ErrImagePull - General image pull error
    	ErrImagePull = errors.New("ErrImagePull")
    
    	// ErrImageNeverPull - Required Image is absent on host and PullPolicy is NeverPullImage
    	ErrImageNeverPull = errors.New("ErrImageNeverPull")
    
    	// ErrInvalidImageName - Unable to parse the image name.
    	ErrInvalidImageName = errors.New("InvalidImageName")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/settings.go

    	result += fmt.Sprintf("Tag:               						 %s\n", s.Image.Tag)
    	result += fmt.Sprintf("Variant:           						 %s\n", s.Image.Variant)
    	result += fmt.Sprintf("PullPolicy:        						 %s\n", s.Image.PullPolicy)
    	result += fmt.Sprintf("PullSecret:        						 %s\n", s.Image.PullSecret)
    	result += fmt.Sprintf("MaxDumps:          						 %d\n", s.MaxDumps)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-cni/templates/daemonset.yaml

              image: "{{ .Values.cni.hub | default .Values.global.hub }}/{{ .Values.cni.image | default "install-cni" }}:{{ template "istio-tag" . }}"
    {{- end }}
    {{- if or .Values.cni.pullPolicy .Values.global.imagePullPolicy }}
              imagePullPolicy: {{ .Values.cni.pullPolicy | default .Values.global.imagePullPolicy }}
    {{- end }}
              readinessProbe:
                httpGet:
                  path: /readyz
                  port: 8000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top