forked from nginx/kubernetes-ingress
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support default client proxy headers to be overwritten in VirtualServ…
…er (nginx#2735) Allow default gRPC/proxy headers to be overwritten in VirtualServer Co-authored-by: Alex Wied <[email protected]> Co-authored-by: Shaun <[email protected]>
- Loading branch information
Showing
4 changed files
with
69 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package version2 | ||
|
||
import ( | ||
"strings" | ||
"text/template" | ||
) | ||
|
||
func headerListToCIMap(headers []Header) map[string]string { | ||
ret := make(map[string]string) | ||
|
||
for _, header := range headers { | ||
ret[strings.ToLower(header.Name)] = header.Value | ||
} | ||
|
||
return ret | ||
} | ||
|
||
func hasCIKey(key string, d map[string]string) bool { | ||
_, ok := d[strings.ToLower(key)] | ||
return ok | ||
} | ||
|
||
var helperFunctions = template.FuncMap{ | ||
"headerListToCIMap": headerListToCIMap, | ||
"hasCIKey": hasCIKey, | ||
} |