Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ENVOY_USER (0.11 sec)

  1. tools/istio-clean-iptables/pkg/config/config.go

    	if c.ProxyUID == "" {
    		usr, err := user.Lookup(envoyUserVar.Get())
    		var userID string
    		// Default to the UID of ENVOY_USER
    		if err != nil {
    			userID = constants.DefaultProxyUID
    		} else {
    			userID = usr.Uid
    		}
    		c.ProxyUID = userID
    	}
    
    	// For TPROXY as its uid and gid are same.
    	if c.ProxyGID == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/constants/constants.go

    		``)
    )
    
    const (
    	DefaultProxyUID    = "1337"
    	DefaultProxyUIDInt = int64(1337)
    )
    
    // Constants used in environment variables
    const (
    	EnvoyUser = "ENVOY_USER"
    )
    
    // Constants for syscall
    const (
    	// sys/socket.h
    	SoOriginalDst = 80
    )
    
    const (
    	DefaultIptablesProbePortUint = 15002
    	DefaultProbeTimeout          = 5 * time.Second
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/config/config.go

    	if c.ProxyUID == "" {
    		usr, err := user.Lookup(envoyUserVar.Get())
    		var userID string
    		// Default to the UID of ENVOY_USER
    		if err != nil {
    			userID = constants.DefaultProxyUID
    		} else {
    			userID = usr.Uid
    		}
    		c.ProxyUID = userID
    	}
    
    	// For TPROXY as its uid and gid are same.
    	if c.ProxyGID == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top