Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for It (0.32 sec)

  1. manifests/charts/istiod-remote/values.yaml

        # By default, a template `sidecar` is always provided, which contains the template of default sidecar.
        # To inject other additional templates, define it using the `templates` option, and add it to
        # the default templates list.
        # For example:
        #
        # templates:
        #   hello: |
        #     metadata:
        #       labels:
        #         hello: world
        #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	// TODO share logic with HTTP inspector
    	defaultEnabled := inspectors[0].TLSInspector
    
    	// We have a split path here based on if the passthrough inspector is enabled
    	// If it is, then we need to explicitly opt ports out of the inspector
    	// If it isn't, then we need to explicitly opt ports into the inspector
    	if defaultEnabled {
    		ports := make([]int, 0, len(inspectors))
    		// Collect all ports where TLS inspector is disabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    			ip := pod.Status.PodIP
    			pc.c.opts.XDSUpdater.ProxyUpdate(pc.c.Cluster(), ip)
    		}
    		if isPodUpdate {
    			// Recompute service(s) due to pod label change.
    			// If it is a new pod, no need to recompute, as it yet computed for the first time yet.
    			pc.c.recomputeServiceForPod(pod)
    		}
    	}
    }
    
    func (pc *PodCache) getPodKeys(addr string) []types.NamespacedName {
    	pc.RLock()
    	defer pc.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			}
    		}
    	}
    	patchNetworkFilters(patchContext, patches, lis, fc)
    }
    
    // Test if the patch contains a config for TransportSocket
    // Returns a boolean indicating if the merge was handled by this function; if false, it should still be called
    // outside of this function.
    func mergeTransportSocketListener(fc *listener.FilterChain, lp *model.EnvoyFilterConfigPatchWrapper) (merged bool, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    	maxFormattersLength = 3
    
    	DevStdout = "/dev/stdout"
    
    	builtinEnvoyAccessLogProvider = "envoy"
    )
    
    var (
    	// this is used for testing. it should not be changed in regular code.
    	clusterLookupFn = LookupCluster
    
    	// EnvoyJSONLogFormatIstio map of values for envoy json based access logs for Istio 1.9 onwards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. tests/integration/security/file_mounted_certs/main_test.go

    	if err != nil {
    		return fmt.Errorf("Unable to create pilot secret. %v", err)
    	}
    
    	// Client secret will be used as a "server" and client certificate on the "Echo Client"'s side.
    	// ie. it is going to be used for connections from EchoClient to EchoServer
    	err = CreateCustomSecret(ctx, ClientSecretName, appsNamespace, ClientCertsPath)
    	if err != nil {
    		return fmt.Errorf("Unable to create client secret. %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/accesslog.go

    	// We need to propagate these as part of access log service stream
    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    	config *tcp.TcpProxy, class istionetworking.ListenerClass, svc *model.Service,
    ) *listener.Filter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/net.go

    	openNetns := s.currentPodSnapshot.Get(string(pod.UID))
    	if openNetns != nil {
    		return openNetns, nil
    	}
    	log.Debug("pod netns was not found, trying to find it using procfs")
    	// this can happen if the pod was dynamically added to the mesh after it was created.
    	// in that case, try finding the netns using procfs.
    	if err := s.rescanPod(pod); err != nil {
    		log.Errorf("error scanning proc: error was %s", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    	// context between initializeProxy and addCon, we would not get any pushes triggered for the new
    	// push context, leading the proxy to have a stale state until the next full push.
    	s.addCon(con.ID(), con)
    	// Register that initialization is complete. This triggers to calls that it is safe to access the
    	// proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top