Skip to content

Commit

Permalink
Merge pull request #563 from martinhesko/authpolicy_bump
Browse files Browse the repository at this point in the history
AuthPolicy version bump
  • Loading branch information
Jakub Smolar authored Oct 22, 2024
2 parents ab50b24 + 292a715 commit b14206c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit b14206c

Please sign in to comment.