Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 704 for Sidecars (0.24 sec)

  1. pilot/pkg/features/pilot.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	// HTTP10 will add "accept_http_10" to http outbound listeners. Can also be set only for specific sidecars via meta.
    	HTTP10 = env.Register(
    		"PILOT_HTTP10",
    		false,
    		"Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications.",
    	).Get()
    
    	ScopeGatewayToNamespace = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Enables core dumps for newly injected sidecars.
      //
      // If set, newly injected sidecars will have core dumps enabled.
      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
      string excludeIPRanges = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/lds_test.go

    			ConfigNamespace: "exampleegressgw",
    		}, nil, watchAll)
    	})
    }
    
    // TestLDS using default sidecar in root namespace
    func TestLDSWithDefaultSidecar(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: mustReadfolder(t, "tests/testdata/networking/sidecar-ns-scope"),
    		MeshConfig: func() *meshconfig.MeshConfig {
    			m := mesh.DefaultMeshConfig()
    			m.RootNamespace = "istio-config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    ) bool {
    	rMatch := rp.Match.GetRouteConfiguration()
    	if rMatch == nil {
    		return true
    	}
    
    	// we match on the port number and virtual host for sidecars
    	// we match on port number, server port name, gateway name, plus virtual host for gateways
    	if patchContext != networking.EnvoyFilter_GATEWAY {
    		listenerPort := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/tag.go

    revision tag, use 'kubectl label namespace <NAMESPACE> istio.io/rev=%s'
    `
    	webhookNameHelpStr          = "Name to use for a revision tag's mutating webhook configuration."
    	autoInjectNamespacesHelpStr = "If set to true, the sidecars should be automatically injected into all namespaces by default"
    )
    
    // options for CLI
    var (
    	// revision to point tag webhook at
    	revision             = ""
    	manifestsPath        = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    spec:
      hosts:
        - {{ .to.Config.ClusterLocalFQDN }}
      gateways:
        - istio-egressgateway-sds
        - mesh
      http:
        - match:
            - gateways:
                - mesh # from sidecars, route to egress gateway service
              port: 80
          route:
            - destination:
                host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
                subset: server
                port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    	isL7Scheme := opt.Scheme == scheme.HTTP || opt.Scheme == scheme.GRPC || opt.Scheme == scheme.WebSocket
    	return (s || d) && isL7Scheme
    }
    
    // Assumption is ambient test suite sidecars will support HBONE
    // If the assumption is incorrect hboneClient may return invalid result
    func hboneClient(instance echo.Instance) bool {
    	return instance.Config().ZTunnelCaptured()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.gen.go

    	// ConflictingSidecarWorkloadSelectors defines a diag.MessageType for message "ConflictingSidecarWorkloadSelectors".
    	// Description: A Sidecar resource selects the same workloads as another Sidecar resource
    	ConflictingSidecarWorkloadSelectors = diag.NewMessageType(diag.Error, "IST0110", "The Sidecars %v in namespace %q select the same workload pod %q, which can lead to undefined behavior.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

    		}
    	}
    
    	// Post-install message
    	if profile == "ambient" {
    		p.Println("The ambient profile has been installed successfully, enjoy Istio without sidecars!")
    	}
    	return nil
    }
    
    // InstallManifests generates manifests from the given istiooperator instance and applies them to the
    // cluster. See GenManifests for more description of the manifest generation process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier.go

    	filterConfigProto = a.setAuthnFilterForRequestAuthn(filterConfigProto)
    
    	if filterConfigProto == nil {
    		return nil
    	}
    	// disable clear route cache for sidecars because the JWT claim based routing is only supported on gateways.
    	filterConfigProto.DisableClearRouteCache = forSidecar
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top