-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Ansible version, used aws_ec2 inventory plugin instead of ec2.py, and tweaked playbooks to remove warnings.
- Loading branch information
Showing
43 changed files
with
107 additions
and
1,981 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,3 @@ roles_path = ansible | |
[ssh_connection] | ||
pipelining = True | ||
control_path = /tmp/ansible-ssh-%%h-%%p-%%r | ||
|
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 |
---|---|---|
@@ -1,17 +1,18 @@ | ||
FROM debian:buster | ||
# Version 2021-04-30 | ||
FROM debian:bullseye | ||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
gettext \ | ||
git \ | ||
nano \ | ||
packer \ | ||
procps \ | ||
python3 \ | ||
python3-pip | ||
RUN pip3 install \ | ||
ansible==2.9.15 \ | ||
ansible \ | ||
boto \ | ||
boto3 | ||
RUN ansible-galaxy collection install community.aws | ||
RUN ansible-galaxy collection install amazon.aws | ||
ADD boto.conf /root/.boto | ||
ENV SEPAL_HOME=/usr/local/lib/sepal |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.