I saw few videos those are titled with DevOps , every video they prepared for 7-10 hours but by the end of the session you learn nothing (just theory and overview) . But this video just in few mins with clear steps he explained how to work with ansible , much appreciated. Great 👍
Brilliant short and crisp video for someone who wants to learn and run an ansible playbook using Jenkins pipeline in 10 min. Thank you very much for the great video 👍
Great video, step by step. Even shows installing Ansible and Git after receiving errors. It helps to know something about Ansible, Git and Jenkins before watching this video.
This is exactly what I've been looking for. Now running Ansible playbooks using my repo as the source, and my team can all collab and work on playbooks together. Thanks!
I am very very to watch your videos and i got acquired a lot of knowledge, I am requesting you to please upload a video with git , sonarqube, maven, nexus, docker, ansible, kubernetes , whole tools in one single CICD pipeline Thanks in Advance.....
I have installed Jenkins & Ansible on the same ec2 instance and also provided the SSH details as you showed on this video but still my job is failing with error: "fatal: [localhost]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Host key verification failed.", "unreachable": true}". Ideally, I don't think it requires to ssh if ansible is already installed on the same Jenkins server. Any suggestions?
@@rohitbhushan7229 yah same issue with me fatal: [54.160.182.77]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Host key verification failed. ", "unreachable": true} to retry, use: --limit @/var/lib/jenkins/workspace/ansible/apache.retry
@@nguyenminh15988 I am also getting same issue fatal: : UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh:: Permission denied (publickey,password).", "unreachable": true}
I assume you have installed ansible on the same machine where jenkins also running, correct me if i am wrong, help understand what changes i have to do if i have to call the ansible playbook from an existing ansible server that is not having jenkins setup... solution, i am assuming at this point of time to run a sh command to do a remote ssh command to my ansible server and pass ansible playbook using -c argument?
Hi the ansible playbook structure/spacing or what its called as indentation is it common on all playbooks that is written or does it change. Its bit confusing where and when to use spaces & hyphens in a playbook. I am not from a coding or developer background hence it becomes more confusing is there a editor to automatically take the spacing & hyphens when writing the playbook. Can you make a video on that.Kindly reply
Hi When i tried to install ansible getting the below error. sudo yum-config-manager --enable epel Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
Great Video! Wondering when you are working with Ansible variables like IP and others which you do have configured in a var file. Do you see a change so Jenkins will ask for the values instead of having them into a var file as the IP will be variable and it might be an option to get asked for this value?
Hi, I have scenario like jenkins and ansible server two different aws ec2 servers i have been trying to deploy an app by using jenkins pipeline. Please tell me how to integrate jenkins and ansible b/w two different sever. Please suggest how write jenkins pipeline job
Your videos have been a lot of help. I am trying to follow the demo, but I am getting time out error for fetch from Git, can you suggest some solution for it?
UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).", "unreachable": true} im getting this error
🌟 Welcome to Java Home Cloud 🌟
Register for Online Training 👉 bit.ly/3vuBQqb
javahome.in
I saw few videos those are titled with DevOps , every video they prepared for 7-10 hours but by the end of the session you learn nothing (just theory and overview) . But this video just in few mins with clear steps he explained how to work with ansible , much appreciated. Great 👍
Thanks a lot, Keep watching
Brilliant short and crisp video for someone who wants to learn and run an ansible playbook using Jenkins pipeline in 10 min. Thank you very much for the great video 👍
Now, I am in love with this channel's content....
Great video, step by step. Even shows installing Ansible and Git after receiving errors. It helps to know something about Ansible, Git and Jenkins before watching this video.
Glad it helped
Appreciate the effort you put in to create such a video. That helped me quickly while setting up a similar environment.
This is exactly what I've been looking for. Now running Ansible playbooks using my repo as the source, and my team can all collab and work on playbooks together. Thanks!
Glad I could help
Great video! Very clear instructions and I was able to setup the pipeline in one go. Thanks a lot.
Glad it helped!
It was very good and understandable explanation for integration of ansible to Jenkins... thankyou sir! Plz Keep post latest videos on devops
I have only one word. Superb................................. A well explained video.
Thank you so much 😀
Thanks for sharing such useful content my friend. You saved my computer from being thrown away from a second floor XD.
Glad I could help
Subscribed! You did it without any complications. Thanks
Thanks for your simple explaination and presentation, Good content
Great explanation, thanks a lot. I followed the same steps and it worked for me.
Glad it helped, please do subscribe and share
Nice. I followed this and was able to setup my pipeline
Excellent!
Bro need help
@@rajashekark3106 yes please
Simple but Very useful. Thanks!!
Great video. Short and to the point.
I am very very to watch your videos and i got acquired a lot of knowledge,
I am requesting you to please upload a video with git , sonarqube, maven, nexus, docker, ansible, kubernetes , whole tools in one single CICD pipeline
Thanks in Advance.....
Will upload soon
Fantastic explain. Really thanks sir..
outstanding video
Thank you
Excelente video! Muchas gracias!
Thank you
I have installed Jenkins & Ansible on the same ec2 instance and also provided the SSH details as you showed on this video but still my job is failing with error:
"fatal: [localhost]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Host key verification failed.", "unreachable": true}".
Ideally, I don't think it requires to ssh if ansible is already installed on the same Jenkins server.
Any suggestions?
same issue faced by me
@@rohitbhushan7229 yah same issue with me
fatal: [54.160.182.77]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Host key verification failed.
", "unreachable": true}
to retry, use: --limit @/var/lib/jenkins/workspace/ansible/apache.retry
hello i found solution for it we should enable host_key_checking = False in ansible config file
@@nguyenminh15988 I am also getting same issue fatal: : UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh:: Permission denied (publickey,password).", "unreachable": true}
but its not fixed with above I tried changing config setting. Have u changed it in ansible controller?
I assume you have installed ansible on the same machine where jenkins also running, correct me if i am wrong, help understand what changes i have to do if i have to call the ansible playbook from an existing ansible server that is not having jenkins setup... solution, i am assuming at this point of time to run a sh command to do a remote ssh command to my ansible server and pass ansible playbook using -c argument?
excellent this deploy video
Do we have privilege to execute a set of ansible adhoc commands as a pipeline
Hi the ansible playbook structure/spacing or what its called as indentation is it common on all playbooks that is written or does it change. Its bit confusing where and when to use spaces & hyphens in a playbook. I am not from a coding or developer background hence it becomes more confusing is there a editor to automatically take the spacing & hyphens when writing the playbook. Can you make a video on that.Kindly reply
Thanks you very much. Very useful.
You are welcome! please subscribe
@@JavaHomeCloud I subscribed to your channel
good. it could have been better what is the purpose of ansible in Jenkins, with and without Ansible in Jenkins
Have you tried ansible plugin using ssh username and password credentials instead of ssh private key?
Could you tell me part of which playlist on your channel is this video of?
It should be jenkins playlist
sir can we delete conatiners from remote host via ansible playbook.....plz guide
Hi When i tried to install ansible getting the below error.
sudo yum-config-manager --enable epel
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
Hi Bro, Incase if i have private github repo.. in that scenario how to do that.
Which userid and private id u are given may I know that is ansible userid and private..or Apache id key
Great Video! Wondering when you are working with Ansible variables like IP and others which you do have configured in a var file. Do you see a change so Jenkins will ask for the values instead of having them into a var file as the IP will be variable and it might be an option to get asked for this value?
check this,
input message: 'enter password', parameters: [password(defaultValue: 'value', description: '', name: 'hidden')]
Hi, I have scenario like jenkins and ansible server two different aws ec2 servers i have been trying to deploy an app by using jenkins pipeline. Please tell me how to integrate jenkins and ansible b/w two different sever. Please suggest how write jenkins pipeline job
Your videos have been a lot of help. I am trying to follow the demo, but I am getting time out error for fetch from Git, can you suggest some solution for it?
post full details of error
UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).", "unreachable": true} im getting this error
Check your SSH private key, Its wrong or check key permissions
@@JavaHomeCloud thank you
I get error: playbook could not be found in jenkins pipeline. Any idea?
No such DSL method 'Pipeline' found among steps
I'm getting this error , dont know how to fix this
Seems you are using capital P in pipeline block, keep in lowercase
@@JavaHomeCloud thank you sir
I have subscribed to your courses in Udemy for DevOps
Are you setup ssh key gen between Jenkins and apache node
Yes
can you explain one more time user ec2-user from which box?
come again please
super like
Thank you sir
thank you !
You're welcome!
Thanks.
Subscribed
Buy this man a decent mic
Anyone else notice mic bumping?