Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 918 for It (0.02 sec)

  1. releasenotes/notes/external-name.yaml

          * Ports not declared as `HTTP` would match *all* traffic on that port, making it easy to accidentally send all traffic on a port to the wrong place.
          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/netns_linux_test.go

    package nodeagent
    
    import "testing"
    
    func TestOpenNetns(t *testing.T) {
    	ns, err := OpenNetns("/proc/self/ns/net")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	// the inode for netns is proc dynamic, so it needs to be higher than
    	// #define PROC_DYNAMIC_FIRST 0xF0000000U
    
    	if ns.Inode() < 0xF0000000 {
    		t.Fatalf("unexpected inode: %v", ns.Inode())
    	}
    	defer ns.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 976 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    		for _, wl := range model.ExtractWorkloadsFromAddresses(a.Lookup(addr)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/log/options.go

    	// files are called backups. Once a backup has been created,
    	// output resumes to this path.
    	RotateOutputPath string
    
    	// RotationMaxSize is the maximum size in megabytes of a log file before it gets
    	// rotated. It defaults to 100 megabytes.
    	RotationMaxSize int
    
    	// RotationMaxAge is the maximum number of days to retain old log files based on the
    	// timestamp encoded in their filename. Note that a day is defined as 24
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. tests/integration/helm/install_test.go

    	framework.
    		NewTest(t).
    		RequireKubernetesMinorVersion(30).
    		Run(setupInstallationWithCustomCheck(overrideValuesStr, false, DefaultNamespaceConfig, func(t framework.TestContext) {
    			// Try to apply an EnvoyFilter (it should be rejected)
    			expectedErrorPrefix := `%s "sample" is forbidden: ValidatingAdmissionPolicy 'stable-channel-default-policy.istio.io' ` +
    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. common/scripts/tracing.sh

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pkg/config/mesh/networks_watcher.go

    	handlers     []*WatcherHandlerRegistration
    	networks     *meshconfig.MeshNetworks
    	prevNetworks *meshconfig.MeshNetworks
    }
    
    // NewFixedNetworksWatcher creates a new NetworksWatcher that always returns the given config.
    // It will never fire any events, since the config never changes.
    func NewFixedNetworksWatcher(networks *meshconfig.MeshNetworks) NetworksWatcher {
    	return &internalNetworkWatcher{
    		networks: networks,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. samples/helloworld/README.md

    # Helloworld service
    
    This sample includes two versions of a simple helloworld service that returns its version
    and instance (hostname) when called.
    It can be used as a test service when experimenting with version routing.
    
    This service is also used to demonstrate canary deployments working in conjunction with autoscaling.
    See [Canary deployments using Istio](https://istio.io/blog/2017/0.1-canary).
    
    ## Start the helloworld service
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top