-
Notifications
You must be signed in to change notification settings - Fork 130
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
PMM-12762 Get notified about new version. #2951
Merged
Merged
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
9da3fd8
PMM-11261 Update PMM via watchtower
BupycHuk 185ee21
PMM-11261 address comments and fix linter
BupycHuk cbfa33a
Merge branch 'v3' into PMM-11261-update-via-watchtower
BupycHuk dd60f3b
PMM-11261 fix linters and tests.
BupycHuk 5cd04a0
PMM-11261 fix linters and tests.
BupycHuk 036dffb
PMM-11261 fix linters.
BupycHuk ed7bcfe
PMM-11261 fix linters.
BupycHuk 7179b9f
Merge branch 'v3' into PMM-11261-update-via-watchtower
BupycHuk 7111d84
Update managed/cmd/pmm-managed/main.go
BupycHuk 8178764
Update managed/cmd/pmm-managed/main.go
BupycHuk d66bea8
PMM-11261 Address comments.
BupycHuk 1c3600a
PMM-11261 fix build.
BupycHuk 4d62067
Merge branch 'v3' into PMM-11261-update-via-watchtower
BupycHuk 1967263
Update docker-compose.yml
BupycHuk 671ee0e
Merge branch 'v3' into PMM-11261-update-via-watchtower
BupycHuk f78a642
Update docker-compose.yml
BupycHuk cc7bb6f
Update docker-compose.yml
BupycHuk 7bd962b
PMM-12762 Get notified about new version.
BupycHuk 4104986
PMM-11261 Replace switch with if-else
BupycHuk 3374e10
Merge branch 'PMM-11261-update-via-watchtower' into PMM-12762-get-not…
BupycHuk 018ded1
PMM-12762 Fix conflicts, tests and linters.
BupycHuk 2e7228b
PMM-12762 Add license header.
BupycHuk 42baca0
PMM-12762 Get notified about new version.
BupycHuk 32e669d
PMM-12762 Fix deadlock
BupycHuk 302441b
PMM-12762 Fix linters.
BupycHuk d49ce3f
PMM-12762 add more log info.
BupycHuk d9357f6
PMM-12762 add more log info.
BupycHuk b1f4d64
PMM-12762 add more log info.
BupycHuk fe9a6b9
PMM-12762 add more log info.
BupycHuk 1adc8f5
PMM-12762 add more log info.
BupycHuk 2255735
PMM-12762 add more log info.
BupycHuk 0479c9f
PMM-12762 set PMM version.
BupycHuk 7045e32
PMM-12762 set PMM version.
BupycHuk 9d89d22
Update managed/services/server/updater.go
BupycHuk e0f768c
Merge branch 'PMM-11261-update-via-watchtower' into PMM-12762-get-not…
BupycHuk 3c36ad6
Merge branch 'v3' into PMM-12762-get-notified-about-new-version
BupycHuk e07cc83
PMM-12762 fix merge conflicts.
BupycHuk 6291737
Update .github/workflows/managed.yml
BupycHuk 26b57d5
PMM-12762 sort env variables.
BupycHuk a2766fa
Merge branch 'v3' into PMM-12762-get-notified-about-new-version
idoqo c6323b7
Merge branch 'v3' into PMM-12762-get-notified-about-new-version
idoqo dac9a3f
PMM-13028 Non blocking StartUpgrade operation (#2972)
BupycHuk 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.
Are we going to keep these going forward?
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.
Yes, it's to debug in case of any upcoming issue
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.
I see. I find the following construct a bit simpler to understand:
Up to you :)
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.
That would be easier, but for the some reason it stores all lines as one element in services array. I tried that
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.
for service in "${services[@]}"; do
- that is the syntax for looping through array elements.