-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
chore!: remove legacy patch pods fallback #13100
Merged
Joibel
merged 34 commits into
argoproj:main
from
GarettSoftware:chore-exec-remove-patch-pods-fallback
Sep 14, 2024
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
d137e77
chore!: remove legacy `patch` `pods` fallback
agilgur5 ae066c7
fix: WIP test fixes.
Garett-MacGowan c1c3481
test: test fixes
Garett-MacGowan e1ec574
test: test fixes
Garett-MacGowan 80fcc9a
test: test fixes
Garett-MacGowan fa9fc8e
test: test fixes
Garett-MacGowan f996a75
test: test fixes
Garett-MacGowan 3b2d66e
test: test fixes
Garett-MacGowan 2cf3d6c
test: test fixes
Garett-MacGowan eebacf7
test: test fixes
Garett-MacGowan dcd5503
test: test fixes
Garett-MacGowan 3274435
test: test fixes
Garett-MacGowan 23f781b
test: test fixes
Garett-MacGowan 15c840c
test: test fixes
Garett-MacGowan c10ec1a
test: test fixes
Garett-MacGowan d36a085
test: test fixes
Garett-MacGowan 5a075ca
test: test fixes
Garett-MacGowan 2fb2bd4
test: test fixes
Garett-MacGowan 378ae92
test: test fixes
Garett-MacGowan 5432fbb
test: test fixes
Garett-MacGowan 681b0be
test: test fixes.
Garett-MacGowan e04935d
test: test fixes.
Garett-MacGowan db334cb
test: test fixes.
Garett-MacGowan f592ea4
test: test fixes.
Garett-MacGowan 1cb41da
test: test fixes.
Garett-MacGowan d59b972
test: test fixes.
Garett-MacGowan f881fc2
test: test fixes.
Garett-MacGowan 05618df
test: test fixes.
Garett-MacGowan 9c7e2f6
test: test fixes.
Garett-MacGowan 49cb84b
docs: Add note to v3.6 upgrade docs regarding required RBAC.
Garett-MacGowan ac3d68f
fix: Add AnnotationKeyProgress to support N/M initial node progress. …
Garett-MacGowan c8b06b7
fix: Fix rebase regressions. fixes #13100
Garett-MacGowan b4b95a8
test: fix TestLoggedProgress. fixes #13100
Garett-MacGowan c92fe1e
Update workflow/controller/controller_test.go
Garett-MacGowan 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -7,6 +7,6 @@ roleRef: | |
kind: Role | ||
name: argo-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: argo | ||
- kind: ServiceAccount | ||
name: argo | ||
|
11 changes: 0 additions & 11 deletions
11
manifests/quick-start/base/workflow-default-rolebinding.yaml
This file was deleted.
Oops, something went wrong.
This file contains 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 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,49 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: get-cm | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: get-cm.service-account-token | ||
annotations: | ||
kubernetes.io/service-account.name: get-cm | ||
type: kubernetes.io/service-account-token | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: get-cm | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: get-cm-get-cm | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: get-cm | ||
subjects: | ||
- kind: ServiceAccount | ||
name: get-cm | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: executor-get-cm | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: executor | ||
subjects: | ||
- kind: ServiceAccount | ||
name: get-cm |
This file contains 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 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 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 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 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 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 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 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 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.
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.
as in this line