Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for It (0.1 sec)

  1. pilot/pkg/networking/core/route/retry/retry.go

    		// assumed to be status codes.
    		out.RetryOn, out.RetriableStatusCodes = parseRetryOn(in.RetryOn)
    		// If user has just specified HTTP status codes in retryOn but have not specified "retriable-status-codes", let us add it.
    		if len(out.RetriableStatusCodes) > 0 && !strings.Contains(out.RetryOn, "retriable-status-codes") {
    			out.RetryOn += ",retriable-status-codes"
    		}
    	}
    
    	if in.PerTryTimeout != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/gce.go

    		exp.String(), gracePeriod.String(), rotate)
    	return rotate
    }
    
    // GetPlatformCredential fetches the GCE VM identity jwt token from its metadata server,
    // and write it to jwtPath. The local copy of the token in jwtPath is used by both
    // Envoy STS client and istio agent to fetch certificate and access token.
    // Note: this function only works in a GCE VM environment.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/envoy/agent.go

    	knownIstioListeners sets.String
    
    	exitOnZeroActiveConnections bool
    
    	skipDrain *atomic.Bool
    }
    
    type exitStatus struct {
    	err error
    }
    
    // Run starts the envoy and waits until it terminates.
    // There are a few exit paths:
    //  1. Envoy exits. In this case, we simply log and exit.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store.go

    		ikey := makeInstanceKey(instance)
    		hostPort := hostPort{ikey, instance.ServicePort.Port}
    		// For DNSRoundRobinLB resolution type, check if service instances already exist and do not add
    		// if it already exist. This can happen if two Service Entries are created with same host name,
    		// resolution as DNS_ROUND_ROBIN and with same/different endpoints.
    		if instance.Service.Resolution == model.DNSRoundRobinLB &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    		trusted bool
    	}{
    		{
    			name:    "localhost client with port",
    			cidr:    "",
    			peer:    "127.0.0.1:9901",
    			trusted: true,
    		},
    		{
    			// Should never happen, added test case for testing it.
    			name:    "localhost client without port",
    			cidr:    "",
    			peer:    "127.0.0.1",
    			trusted: false,
    		},
    		{
    			name:    "external client without trusted cidr",
    			cidr:    "",
    			peer:    "172.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/main_test.go

    		Ports:     []echo.Port{},
    		Subsets: []echo.SubsetConfig{{
    			Version: "v1",
    			// Set up custom annotations to mount the certs. We will re-use the configmap created by "server"
    			// so that we don't need to manage it ourselves.
    			// The paths here match the destination rule above
    			Annotations: map[string]string{
    				annotation.SidecarUserVolume.Name:      `{"custom-certs":{"configMap":{"name":"server-certs"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/mirror_test.go

    // from "a" so that it cannot reach "external" directly, and we use a ServiceEntry to define our "external" website, which
    // is static and points to the service "external" ip.
    
    // Thus when "a" tries to mirror to the external service, it is actually connecting to "external" (which is not part of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/daemonset.yaml

                # But we don't need _everything_ in `privileged`, so drop+readd capabilities based on feature.
                # privileged is redundant with CAP_SYS_ADMIN
                # since it's redundant, hardcode it to `true`, then manually drop ALL + readd granular
                # capabilities we actually require
                capabilities:
                  drop:
                  - ALL
                  add:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/xdsgen.go

    	if gen == nil {
    		return nil
    	}
    
    	t0 := time.Now()
    
    	// If delta is set, client is requesting new resources or removing old ones. We should just generate the
    	// new resources it needs, rather than the entire set of known resources.
    	// Note: we do not need to account for unsubscribed resources as these are handled by parent removal;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crd/conversion.go

    // the schema. It also returns the list of unrecognized kinds as the second
    // response.
    //
    // NOTE: This function only decodes a subset of the complete k8s
    // ObjectMeta as identified by the fields in model.Meta. This
    // would typically only be a problem if a user dumps an configuration
    // object with kubectl and then re-ingests it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top