Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for declareNS (0.45 sec)

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

    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    		},
    		{
    			name:   "strict",
    			config: strictMode,
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/config/constants/constants.go

    	TestVMLabel = "istio.io/test-vm"
    
    	TestVMVersionLabel = "istio.io/test-vm-version"
    
    	// Label to skip config comparison.
    	AlwaysPushLabel = "internal.istio.io/always-push"
    
    	// InternalParentNames declares the original resources of an internally-generated config.
    	// This is used by k8s gateway-api.
    	// It is a comma separated list. For example, "HTTPRoute/foo.default,HTTPRoute/bar.default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    			// ingress listener port means the target port, may not equal to service port
    			ingressPortListSet.Contains(int(port.TargetPort)) {
    			// here if port is declared in service and sidecar ingress both, we continue to take the one on sidecar + other service ports
    			// e.g. 1,2, 3 in service and 3,4 in sidecar ingress,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/security/security.go

    )
    
    const (
    	BearerTokenPrefix = "Bearer "
    
    	K8sTokenPrefix = "Istio "
    
    	// CertSigner info
    	CertSigner = "CertSigner"
    
    	// ImpersonatedIdentity declares the identity we are requesting a certificate on behalf of.
    	// This is constrained to only allow identities in CATrustedNodeAccounts, and only to impersonate identities
    	// on their node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    		// Do not return blackhole cluster for service==nil case as there is a legitimate use case for
    		// calling this function with nil service: to route to a pre-defined statically configured cluster
    		// declared as part of the bootstrap.
    		// If blackhole cluster is needed, do the check on the caller side. See gateway and tls.go for examples.
    	}
    
    	if service != nil {
    		_, wps := findWaypointResources(lb.node, lb.push)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    )
    
    func RecordRejectedConfig(gatewayName string) {
    	totalRejectedConfigs.With(typeTag.Value("gateway"), nameTag.Value(gatewayName)).Increment()
    }
    
    // DisableGatewayPortTranslationLabel is a label on Service that declares that, for that particular
    // service, we should not translate Gateway ports to target ports. For example, if I have a Service
    // on port 80 with target port 8080, with the label. Gateways on port 80 would *not* match. Instead,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		bind = ""
    	}
    	// For each workload port, we will construct a cluster
    	for epPort, instances := range clustersToBuild {
    		if ingressPortListSet.Contains(int(instances[0].Port.TargetPort)) {
    			// here if port is declared in service and sidecar ingress both, we continue to take the one on sidecar + other service ports
    			// e.g. 1,2, 3 in service and 3,4 in sidecar ingress,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    		})
    	}
    
    	// Verify that the collections actually accessed during testing actually match
    	// the collections declared as inputs for each of the analyzers
    	t.Run("CheckMetadataInputs", func(t *testing.T) {
    		g := NewWithT(t)
    	outer:
    		for _, a := range All() {
    			var isMultiClusterAnalyzer bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top