mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-08 11:38:15 +00:00
This commit is contained in:
parent
31420467ae
commit
5e84dfbbc5
@ -52,7 +52,14 @@ Request Information:
|
||||
|
||||
Request Headers:
|
||||
{% for i, key in ipairs(keys) do %}
|
||||
{{key}}={{headers[key]}}
|
||||
{% local val = headers[key] %}
|
||||
{% if type(val) == "table" then %}
|
||||
{% for i = 1,#val do %}
|
||||
{{key}}={{val[i]}}
|
||||
{% end %}
|
||||
{% else %}
|
||||
{{key}}={{val}}
|
||||
{% end %}
|
||||
{% end %}
|
||||
|
||||
Request Body:
|
||||
|
Loading…
Reference in New Issue
Block a user