Skip to content

Commit 5c752d6

Browse files
committed
Clarify Add function if a header already exists.
1 parent 61ca462 commit 5c752d6

File tree

4 files changed

+44
-38
lines changed

4 files changed

+44
-38
lines changed

apis/v1alpha1/httproute_types.go

+12-10
Original file line numberDiff line numberDiff line change
@@ -437,31 +437,33 @@ type HTTPRequestHeaderFilter struct {
437437
//
438438
// Input:
439439
// GET /foo HTTP/1.1
440-
// My-Header: ABC
440+
// my-header: foo
441441
//
442442
// Config:
443-
// set: {"my-header": "XYZ"}
443+
// set: {"my-header": "bar"}
444444
//
445445
// Output:
446446
// GET /foo HTTP/1.1
447-
// my-header: XYZ
447+
// my-header: bar
448448
//
449449
// Support: Extended
450450
// +optional
451451
Set map[string]string `json:"set,omitempty"`
452452

453453
// Add adds the given header (name, value) to the request
454-
// before the action.
454+
// before the action. It appends to any existing values associated
455+
// with the header name.
455456
//
456457
// Input:
457458
// GET /foo HTTP/1.1
459+
// my-header: foo
458460
//
459461
// Config:
460-
// add: {"my-header": "foo"}
462+
// add: {"my-header": "bar"}
461463
//
462464
// Output:
463465
// GET /foo HTTP/1.1
464-
// my-header: foo
466+
// my-header: foo bar
465467
//
466468
// Support: Extended
467469
// +optional
@@ -474,16 +476,16 @@ type HTTPRequestHeaderFilter struct {
474476
//
475477
// Input:
476478
// GET /foo HTTP/1.1
477-
// My-Header1: ABC
478-
// My-Header2: DEF
479-
// My-Header2: GHI
479+
// my-header1: foo
480+
// my-header2: bar
481+
// my-header3: baz
480482
//
481483
// Config:
482484
// remove: ["my-header1", "my-header3"]
483485
//
484486
// Output:
485487
// GET /foo HTTP/1.1
486-
// My-Header2: DEF
488+
// my-header2: bar
487489
//
488490
// Support: Extended
489491
// +optional

config/crd/bases/networking.x-k8s.io_httproutes.yaml

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-src/spec.md

+13-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/spec/index.html

+13-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)