We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6270a80 commit b77dceaCopy full SHA for b77dcea
test/utils/utils.go
@@ -43,7 +43,7 @@ import (
43
func DeleteClusterResources(ctx context.Context, cli client.Client) error {
44
binding := &rbacv1.ClusterRoleBinding{
45
ObjectMeta: metav1.ObjectMeta{
46
- Name: "pod-read-binding",
+ Name: "auth-reviewer-binding",
47
},
48
}
49
err := cli.Delete(ctx, binding, client.PropagationPolicy(metav1.DeletePropagationForeground))
@@ -52,7 +52,7 @@ func DeleteClusterResources(ctx context.Context, cli client.Client) error {
52
53
role := &rbacv1.ClusterRole{
54
55
- Name: "pod-read",
+ Name: "auth-reviewer",
56
57
58
err = cli.Delete(ctx, role, client.PropagationPolicy(metav1.DeletePropagationForeground))
0 commit comments