-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ratelimitpolicy v1beta3 Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * ratelimitpolicy v1beta3: unittests Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * ratelimitpolicy v1beta3: integration tests Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * ratelimitpolicy v1beta3: manifests Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * ratelimitpolicy v1beta3: more integration tests Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * fix unittests Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * remove routeSelectors from v1beta3 Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * helm chart update Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * add some unittets regarding wasm rule generation Signed-off-by: Eguzki Astiz Lezaun <[email protected]> * removed integration tests regarding routeselectors Signed-off-by: Eguzki Astiz Lezaun <[email protected]> --------- Signed-off-by: Eguzki Astiz Lezaun <[email protected]>
- Loading branch information
Showing
49 changed files
with
1,087 additions
and
4,092 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,36 @@ | ||
/* | ||
Copyright 2021. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// Package v1beta3 contains API Schema definitions for the kuadrant v1beta3 API group | ||
// +kubebuilder:object:generate=true | ||
// +groupName=kuadrant.io | ||
package v1beta3 | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"sigs.k8s.io/controller-runtime/pkg/scheme" | ||
) | ||
|
||
var ( | ||
// GroupVersion is group version used to register these objects | ||
GroupVersion = schema.GroupVersion{Group: "kuadrant.io", Version: "v1beta3"} | ||
|
||
// SchemeBuilder is used to add go types to the GroupVersionKind scheme | ||
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} | ||
|
||
// AddToScheme adds the types in this group-version to the given scheme. | ||
AddToScheme = SchemeBuilder.AddToScheme | ||
) |
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
2 changes: 1 addition & 1 deletion
2
api/v1beta2/ratelimitpolicy_types_test.go → api/v1beta3/ratelimitpolicy_types_test.go
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
//go:build unit | ||
|
||
package v1beta2 | ||
package v1beta3 | ||
|
||
import ( | ||
"testing" | ||
|
Oops, something went wrong.