test: refactor local development for more configuration #3829
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.
General Checklist
Database Migrations
Refactors the make targets to allow for setting up a local-stack with the latest stable version of the
lagoon-core
,lagoon-remote
, andlagoon-build-deploy
charts, instead of bleeding edge. This also allows for the local-stack to be spun up much faster for not having to build the images prior.These changes allow for someone install a local-stack with the stable version, then once it is running perform a Lagoon upgrade by re-installing just the Lagoon components (core, remote, build-deploy) with their latest charts or fresh built service images.
It is also possible to deselect which DBaaS providers are installed as part of a
local-stack
if you don't need them. This can be useful for mac users who currently have issues due to MongoDB not working on arm based systems, by default on mac or arm based systems the MongoDB provider will no longer be installed. The test suites may not work properly for any MongoDB based tests though, so be aware of this.Additionally, the k3d config is setup to allow for the host docker socket to be used, this allows local-stacks being torn down and started again to leverage the host docker so that non-built images don't need to be re-pulled within the cluster if they're already present on the host. This should speed up the creation of subsequent
local-stack
clusters.