-
Notifications
You must be signed in to change notification settings - Fork 1
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
Patch apt source typo #8
Patch apt source typo #8
Conversation
Signed-off-by: GitHub <[email protected]> Co-authored-by: pasha-codefresh <[email protected]>
…goproj#17753) * chore: rename source-indexes to source-positions * update documentation --------- Signed-off-by: ishitasequeira <[email protected]> Co-authored-by: Ishita Sequeira <[email protected]>
…y fields in swagger (argoproj#17804) (argoproj#17820) * use arrays instead of map to display ApplicationManifetQuery fields in swagger * fix equality conditions for souce-position check --------- Signed-off-by: ishitasequeira <[email protected]> Co-authored-by: Ishita Sequeira <[email protected]>
* sec: validate a project before execute an action Signed-off-by: pashakostohrys <[email protected]> * sec: validate a project before execute an action Signed-off-by: pashakostohrys <[email protected]> --------- Signed-off-by: pashakostohrys <[email protected]>
Signed-off-by: pashakostohrys <[email protected]>
PR Description updated to latest commit (47b26cf)
|
PR Review
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
Fixed argoproj#17886 |
User description
Checklist:
Type
bug_fix, enhancement
Description
sourcePosition
instead ofsourceIndex
for clarity in multi-source applications.v2.11.0-rc1
across various manifests.Changes walkthrough
8 files
application.go
Refactor RBAC enforcement and project fetching in application server
server/application/application.go
getAppEnforceRBAC
to return*appv1.AppProject
along with*appv1.Application
and error.getApplicationEnforceRBACInformer
andgetApplicationEnforceRBACClient
to support the new return type fromgetAppEnforceRBAC
.getAppProject
method to fetch the application's project andenforce project restrictions.
validateAndNormalizeApp
to accept*appv1.AppProject
as anadditional parameter.
app.go
Update source index handling to source position in CLI commands
cmd/argocd/commands/app.go
sourceIndex
tosourcePosition
to clarify the meaning inmulti-source applications.
NewApplicationSetCommand
and
NewApplicationUnsetCommand
.openapi_generated.go
Generate OpenAPI definitions for new application project error type
pkg/apis/application/v1alpha1/openapi_generated.go
ErrApplicationNotAllowedToUseProject
type.zz_generated.deepcopy.go
Add deep copy method for new application project error type
pkg/apis/application/v1alpha1/zz_generated.deepcopy.go
ErrApplicationNotAllowedToUseProject
.app_project_types.go
Introduce error type for unauthorized application project access
pkg/apis/application/v1alpha1/app_project_types.go
ErrApplicationNotAllowedToUseProject
type to represent errorsrelated to application access to projects.
argo.go
Use new error type for unauthorized project access in utility
functions
util/argo/argo.go
ErrApplicationNotAllowedToUseProject
for unauthorized projectaccess errors.
generated.proto
Add ProtoBuf message for new application project error type
pkg/apis/application/v1alpha1/generated.proto
ErrApplicationNotAllowedToUseProject
message.application.proto
Update ProtoBuf for application manifest query enhancements
server/application/application.proto
sourcePositions
andrevisions
fields toApplicationManifestQuery
.5 files
application_test.go
Update application server tests for project access control
server/application/application_test.go
project access.
with project access control.
app_test.go
Update app utility tests for source position handling
cmd/util/app_test.go
sourcePosition
instead ofsourceIndex
.declarative_test.go
Adjust e2e test for application with invalid project
test/e2e/declarative_test.go
to new enforcement logic.
app_management_ns_test.go
Update e2e namespace test for new project access error messaging
test/e2e/app_management_ns_test.go
project access.
app_management_test.go
Update e2e test for new project access error messaging
test/e2e/app_management_test.go
project access.
6 files
namespace-install.yaml
Update Argo CD image tags in HA namespace install manifest
manifests/ha/namespace-install.yaml
v2.11.0-rc1
.namespace-install.yaml
Update Argo CD image tags in namespace install manifest
manifests/namespace-install.yaml
v2.11.0-rc1
.Dockerfile
Update base image source in Dockerfile
Dockerfile
kustomization.yaml
Update Argo CD image tags in HA base kustomization
manifests/ha/base/kustomization.yaml
v2.11.0-rc1
.kustomization.yaml
Update Argo CD image tags in base kustomization
manifests/base/kustomization.yaml
v2.11.0-rc1
.kustomization.yaml
Update Argo CD image tags in core install kustomization
manifests/core-install/kustomization.yaml
v2.11.0-rc1
.8 files
argocd_app_diff.md
Update app diff command documentation for source position changes
docs/user-guide/commands/argocd_app_diff.md
source-indexes
tosource-positions
.argocd_app_manifests.md
Update app manifests command documentation for source position changes
docs/user-guide/commands/argocd_app_manifests.md
source-indexes
tosource-positions
.argocd_app_set.md
Update app set command documentation for source position changes
docs/user-guide/commands/argocd_app_set.md
source-index
tosource-position
.argocd_app_unset.md
Update app unset command documentation for source position changes
docs/user-guide/commands/argocd_app_unset.md
source-index
tosource-position
.argocd_app_remove-source.md
Update app remove-source command documentation for source position
changes
docs/user-guide/commands/argocd_app_remove-source.md
source-index
tosource-position
.argocd_app.md
Update app command documentation for source position changes
docs/user-guide/commands/argocd_app.md
source-index
tosource-position
.tested-kubernetes-versions.md
Update tested Kubernetes versions for Argo CD v2.11
docs/operator-manual/tested-kubernetes-versions.md
swagger.json
Update Swagger JSON for application manifest query parameters
assets/swagger.json
manifest query.
1 files
VERSION
Update Argo CD version to v2.11.0-rc1
VERSION
v2.11.0-rc1
.