Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConvertToJwksFetchMode (0.18 sec)

  1. pkg/jwt/jwt.go

    		return "Istiod"
    	case Hybrid:
    		return "Hybrid"
    	case Envoy:
    		return "Envoy"
    	default:
    		return "Unset"
    	}
    }
    
    // ConvertToJwksFetchMode converts from string value mode to enum JwksFetchMode value.
    // true and false are kept for backwards compatibility.
    func ConvertToJwksFetchMode(mode string) JwksFetchMode {
    	switch mode {
    	case "istiod", "false":
    		return Istiod
    	case "hybrid", "true":
    		return Hybrid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 00:53:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    				"istiod/false - Istiod; hybrid/true - Envoy and fallback to Istiod if JWKs server is external; "+
    				"envoy - Envoy.",
    		).Get()
    		return jwt.ConvertToJwksFetchMode(v)
    	}()
    
    	// IstiodServiceCustomHost allow user to bring a custom address or multiple custom addresses for istiod server
    	// for examples: 1. istiod.mycompany.com  2. istiod.mycompany.com,istiod-canary.mycompany.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top