-
Notifications
You must be signed in to change notification settings - Fork 295
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
Refactor zabbix proxy #1196
Merged
pyrodie18
merged 18 commits into
ansible-collections:main
from
eb4x:refactor_zabbix_proxy
May 18, 2024
Merged
Refactor zabbix proxy #1196
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
495d594
Enable skipping zabbix_valid_server_versions check
eb4x a7e0751
Put zabbix_repo_deb_url in defaults
eb4x 7f06aa4
Single common task to install zabbix-proxy
eb4x b50f684
Single common task to install zabbix-sql-scripts
eb4x 4973068
Install MySQL dependencies from mysql task
eb4x ac86946
Install PostgreSQL dependencies from postresql task
eb4x bc19880
Install SQLite3 dependencies from sqlite3 task
eb4x bf6f095
Simplify logic for dbhost_run_install (mysql)
eb4x 285c8b4
pgsql: Consolidate delegate and remote tasks
eb4x 4c07e97
Refactor MySQL schema import
eb4x 014854d
Refactor PostgreSQL schema import
eb4x 4bd8588
Refactor SQLite3 schema import
eb4x a12db7f
Simplify legacy tasks
eb4x f159c83
Prefix database task-files with initialize
eb4x da85722
Group similar directory tasks
eb4x 3a091b1
Always use python3 during molecule testing
eb4x d28d972
Drop zabbix 5.0 compatability
eb4x 8130d26
Merge branch 'main' into refactor_zabbix_proxy
pyrodie18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM {{ item.base_image }} | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip systemd-sysv | ||
CMD ["/sbin/init"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM {{ item.base_image }} | ||
RUN yum install -y python3-pip | ||
CMD ["/sbin/init"] |
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
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.
The geerlingguy centos doesn't come with python3, which is kind of a shame. Better to do a rehaul of that image.