Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AuthPolicy version bump #563

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ podman run \
For developing tests for Authorino you might need to know content of the authorization JSON, you can do that through this AuthConfig, which will return all the context in the response

```yaml
apiVersion: authorino.kuadrant.io/v1beta2
apiVersion: authorino.kuadrant.io/v1beta3
kind: AuthConfig
metadata:
name: example
Expand Down
2 changes: 1 addition & 1 deletion scale_test/gw-auth-policy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- $GW_NUM := .GW_NUM }}
apiVersion: kuadrant.io/v1beta2
apiVersion: kuadrant.io/v1beta3
kind: AuthPolicy
metadata:
name: auth-policy-gw{{$GW_NUM}}-i{{ .Iteration }}
Expand Down
2 changes: 1 addition & 1 deletion scale_test/httproute-auth-policy.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- $GW_NUM := .GW_NUM }}
{{- $LISTENER_NUM := .LISTENER_NUM }}
apiVersion: kuadrant.io/v1beta2
apiVersion: kuadrant.io/v1beta3
kind: AuthPolicy
metadata:
name: httproute-auth-policy-gw{{$GW_NUM}}-l{{$LISTENER_NUM}}-i{{ .Iteration }}
Expand Down
2 changes: 1 addition & 1 deletion testsuite/kuadrant/policy/authorization/auth_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def create_instance(
):
"""Creates base instance"""
model: Dict = {
"apiVersion": "authorino.kuadrant.io/v1beta2",
"apiVersion": "authorino.kuadrant.io/v1beta3",
"kind": "AuthConfig",
"metadata": {"name": name, "namespace": cluster.project, "labels": labels},
"spec": {"hosts": []},
Expand Down
2 changes: 1 addition & 1 deletion testsuite/kuadrant/policy/authorization/auth_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def create_instance(
):
"""Creates base instance"""
model: Dict = {
"apiVersion": "kuadrant.io/v1beta2",
"apiVersion": "kuadrant.io/v1beta3",
"kind": "AuthPolicy",
"metadata": {"name": name, "namespace": cluster.project, "labels": labels},
"spec": {
Expand Down
Loading