Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 134 for It (0.03 sec)

  1. pkg/test/framework/config.go

    		if err != nil {
    			return err
    		}
    
    		for _, cfg := range yamlText {
    			cfg := cfg
    
    			// TODO(https://github.com/istio/istio/issues/37324): It's currently unsafe
    			// to call istioctl concurrently since it relies on the istioctl library
    			// (rather than calling the binary from the command line) which uses a number
    			// of global variables, which will be overwritten for each call.
    			if err := ik.WaitForConfig(ns, cfg); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject.go

    func Cmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check-inject [<type>/]<name>[.<namespace>]",
    		Short: "Check the injection status or inject-ability of a given resource, explains why it is (or will be) injected or not",
    		Long: `
    Checks associated resources of the given resource, and running webhooks to examine whether the pod can be or will be injected or not.`,
    		Example: `  # Check the injection status of a pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

      #
      # By default, the `podDisruptionBudget` is disabled (set to `{}`),
      # which means that no PodDisruptionBudget resource will be created.
      #
      # To enable the PodDisruptionBudget, configure it by specifying the
      # `minAvailable` or `maxUnavailable`. For example, to set the
      # minimum number of available replicas to 1, you can update this value as follows:
      #
      # podDisruptionBudget:
      #   minAvailable: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pilot/pkg/server/instance_test.go

    		wait  bool
    	}{
    		{
    			name: "RunComponent",
    			// Use a large duration - it will not complete before the end of the test.
    			// This is used to verify that we don't wait for it while shutting down.
    			c:     newFakeComponent(longDuration, stop),
    			async: false,
    			wait:  false,
    		},
    		{
    			name: "RunComponentAsync",
    			// Use a large duration - it will not complete before the end of the test.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 23:02:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/factory.go

    	// JwtFilter returns the JWT HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no JWT validation is needed.
    	JwtFilter(useExtendedJwt, clearRouteCache bool) *hcm.HttpFilter
    
    	// AuthNFilter returns the (authn) HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no authentication is needed.
    	AuthNFilter(forSidecar bool) *hcm.HttpFilter
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pkg/config/schema/kubeclient/common.go

    }
    
    // stripUnusedFields is the transform function for shared informers,
    // it removes unused fields from objects before they are stored in the cache to save memory.
    func stripUnusedFields(obj any) (any, error) {
    	t, ok := obj.(metav1.ObjectMetaAccessor)
    	if !ok {
    		// shouldn't happen
    		return obj, nil
    	}
    	// ManagedFields is large and we never use it
    	t.GetObjectMeta().SetManagedFields(nil)
    	return obj, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/validation.go

    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/validation/agent"
    )
    
    // UnixAddressPrefix is the prefix used to indicate an address is for a Unix Domain socket. It is used in
    // ServiceEntry.Endpoint.Address message.
    const (
    	UnixAddressPrefix          = "unix://"
    	PodIPAddressPrefix         = "0.0.0.0"
    	LocalhostAddressPrefix     = "127.0.0.1"
    	PodIPv6AddressPrefix       = "::"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/cds.go

    				if _, f := pushCdsGatewayConfig[config.Kind]; f {
    					return true
    				}
    			}
    			if config.Kind == kind.Gateway {
    				// Do the check outside of the loop since its slow; just trigger we need it
    				checkGateway = true
    			}
    		}
    
    		if _, f := skippedCdsConfigs[config.Kind]; !f {
    			return true
    		}
    	}
    	if checkGateway {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/caclient/providers/citadel/client.go

    )
    
    const (
    	bearerTokenPrefix = "Bearer "
    )
    
    var citadelClientLog = log.RegisterScope("citadelclient", "citadel client debugging")
    
    type CitadelClient struct {
    	// It means enable tls connection to Citadel if this is not nil.
    	tlsOpts  *TLSOptions
    	client   pb.IstioCertificateServiceClient
    	conn     *grpc.ClientConn
    	provider credentials.PerRPCCredentials
    	opts     *security.Options
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery_test.go

    			tt.test(updateCh, expect)
    
    			close(stopCh)
    			wg.Wait()
    		})
    	}
    }
    
    func BenchmarkPushRequest(b *testing.B) {
    	// allTriggers contains all triggers, so we can pick one at random.
    	// It is not a big issue if it falls out of sync, as we are just trying to generate test data
    	allTriggers := []model.TriggerReason{
    		model.EndpointUpdate,
    		model.ConfigUpdate,
    		model.ServiceUpdate,
    		model.ProxyUpdate,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top