Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Implementation (0.18 sec)

  1. architecture/ambient/ztunnel.md

    ## Proxy implementation
    
    In its initial implementations, the ztunnel was actually implemented in 3 different ways: a bespoke Rust implementation, a bespoke Go implementation, and in Envoy.
    
    In the end, [after evaluation](https://docs.google.com/document/d/1c2123cKuYsBDpIon9FFdctWTUIMFweSjgwG7r8l3818/edit), the decision was to move forward with a Rust implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. architecture/networking/pilot.md

    * The Gateway Class controller is a simple controller that just writes a default `GatewayClass` object describing our implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. tests/integration/README.md

    environment-specific details. This means that the test code can (and should, where possible) be written in an
    environment-agnostic manner, so that they can be run against any Istio implementation.
    
    For example, the following code creates and then interacts with a Galley and Pilot component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	RootCertFilePath string
    }
    
    // Client interface defines the clients need to implement to talk to CA for CSR.
    // The Agent will create a key pair and a CSR, and use an implementation of this
    // interface to get back a signed certificate. There is no guarantee that the SAN
    // in the request will be returned - server may replace it.
    type Client interface {
    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. pkg/kube/multicluster/secretcontroller.go

    type ClientBuilder = func(kubeConfig []byte, clusterId cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error)
    
    // Controller is the controller implementation for Secret resources
    type Controller struct {
    	namespace            string
    	configClusterID      cluster.ID
    	configCluster        *Cluster
    	configClusterSyncers []ComponentConstraint
    
    	ClientBuilder ClientBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. security/pkg/pki/util/keycertbundle.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Provides utility methods to generate X.509 certificates with different
    // options. This implementation is Largely inspired from
    // https://golang.org/src/crypto/tls/generate_cert.go.
    
    package util
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"errors"
    	"fmt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. pkg/config/model.go

    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	// InternalError defines a diag.MessageType for message "InternalError".
    	// Description: There was an internal error in the toolchain. This is almost always a bug in the implementation.
    	InternalError = diag.NewMessageType(diag.Error, "IST0001", "Internal error: %v")
    
    	// Deprecated defines a diag.MessageType for message "Deprecated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. cni/README.md

    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Istio CNI injection is currently based on the same Pod annotations used in init-container/inject mode.
    
    ### Selection API
    
    - plugin config "exclude namespaces" applies first
    - ambient is enabled if:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top