Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,819 for Pulling (0.17 sec)

  1. manifests/charts/gateways/istio-egress/values.yaml

        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    	resourceName string
    	// Resource version of WasmPlugin resource. Even though PullPolicy is Always,
    	// if there is no change of resource state, a cached entry is used instead of pulling newly.
    	resourceVersion string
    }
    
    // cacheEntry contains information about a Wasm module cache entry.
    type cacheEntry struct {
    	// File path to the downloaded wasm modules.
    	modulePath string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/wasmplugin_test.go

    			}, "testdata/gateway-wasm-filter.yaml")
    
    			resetCustomWasmConfig(t, "wasm-test-module", "testdata/gateway-wasm-filter.yaml")
    		})
    }
    
    // TestImagePullPolicyWithHTTP tests pulling Wasm Binary via HTTP and ImagePullPolicy.
    func TestImagePullPolicyWithHTTP(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			tag := names.SimpleNameGenerator.GenerateName("test-tag-")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/mvs/mvs_test.go

    # If we downgrade D to D1, then in isolation B3 would downgrade to B1,
    # and C3 would downgrade to C1.
    # But C1 requires B2.hidden, and B1 requires C2.hidden, so we can't
    # downgrade to either of those without pulling the other back up a little.
    #
    # B2.hidden and C2.hidden are both compatible with D1, so that still
    # meets our requirements — but then we're in an odd state in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/values.yaml

        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks.go

    				continue
    			}
    			if err != nil {
    				errorList = append(errorList, errors.Wrapf(err, "failed to check if image %s exists", image))
    			}
    			fallthrough // Proceed with pulling the image if it does not exist
    		case v1.PullAlways:
    			klog.V(1).Infof("pulling: %s", image)
    			if err := ipc.runtime.PullImage(image); err != nil {
    				errorList = append(errorList, errors.WithMessagef(err, "failed to pull image %s", image))
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. build/lib/release.sh

          return 1
        fi
    
        # provide `--pull` argument to `docker build` if `KUBE_BUILD_PULL_LATEST_IMAGES`
        # is set to y or Y; otherwise try to build the image without forcefully
        # pulling the latest base image.
        local docker_build_opts
        docker_build_opts=
        if [[ "${KUBE_BUILD_PULL_LATEST_IMAGES}" =~ [yY] ]]; then
            docker_build_opts='--pull'
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/deadcode.go

    		// "carrier" symbol, or it holds all the symbols for a particular
    		// section. We need to mark all "referenced" symbols from that carrier,
    		// so we make sure we're pulling in all outer symbols, and their sub
    		// symbols. This is not ideal, and these carrier/section symbols could
    		// be removed.
    		if d.ldr.IsExternal(symIdx) {
    			d.mark(d.ldr.OuterSym(symIdx), symIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// Value 'all' ignores errors from all checks.
    	// +optional
    	IgnorePreflightErrors []string `json:"ignorePreflightErrors,omitempty"`
    
    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    	// The value of this field must be one of "Always", "IfNotPresent" or "Never".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top