You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-12-21 23:57:36 +02:00
introduce mapstructure decoder for yaml parsing
remove color output in tests for better readability in github actions bugfix: remove google as default provider for alpha options fix conversion flow for toml to yaml revert ginkgo color deactivation revert claim- and secret source back to pointers regenerate alpha config Signed-off-by: Jan Larwig <jan@larwig.com>
This commit is contained in:
@@ -234,7 +234,7 @@ var _ = Describe("Server", func() {
|
||||
SecureBindAddress: "127.0.0.1:0",
|
||||
TLS: &options.TLS{
|
||||
Key: &options.SecretSource{
|
||||
Value: []byte("invalid"),
|
||||
Value: "invalid",
|
||||
},
|
||||
Cert: &ipv4CertDataSource,
|
||||
},
|
||||
@@ -250,7 +250,7 @@ var _ = Describe("Server", func() {
|
||||
TLS: &options.TLS{
|
||||
Key: &ipv4KeyDataSource,
|
||||
Cert: &options.SecretSource{
|
||||
Value: []byte("invalid"),
|
||||
Value: "invalid",
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -506,7 +506,7 @@ var _ = Describe("Server", func() {
|
||||
SecureBindAddress: "[::1]:0",
|
||||
TLS: &options.TLS{
|
||||
Key: &options.SecretSource{
|
||||
Value: []byte("invalid"),
|
||||
Value: "invalid",
|
||||
},
|
||||
Cert: &ipv6CertDataSource,
|
||||
},
|
||||
@@ -523,7 +523,7 @@ var _ = Describe("Server", func() {
|
||||
TLS: &options.TLS{
|
||||
Key: &ipv6KeyDataSource,
|
||||
Cert: &options.SecretSource{
|
||||
Value: []byte("invalid"),
|
||||
Value: "invalid",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user