-
Notifications
You must be signed in to change notification settings - Fork 37
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
Deployment/auto update #1155
Open
aequitas
wants to merge
12
commits into
main
Choose a base branch
from
auto_update
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Deployment/auto update #1155
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
aequitas
force-pushed
the
auto_update
branch
from
November 10, 2023 14:44
c8404cd
to
702ac7a
Compare
aequitas
force-pushed
the
auto_update
branch
19 times, most recently
from
November 14, 2023 08:39
e2280d8
to
d4204fe
Compare
aequitas
force-pushed
the
auto_update
branch
2 times, most recently
from
November 15, 2023 16:00
ca5bd68
to
1fccf82
Compare
mxsasha
pushed a commit
that referenced
this pull request
Nov 16, 2023
This was a blocker for builds on branches with slashes. We also don't need it that much, as branch following will be implemented in #1155 by fetching the branch sha and using that for image pulls.
mxsasha
pushed a commit
that referenced
this pull request
Nov 16, 2023
aequitas
force-pushed
the
auto_update
branch
2 times, most recently
from
October 8, 2024 10:57
347857d
to
b9910ce
Compare
aequitas
force-pushed
the
auto_update
branch
15 times, most recently
from
October 21, 2024 15:59
bd65972
to
220e627
Compare
…s double in cron-docker
… util image for both cron services and cleanup compose file somewhat
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 PR refactors the way deployments are performed. Instead of using both a branch/commit and version number to get both the container images and supporting files (compose file, .env files), the new methods packages all required files into a versioned container image as well. This way there can be no disconnect between the files and images during deployments. In the process the deployment commands have been put into a separate shell script which reduces the amount of commands for a deploy.
The auto deploy feature is added in this commit which allows to enable automatic updates to the latest stable/development or a feature PR for development/staging environments. This feature is off by default.
There are also various other bugfixes in this PR which are separated per commit.