Skip to content

Commit

Permalink
add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
randmonkey committed May 17, 2023
1 parent aad1a49 commit e112d49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ Adding a new version? You'll need three changes:
during the start-up phase. From now on, they will be dynamically started in runtime
once their installation is detected, making restarting the process unnecessary.
[#3996](https:/Kong/kubernetes-ingress-controller/pull/3996)
- Disable translation of unspported kubernetes objects when translating to
expression based routes is enabled (`ExpressionRoutes` feature enabled AND
kong using router flavor `expressions`), and generate a translation failure
event attached to each of the unsupported objects.
[#4022](https:/Kong/kubernetes-ingress-controller/pull/4022)

### Changed

Expand Down
7 changes: 4 additions & 3 deletions test/integration/translation_failures_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,10 @@ func TestTranslationFailuresUnsupportedObjectsWithExpressionRoutes(t *testing.T)

c, err := client.New(env.Cluster().Config(), client.Options{})
require.NoError(t, err)
gatewayv1alpha2.AddToScheme(c.Scheme())
kongv1beta1.AddToScheme(c.Scheme())
err = gatewayv1alpha2.AddToScheme(c.Scheme())
require.NoError(t, err)
err = kongv1beta1.AddToScheme(c.Scheme())
require.NoError(t, err)

for _, tc := range testCases {
tc := tc
Expand Down Expand Up @@ -572,7 +574,6 @@ func TestTranslationFailuresUnsupportedObjectsWithExpressionRoutes(t *testing.T)

return false
}, time.Minute, time.Second)

})
}
}

0 comments on commit e112d49

Please sign in to comment.