Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for Mathis (0.25 sec)

  1. cni/pkg/nodeagent/ztunnelserver_test.go

    	ztunClient.Close()
    	// this will retry for a bit, so shouldn't flake
    	mt.Assert(ztunnelConnected.Name(), nil, monitortest.Exactly(0))
    }
    
    func podAndNetns() (*v1.Pod, *fakeNs) {
    	devNull, err := os.Open(os.DevNull)
    	if err != nil {
    		panic(err)
    	}
    	// we can't close this now, because we need to pass it from the ztunnel server to the client
    	// it would leak, but this is a test, so we don't care
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/config/model.go

    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    	configEnv, f := lbls[label.IoIstioRev.Name]
    	if !f {
    		// This is a global object, and always included
    		return true
    	}
    	// If the revision is empty, this means we don't specify a revision, and
    	// we should always include it
    	if rev == "" {
    		return true
    	}
    	// Otherwise, only return true if revisions equal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pkg/envoy/proxy.go

    	}
    
    	// Explicitly enable core dumps. This may be desirable more often (by default), but for now we only set it in VM tests.
    	if enableEnvoyCoreDump {
    		args = append(args, "--enable-core-dump")
    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    	}
    }
    
    // splitComponentLog breaks down an argument string into a log level (ie "info") and component log levels (ie "misc:error").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. cni/pkg/ipset/nldeps_linux.go

    }
    
    // Alpine and some distros struggles with this - ipset CLI utilities support this, but
    // the kernel can be out of sync with the CLI utility, leading to errors like:
    //
    // ipset v7.10: Argument `comment' is supported in the kernel module of the set type hash:ip
    // starting from the revision 3 and you have installed revision 1 only.
    // Your kernel is behind your ipset utility.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/external.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    	// This is to ensure `kubectl exec` and similar commands continue to default to the user's container
    	pod.Spec.Containers = modifyContainers(pod.Spec.Containers, ProxyContainerName, proxyLocation)
    
    	if hasContainer(pod.Spec.InitContainers, ProxyContainerName) {
    		// This is using native sidecar support in K8s.
    		// We want istio to be first in this case, so init containers are part of the mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// If set, this indicates a workload expects to directly receive tunnel traffic.
    	// In ztunnel, this means:
    	// * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
    	// * Requests *to* this workload, via the tunnel_protocol, do not need to be de-tunneled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh.go

    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    	// Store the current set proxy config so we don't wipe it out, we will configure this later
    	prevProxyConfig := defaultConfig.DefaultConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conditions.go

    			continue
    		}
    		// We found our highest priority ranking, now we need to collapse this into a single message
    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion.go

    }
    
    // IsAutoPassthrough determines if a listener should use auto passthrough mode. This is used for
    // multi-network. In the Istio API, this is an explicit tls.Mode. However, this mode is not part of
    // the gateway-api, and leaks implementation details. We already have an API to declare a Gateway as
    // a multi-network gateway, so we will use this as a signal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top