Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 857 for sidecars (0.39 sec)

  1. manifests/charts/gateways/istio-ingress/files/profile-openshift-ambient.yaml

      cniConfFileName: "istio-cni.conf"
      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
        # Allow sidecars/ingress to send/receive HBONE. This is required for interop.
        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/profile-openshift-ambient.yaml

      cniConfFileName: "istio-cni.conf"
      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
        # Allow sidecars/ingress to send/receive HBONE. This is required for interop.
        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  3. manifests/charts/base/files/profile-openshift-ambient.yaml

      cniConfFileName: "istio-cni.conf"
      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
        # Allow sidecars/ingress to send/receive HBONE. This is required for interop.
        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  4. manifests/charts/gateway/files/profile-openshift-ambient.yaml

      cniConfFileName: "istio-cni.conf"
      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
        # Allow sidecars/ingress to send/receive HBONE. This is required for interop.
        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  5. pkg/config/schema/gvr/resources.gen.go

    	Sidecar                        = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "sidecars"}
    	Sidecar_v1beta1                = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1beta1", Resource: "sidecars"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/name_table.go

    func (configgen *ConfigGeneratorImpl) BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable {
    	if node.Type != model.SidecarProxy {
    		// DNS resolution is only for sidecars
    		return nil
    	}
    	return dnsServer.BuildNameTable(dnsServer.Config{
    		Node:                        node,
    		Push:                        push,
    		MulticlusterHeadlessEnabled: features.MulticlusterHeadlessEnabled,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. samples/httpbin/README.md

    1. Start the httpbin service inside the Istio service mesh:
    
        If you have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection) enabled:
    
        ```bash
        kubectl apply -f httpbin.yaml
        ```
    
        Otherwise, manually inject the sidecars before applying:
    
        ```bash
        kubectl apply -f <(istioctl kube-inject -f httpbin.yaml)
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      #
      # Zipkin trace collector
      zipkinAddress: ""
      #
      # Statsd metrics collector converts statsd metrics into Prometheus metrics.
      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
      #
      # Address where istio Pilot service is running
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. manifests/charts/gateway/README.md

    The image used by the chart, `auto`, may be unintuitive.
    This exists because the pod spec will be automatically populated at runtime, using the same mechanism as [Sidecar Injection](istio.io/latest/docs/setup/additional-setup/sidecar-injection).
    This allows the same configurations and lifecycle to apply to gateways as sidecars.
    
    Note: this does mean that the namespace the gateway is deployed in must not have the `istio-injection=disabled` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. samples/ambient-argo/README.md

    In particular, Istio Sidecars are known to violate the Declarative principle - the version of Istio injected in the sidecar is determined at runtime by the version of the injector at the time the pod was created.  Upgrading the injector does not cause the sidecar to upgrade, instead all injected pods must be restarted in order to upgrade their sidecars, which is an imperative operation, rather than a declarative one.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top