Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mix (0.31 sec)

  1. cni/pkg/nodeagent/ztunnelserver.go

    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    func (z *ztunnelServer) handleConn(ctx context.Context, conn *ZtunnelConnection) error {
    	defer conn.Close()
    
    	context.AfterFunc(ctx, func() {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // flag will result in errors when validating the Pod. All of a Pod's containers must
      // have the same effective HostProcess value (it is not allowed to have a mix of HostProcess
      // containers and non-HostProcess containers).  In addition, if HostProcess is true
      // then HostNetwork must also be set to true.
      // +optional
      optional bool hostProcess = 4;
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. operator/README.md

    spec:
      profile: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/profiles/default.yaml
      installPackagePath: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/charts/
    ```
    
    You can mix and match these approaches. For example, you can use a compiled-in configuration profile with charts in your
    local file system.
    
    #### Check diffs of manifests
    
    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)
  4. architecture/security/istio-agent.md

    ## Authentication
    
    The agent supports two forms of authentication with the CA/discovery servers: mTLS and JWT. Varying deployment
    topologies mix and match these two.
    
    For a standard Kubernetes deployment, both CA and discovery will use JWT authentication, with a token automatically
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  5. istioctl/pkg/validate/validate_test.go

    			args:      []string{"--filename", validFilenameJSON, "--filename", tempDirJSON, "--filename", validTempDirJSON},
    			wantError: true, // Since the directory has invalid files
    		},
    		{
    			name:      "validate mix of yaml and json directories with valid files",
    			args:      []string{"--filename", validTempDirYAML, "--filename", validTempDirJSON},
    			wantError: false,
    		},
    		{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
Back to top