Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Lesh (0.15 sec)

  1. architecture/environments/operator.md

    ## CLI
    
    The CLI `mesh` command is implemented in the [cmd/mesh](../operator/cmd/mesh/)
    subdirectory as a Cobra command with the following subcommands:
    
    - [manifest](../operator/cmd/mesh/manifest.go): the manifest subcommand is used to generate, install, diff or migrate Istio manifests, it has the following subcommands:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 13.4K bytes
    - Viewed (0)
  2. Makefile.core.mk

    		grep -Pv 'envoy/service/discovery/v3' |\
    		grep -Pv 'envoy/extensions/wasm/' |\
    		grep -Pv 'envoy/extensions/filters/(http|network)/wasm/' |\
    		grep -Pv 'istio\.io/api/(annotation|label|mcp|mesh|networking|security/v1alpha1|type)' |\
    		(! grep -P '^k8s.io|^sigs.k8s.io/gateway-api|cel|antlr|jwx/jwk|envoy/|istio.io/api')
    
    go-gen:
    	@mkdir -p /tmp/bin
    	@PATH="${PATH}":/tmp/bin go generate ./...
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

        axc("Auto Export Controller")
    
        mcfg("Mesh Config")
        dfc("Default Revision Controller")
    ```
    
    As you can see, the landscape of controllers is pretty extensive at this point.
    
    [Service Discovery](#ServiceDiscovery) and [Config Store](#ConfigStore) were already discussed above, so do not need more explanation here.
    
    #### Mesh Config
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  4. architecture/ambient/ztunnel.md

    As ztunnel aims to transparently encrypt and route users traffic, we need a mechanism to capture all traffic entering and leaving "mesh" pods.
    This is a security critical task: if the ztunnel can be bypassed, authorization policies can be bypassed.
    
    Redirection must meet these requirements:
    * All traffic *egressing* a pod in the mesh should be redirected to the node-local ztunnel on port 15001.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 13 02:17:30 GMT 2023
    - 16.6K bytes
    - Viewed (0)
  5. operator/README.md

    ## Introduction
    
    The operator uses the [IstioOperator API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto), which has
    three main components:
    
    - [MeshConfig](https://github.com/istio/api/blob/master/mesh/v1alpha1/config.proto) for runtime config consumed directly by Istio
    control plane components.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  6. cni/README.md

    - watches k8s resource for existing pods, so that pods that have already been started can be moved in or out of the ambient mesh.
    - sends UDS events to ztunnel via a socket whenever a pod is enabled for ambient mesh (whether from CNI plugin or node watcher), instructing ztunnel to create the "tube" socket.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top