Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 915 for It (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/log/scope.go

    	return s.logCallers.Load().(bool)
    }
    
    // copy makes a copy of s and returns a pointer to it.
    func (s *Scope) copy() *Scope {
    	out := *s
    	out.labels = copyStringInterfaceMap(s.labels)
    	return &out
    }
    
    // WithLabels adds a key-value pairs to the labels in s. The key must be a string, while the value may be any type.
    // It returns a copy of s, with the labels added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. cni/pkg/repair/netns.go

    // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where
    // it might be.
    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/ready/probe.go

    	// have started, they will not go back in the life time of Envoy process.
    	// They will only change at hot restart or health check fails. Since istio
    	// does not use both of them, it is safe to cache this value. Since the
    	// actual readiness probe goes via Envoy, it ensures that Envoy is actively
    	// serving traffic and we can rely on that.
    	if p.atleastOnceReady {
    		return nil
    	}
    
    	err := checkEnvoyStats(p.LocalHostAddr, p.AdminPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top