-
Notifications
You must be signed in to change notification settings - Fork 71
OPECO-3054,OCPBUGS-21980,OCPBUGS-20347,OPRUN-3106: skuznets/bump vendor ii #600
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
Merged
openshift-merge-bot
merged 28 commits into
openshift:master
from
stevekuznetsov:skuznets/bump-vendor-ii
Nov 10, 2023
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
8207ccc
Bump operator-framework and K8s Dependencies
awgreene 6093a70
Introduce OpenAPIV3 Schemas
awgreene feff93e
Enable http2 DOS mitigations for unauthenticated clients
awgreene 43f13e1
Specify exact verbs that OLM requires
awgreene 7c89328
Make alerting rules resilient to scrape failures
simonpasquier 014a86d
Fix typo in the CsvAbnormalFailedOver2Min alerting rule
simonpasquier ff92921
registry/reconciler: allow current pods to be not ready
stevekuznetsov 9afe297
Bump k8s dependencies to v0.27.7
awgreene 35ee735
Bump operator-framework/api dependency
awgreene ffddf17
Bump k8s dependencies to v0.27.7
awgreene 48de2c7
UPSTREAM: <carry>: SSC RBAC
awgreene 15bda83
UPSTREAM: <carry>: more SCC RBAC
stevekuznetsov 6e6c29c
Fix some of the e2e loops
tmshort 7822752
fixup! Fix some of the e2e loops
tmshort 4393cb9
catalog_e2e_test: add more logging
stevekuznetsov da3b4f2
Separate Category and Capability Validation (#304)
kevinrizza 2bafc0b
OWNERS: Remove timflannagan from reviewers (#305)
timflannagan 4c000f7
Update api dependency to 0.19.0 (#1157)
kevinrizza 896a093
poc for schema import (#1151)
grokspawn 4616d37
Move installplan e2e test cleanup into a loop
tmshort 975ff4d
Fix flake: Operator Group [It] e2e functionality
tmshort 07e3b41
Fix CSV hotfix flake
tmshort b8626f3
Fix Image Update test
awgreene ca33318
Fix Image Update Test Cleanup
awgreene 2efa928
Revert "Fix Image Update Test Cleanup"
awgreene db6cf0e
Revert "Fix Image Update test"
awgreene fd26da8
Update CatalogSource Pod Hash Logic
awgreene 030dd70
Adds 'OperatorDeprecated' status condition for Subscription. (#306)
dtfranz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,10 @@ | ||
rules: | ||
- apiGroups: | ||
- security.openshift.io | ||
resources: | ||
- securitycontextconstraints | ||
resourceNames: | ||
- restricted-v2 | ||
- anyuid | ||
verbs: | ||
- use |
This file contains hidden or 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 |
---|---|---|
|
@@ -20,7 +20,6 @@ reviewers: | |
- anik120 | ||
- exdx | ||
- awgreene | ||
- timflannagan | ||
- joelanford | ||
- benluddy | ||
- ankitathomas | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is needed to satisfy a feature in which we allow catalogSources in legacy mode, which cannot run under the constraints introduced by the
restricted-v2
SCC, you can learn more by inspecting this test.