Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,034 for It (0.02 sec)

  1. pilot/pkg/networking/core/extension/wasmplugin.go

    	// secret, and replace the env variable value with it. When ECDS config update reaches the proxy,
    	// agent will extract out the secret from env variable, use it for image pulling, and strip the
    	// env variable from VM config before forwarding it to envoy.
    	envs := pluginConfig.GetVmConfig().GetEnvironmentVariables().GetKeyValues()
    	secretName := envs[model.WasmSecretEnv]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. cni/pkg/pluginlistener/listener.go

    		// Anything other than "file not found" is an error.
    		return nil, fmt.Errorf("failed to remove unix://%s: %v", path, err)
    	}
    
    	// Attempt to create the folder in case it doesn't exist
    	if err := os.MkdirAll(filepath.Dir(path), 0o750); err != nil {
    		// If we cannot create it, just warn here - we will fail later if there is a real error
    		log.Warnf("Failed to create directory for %v: %v", path, err)
    	}
    
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // +optional
      repeated ImageReviewContainerSpec containers = 1;
    
      // Annotations is a list of key-value pairs extracted from the Pod's annotations.
      // It only includes keys which match the pattern `*.image-policy.k8s.io/*`.
      // It is up to each webhook backend to determine how to interpret these annotations, if at all.
      // +optional
      map<string, string> annotations = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. manifests/charts/base/values.yaml

        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
        # Platform where Istio is deployed. Possible values are: "openshift", "gcp".
        # An empty value means it is a vanilla Kubernetes distribution, therefore no special
        # treatment will be considered.
        platform: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/setup.go

    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    // Note: function may be called multiple times during the setup process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  6. releasenotes/notes/manifest-base-cleanup.yaml

          Note: most resources have a suffix automatically added in addition.
          In the old chart, this was `-{{ .Values.global.istioNamespace }}`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/monitor.go

    				if err == nil && s != nil && s.IsDir() {
    					// If it's a directory, add a watch for it so we see nested files.
    					if e.Op&fsnotify.Create != 0 {
    						log.Debugf("add watch for %v: %v", s.Name(), watcher.watchRecursive(e.Name))
    					}
    				}
    				// Can't stat a deleted directory, so attempt to remove it. If it fails it is not a problem
    				if e.Op&fsnotify.Remove != 0 {
    					_ = watcher.Remove(e.Name)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pilot/pkg/security/trustdomain/bundle.go

    				"domain or its aliases", trustDomainFromPrincipal, principal)
    			// when SkipValidateTrustDomain is being used the message isn't very meaningful so we'll log it at a lower level
    			// logging it at this level may help users who are looking to disable skipping validation understand if it's safe
    			if !features.SkipValidateTrustDomain {
    				authzLog.Warn(msg)
    			} else {
    				authzLog.Debug(msg)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/test/util.go

    	"go.uber.org/atomic"
    )
    
    // SetForTest sets a variable for the duration of a test, then resets it once the test is complete.
    func SetForTest[T any](t Failer, vv *T, v T) {
    	old := *vv
    	*vv = v
    	t.Cleanup(func() {
    		*vv = old
    	})
    }
    
    // SetEnvForTest sets an environment variable for the duration of a test, then resets it once the test is complete.
    func SetEnvForTest(t Failer, k, v string) {
    	old, oldset := os.LookupEnv(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1/generated.proto

      // without any of its container crashing, for it to be considered available.
      // Defaults to 0 (pod will be considered available as soon as it is ready)
      // +optional
      optional int32 minReadySeconds = 4;
    
      // Selector is a label query over pods that should match the replica count.
      // Label keys and values that must match in order to be controlled by this replica set.
      // It must match the pod template's labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top