Skip to content

Commit

Permalink
Merge pull request #5468 from emissary-ingress/laustin/crd-status
Browse files Browse the repository at this point in the history
apiext: add rbac for updating crd statuses
  • Loading branch information
Alice Wasko authored Dec 6, 2023
2 parents c11896b + 2cac062 commit 3ce2ba2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/emissary/emissary-crds.yaml.in
Original file line number Diff line number Diff line change
Expand Up @@ -5238,7 +5238,7 @@ rules:
resources: [ "customresourcedefinitions" ]
verbs: [ "list", "watch" ]
- apiGroups: [ "apiextensions.k8s.io" ]
resources: [ "customresourcedefinitions" ]
resources: [ "customresourcedefinitions", "customresourcedefinitions/status" ]
resourceNames:
- authservices.getambassador.io
- consulresolvers.getambassador.io
Expand Down
2 changes: 1 addition & 1 deletion python/tests/integration/manifests/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5239,7 +5239,7 @@ rules:
resources: [ "customresourcedefinitions" ]
verbs: [ "list", "watch" ]
- apiGroups: [ "apiextensions.k8s.io" ]
resources: [ "customresourcedefinitions" ]
resources: [ "customresourcedefinitions", "customresourcedefinitions/status" ]
resourceNames:
- authservices.getambassador.io
- consulresolvers.getambassador.io
Expand Down
2 changes: 1 addition & 1 deletion tools/src/fix-crds/apiext.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ rules:
resources: [ "customresourcedefinitions" ]
verbs: [ "list", "watch" ]
- apiGroups: [ "apiextensions.k8s.io" ]
resources: [ "customresourcedefinitions" ]
resources: [ "customresourcedefinitions", "customresourcedefinitions/status" ]
resourceNames:
{{- range $crdName := .CRDNames }}
- {{ $crdName }}
Expand Down

0 comments on commit 3ce2ba2

Please sign in to comment.