Cloud&Devsecops telugu
457 subscribers
7 photos
1 video
76 files
76 links
This channel offers information related to cloud computing and DevSecOps, as well as downloadable PDFs and videos.
Download Telegram
1)Infosys Off Campus Drive

Job Role: Systems Engineer

Batch: 2019/2020/2021

https://bit.ly/30NTOEB

2)TATA Communications Hiring Fresher

System Engineer

Work Experience : 0 - 4 Years

https://bit.ly/3iCH5e3

3)Mindtree hiring for freshers

https://okt.to/oSQrwT

4) Tcs Hiring for frsher 2020 and 2021 batch

https://www.tcs.com/careers/tcs-off-campus-hiring

5)KPIT is hiring for fresher

https://bit.ly/3uYjIQK

6)deloitte hiring for fresher

https://bit.ly/3fP4reC

7)Siemens hiring for fresher

https://bit.ly/3yJl823

8)KPMG hiring for fresher

https://bit.ly/3naJK1i

9)IBM hiring for fresher

https://bit.ly/3rQbhFN

10)Wipro hiring for fresher

https://bit.ly/3ni4wdU

11)Cognizant hiring for fresher

https://bit.ly/3AtfB0b

12)HCL hiring for fresher

https://bit.ly/37TV4pZ

13)Mphasis hiring for fresher

https://bit.ly/3mCutEA

14)Capgemini hiring for fresher

https://bit.ly/3zvj7rv

15)Dassault hiring for fresher

https://bit.ly/3l691Hm

16)Atos Hiring for fresher

https://bit.ly/30ghQrh


For more job updates, connect to Ravikant kendre on Linkedin

https://www.linkedin.com/in/ravikant-kendre-0a69ab112

NOTE : I am not a HR neither a Recruiter . I am just gather opportunities from various sources & shared with you all. Pleasue verify and then apply
Useful for who new to python script
Hi, the below playbook works fine by creating VM in vcenter and joins the server domain from Ansible Controller. But the same PB will just create VM in vCenter but customize section will not execute from Ansible AWX, any suggestions please..

---
- hosts: localhost
gather_facts: False
vars_prompt:
name: "strname"
prompt: "Enter the VM name to deploy"
private: no
tasks:
- name: Create a Windows Virtual Machine
vmware_guest:
hostname: test.vcenter.com
username: user1@vcenter.com
password: ********
validate_certs: no
name: "{{ strname }}"
datacenter: Dev
cluster: Infrastructure
folder: /
template: Windows2019-STD_Base_Template
networks:
- name: Prod VLAN
domain: testing.net
state: poweredon
customization:
hostname: "{{ strname }}"
domain: testing.net
password: **
joindomain: testing.net
domainadmin: user1@vcenter.com
domainadminpassword: ****
wait_for_customization: yes
delegate_to: localhost