Skip to content

Commit

Permalink
Change e2e test to align with label propagation config
Browse files Browse the repository at this point in the history
  • Loading branch information
ruixiansong committed Apr 26, 2023
1 parent 9984f78 commit ad53736
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/e2e-test/neg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -813,12 +813,13 @@ func TestLabelPropagation(t *testing.T) {
},
},
{
// Only support a total label size of 15 for security.istio.io/tlsMode
desc: "truncated label value",
podLabels: map[string]string{
"security.istio.io/tlsMode": "something-very-loooooooooong",
"security.istio.io/tlsMode": "something-very-long",
},
expectAnnotations: map[string]string{
"itls": "something-very-loooooooooo",
"itls": "something-v",
},
},
{
Expand Down

0 comments on commit ad53736

Please sign in to comment.