Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for CUSTOM (0.09 sec)

  1. pilot/pkg/bootstrap/options.go

    // NewPilotArgs constructs pilotArgs with default values.
    func NewPilotArgs(initFuncs ...func(*PilotArgs)) *PilotArgs {
    	p := &PilotArgs{}
    
    	// Apply Default Values.
    	p.applyDefaults()
    
    	// Apply custom initialization functions.
    	for _, fn := range initFuncs {
    		fn(p)
    	}
    
    	return p
    }
    
    // Apply default value to PilotArgs
    func (p *PilotArgs) applyDefaults() {
    	p.Namespace = PodNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		istiodCertBundleWatcher: keycertbundle.NewWatcher(),
    		webhookInfo:             &webhookInfo{},
    	}
    	s.workloadTrustBundle = tb.NewTrustBundle(nil, e.Watcher)
    
    	// Apply custom initialization functions.
    	for _, fn := range initFuncs {
    		fn(s)
    	}
    	// Initialize workload Trust Bundle before XDS Server
    	e.TrustBundle = s.workloadTrustBundle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

        * New docs section: [Custom Request and APIRoute class](https://fastapi.tiangolo.com/advanced/custom-request-and-route/).
        * PR [#589](https://github.com/tiangolo/fastapi/pull/589) by [@dmontagu](https://github.com/dmontagu).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    	// and telemetry.
    	bind string
    
    	// extraBind is string slice and each element is similar with bind address and support multiple addresses for 'virtual' listener
    	extraBind []string
    
    	// tlsSettings defines the *custom* TLS settings for the chain. mTLS settings are orthogonal; this
    	// only configures TLS overrides.
    	tlsSettings *networking.ServerTLSSettings
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package crdclient provides an implementation of the config store and cache
    // using Kubernetes Custom Resources and the informer framework from Kubernetes
    //
    // This code relies heavily on code generation for performance reasons; to implement the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. pkg/security/security.go

    	FileMountedCerts bool
    
    	// PilotCertProvider is the provider of the Pilot certificate (PILOT_CERT_PROVIDER env)
    	// Determines the root CA file to use for connecting to CA gRPC:
    	// - istiod
    	// - k8s.io/NAME
    	// - custom - requires Istiod TLS certs to be available as files
    	// - none
    	//
    	// This is used only in agent.
    	PilotCertProvider string
    
    	// secret TTL.
    	SecretTTL time.Duration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    	// networking properties.
    	if iss != "" && // issuer set explicitly or extracted from our own JWT
    		k8sInCluster.Get() == "" { // not running in cluster - in cluster use direct call to apiserver
    		// Add a custom authenticator using standard JWT validation, if not running in K8S
    		// When running inside K8S - we can use the built-in validator, which also check pod removal (invalidation).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    	if svc != nil {
    		authnBuilder = authn.NewBuilderForService(lb.push, lb.node, svc)
    		authzBuilder = authz.NewBuilderForService(authz.Local, lb.push, lb.node, true, svc)
    		authzCustomBuilder = authz.NewBuilderForService(authz.Custom, lb.push, lb.node, true, svc)
    	}
    
    	// TODO: consider dedicated listener class for waypoint filters
    	cls := istionetworking.ListenerClassSidecarInbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    					"foo": {},
    					"baz": {},
    				},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    	clientSideSampling := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				Match: &tpb.Tracing_TracingSelector{
    					Mode: tpb.WorkloadMode_CLIENT,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    						{
    							Port: &networking.PortSelector{
    								Number: 8080,
    							},
    							Tls: &networking.ClientTLSSettings{
    								Mode: networking.ClientTLSSettings_ISTIO_MUTUAL,
    								Sni:  "custom.sni.com",
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	mesh := testMesh()
    	mesh.EnableAutoMtls.Value = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top