Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PullPolicyValues (0.12 sec)

  1. pkg/wasm/options.go

    		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,
    }
    
    // GetOptions is a struct for providing options to Get method of Cache.
    type GetOptions struct {
    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. pkg/wasm/convert.go

    			}
    			pullSecret = []byte(sec)
    		}
    
    		if ps, found := envs.KeyValues[model.WasmPolicyEnv]; found {
    			if p, found := PullPolicyValues[ps]; found {
    				pullPolicy = p
    			}
    		}
    		resourceVersion = envs.KeyValues[model.WasmResourceVersionEnv]
    
    		// Strip all internal env variables(with ISTIO_META) from VM env variable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top