-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add shopware commands #74
Merged
Merged
Conversation
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
6058f8f
to
350b8b1
Compare
34a47ea
to
0b85b59
Compare
0b85b59
to
25a4927
Compare
This is not needed because it will generate config files for kustomize which is in the docker container not needed.
tombojer
approved these changes
Jan 21, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request includes several significant changes and additions to the
shopware-operator
project, including new API types, controller updates, and modifications to existing structures. Below is a summary of the most important changes:New API Types and Controllers:
StoreExec
andStoreSnapshot
API types along with their respective specifications, statuses, and deep copy methods. (api/v1/exec.go
,api/v1/execstatus.go
,api/v1/storesnapshot_types.go
,api/v1/zz_generated.deepcopy.go
) [1] [2] [3] [4] [5] [6] [7] [8] [9]Controller Updates:
main.go
to include the newStoreExec
andStoreSnapshot
controllers, ensuring they are set up with the manager. (cmd/manager.go
) [1] [2]Modifications to Existing Structures:
ServiceAccountName
field inStoreSpec
and moved it toContainerSpec
to standardize the structure. (api/v1/store.go
) [1] [2]ShopCondition
toStoreCondition
to maintain consistency across the project. (api/v1/store_status.go
) [1] [2]Makefile and Project Configuration:
Makefile
to change the build target fromcmd/manager.go
tocmd/main.go
. (Makefile
)StoreExec
andStoreSnapshot
to thePROJECT
andkustomization.yaml
configuration files. (PROJECT
,config/crd/kustomization.yaml
) [1] [2]These changes enhance the functionality and maintainability of the
shopware-operator
by introducing new API types, updating controllers, and refining the existing codebase.