ansible | ansible playbook -
kandi X-RAY | ansible Summary
kandi X-RAY | ansible Summary
ansible playbook
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of ansible
ansible Key Features
ansible Examples and Code Snippets
Community Discussions
Trending Discussions on ansible
QUESTION
Ansible 2.11.0
I have a shell script that accepts 2 parameters that I want to run on a Windows host, but want to run it inside git-bash.exe
. I've tried this,
ANSWER
Answered 2021-Jun-15 at 17:47be aware I don't have a Windows machine against which to try this, so it's just "best effort"
As best I can tell, your problem is because you are trying to recreate the behavior of win_shell
by "manually" invoking that improperly quoted cmd.exe /c
business, ending up with cmd.exe /c "cmd.exe /c whatever"
; dialing up the ansible verbosity -vv
could confirm or deny that pattern
Also, the win_shell
docs say to use win_command:
unless you have a shell redirect need, which as written your task does not.
QUESTION
I'm running boto with python3 and I'm running an ansible playbook to setup some ec2 instances.
Everything is fine, creating instances, security groups, key pairs, everything in eu-west-2
.
When the task for Elastic IPs runs it fails with this message:
Region eu-west-2 does not seem to be available for aws module boto.ec2. If the region definitely exists, you may need to upgrade boto or extend with endpoints_path
I'm running ansible with -e ansible_python_interpreter="/usr/bin/python3"
.
I have latest boto installed.
ANSWER
Answered 2021-Mar-03 at 11:06I resorted to using the community module for elastic ip.
So community.aws.ec2_eip
instead of ec2_eip
.
QUESTION
We have this Ansible inventory with dozens of servers, being grouped in servers per microservice. So say we have several application groups in the inventory with servers in it.
Say:
...ANSWER
Answered 2021-Jun-08 at 15:26there is already an answer on how to run playbooks on multiple hosts answered here Ansible: deploy on multiple hosts in the same time
Maybe you could start form there. However if running only first servers in parallel interests you than it will be more difficult, as it would require writing a custom script or something similar
QUESTION
I'm stuck to get data from gathered fact, using calculated data as part of query.
I am using 2.9 ansible and here is my task
...ANSWER
Answered 2021-Jun-13 at 20:44Remove the dot if you use the indirect addressing
QUESTION
I'm using ec2_instance_info
module in Ansible to get EC2 instance information including tags and save it in CSV file. But some EC2 instances do not have backup
tag so the play eventually stopped with error.
How to handle the error so when there is no tag assigned, Ansible should write NULL
in the the CSV file.
Below is the Ansible playbook:
...ANSWER
Answered 2021-Jun-10 at 09:48try below code:
QUESTION
I have this result from a Ansible playbook
...ANSWER
Answered 2021-Jun-11 at 15:38Use join('\n')
to join the elements of the list into desired string. Check out the output of 2nd debug
.
QUESTION
Given a string list
...ANSWER
Answered 2021-Jun-10 at 11:51For example
QUESTION
I'm trying to do a dry-run of a small test script I've put together for ansible
but I am getting an error.
The script is this:
...ANSWER
Answered 2021-Jun-10 at 07:24Using the command ansible-galaxy collection install community.general
did not work for me, as it did not allow me to use the various modules.
What worked for me was to install the ansible-collection-community-general
from the official repos.
QUESTION
I'm trying to automate MongoDB installation along with replication setup via ansible. So as part of that, I want to utilize ansible modules mongodb_user,mongodb_replicaset. When using this module I'm facing some issues. So need some light on this
Issue - 1: when I create an admin user using mongodb_user I'm getting the below error
...ANSWER
Answered 2021-Jun-10 at 07:06Instead of printjson(rs.initiate())
try
QUESTION
I have a number of user public keys, obtained via rest call made with the URI module, and I want to pull out the uid contained within that key. Here is the relevant line of my role
...ANSWER
Answered 2021-May-26 at 20:46regex_search
is meant to return you the matches of the regex, not the groups, or at least in the current version of Ansible (although there are signs that it should work on the latest version?).
You can work around this using regex_findall
instead, but you'll have to add a first
filter to deal with the list created:
Given the playbook:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install ansible
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page