Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 479 for sidecars (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/model/proxy.go

    	ServiceAccount string `json:"SERVICE_ACCOUNT,omitempty"`
    
    	// HTTPProxyPort enables http proxy on the port for the current sidecar.
    	// Same as MeshConfig.HttpProxyPort, but with per/sidecar scope.
    	HTTPProxyPort string `json:"HTTP_PROXY_PORT,omitempty"`
    
    	// MeshID specifies the mesh ID environment variable.
    	MeshID string `json:"MESH_ID,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.ValidateServiceEntry,
    	}.MustBuild()
    
    	Sidecar = resource.Builder{
    		Identifier: "Sidecar",
    		Group:      "networking.istio.io",
    		Kind:       "Sidecar",
    		Plural:     "sidecars",
    		Version:    "v1alpha3",
    		VersionAliases: []string{
    			"v1beta1",
    			"v1",
    		},
    		Proto: "istio.networking.v1alpha3.Sidecar", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    		// When the user declares their own ports in Sidecar.egress
    		// with some specific services on those ports, we should not
    		// generate any more listeners on that port as the user does
    		// not want those listeners. Protocol sniffing is not needed.
    		if cur.locked {
    			return
    		}
    	}
    
    	var opts []*filterChainOpts
    	// For HTTP_PROXY protocol defined by sidecars, just create the HTTP listener right away.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top