Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for chain (0.05 sec)

  1. pilot/pkg/networking/core/listener_inbound.go

    		}
    		// Build the actual chain
    		chains := lb.inboundChainForOpts(cc, mtls, opts)
    
    		if cc.bindToPort {
    			// If this config is for bindToPort, we want to actually create a real Listener.
    			listeners = append(listeners, lb.inboundCustomListener(cc, chains))
    		} else {
    			// Otherwise, just append the filter chain to the virtual inbound chains.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    		if cfg.cfg.InboundInterceptionMode == constants.TPROXY {
    			// When using TPROXY, create a new chain for routing all inbound traffic to
    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "parent"            | ":"
        }
    
        def "reports problem when root project build script uses chain of methods #chain { } to apply plugins to other projects"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
            buildFile << """
                $chain { it.plugins.apply('java-library') }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    //
    //	Inside, the key/cert are 'ca-key.pem' and 'ca-cert.pem'. The root cert signing the intermediate is root-cert.pem,
    //	which may contain multiple roots. A 'cert-chain.pem' file has the full cert chain.
    func (s *Server) createIstioCA(opts *caOptions) (*ca.IstioCA, error) {
    	var caOpts *ca.IstioCAOptions
    	var detectedSigningCABundle bool
    	var istioGenerated bool
    	var err error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // one or more hosts but have different TLS certificates. In this case, we end up having separate filter chain
    // for each server, with the filter chain match matching on the server specific TLS certs and SNI headers.
    // We have two options here: either have all filter chains use the same RDS route name (e.g. "443") and expose
    // all virtual hosts on that port to every filter chain uniformly or expose only the set of virtual hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. security/pkg/pki/util/crypto_test.go

    BB6nORpwdv4LVt/BFgLwWQIdAKvHn7cxBJ+aAC25rIumRNKDzP7PkV0HDbxtX+M=
    -----END CERTIFICATE-----`
    )
    
    var (
    	certChainValid             = loadPEMFile("../testdata/cert-chain.pem")
    	certChainValidTrailingLine = loadPEMFile("../testdata/cert-chain-trailing-line.pem")
    )
    
    func TestParsePemEncodedCertificate(t *testing.T) {
    	testCases := map[string]struct {
    		errMsg        string
    		pem           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pilot/pkg/simulation/traffic.go

    // not match. This means an empty match (`{}`) may not match if another chain
    // matches one criteria but not another.
    func (sim *Simulation) matchFilterChain(chains []*listener.FilterChain, defaultChain *listener.FilterChain,
    	input Call, hasTLSInspector bool,
    ) (*listener.FilterChain, error) {
    	chains = filter("DestinationPort", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetDestinationPort() == nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	// i.e. mounted Secret or external plugin.
    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    	// DefaultKeyFilePath is the well-known path for an existing key file
    	DefaultKeyFilePath = "./etc/certs/key.pem"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    // TestPeerAuthenticationPassthrough tests the PeerAuthentication policy applies correctly on the passthrough filter chain,
    // including both global configuration and port level configuration.
    func TestPeerAuthenticationPassthrough(t *testing.T) {
    	paStrict := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                }
    
                def chain = providers
                    .systemProperty("foo")
                    .orElse(providers.systemProperty("bar"))
                    .map { "foo | bar = $it" }
                    .orElse(providers.systemProperty("baz"))
                    .map { "($it)" }
    
                tasks.register("ok", PrintValueTask.class) { task ->
                    task.value = chain
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top