In my case, all Windows hosts are joined to the Active Directory domain, so I’ll use my AD account to authenticate to Ansible. This requires configuring Kerberos authentication on the Ansible server (see below). At this point, we assume thatAnsible is already installed on your Linuxmanagemen...
You can create the Ansible control node on nearly any Unix-like operating system, such as Red Hat, Ubuntu or MacOS. You can also use Windows via theWindows Subsystem for Linux. The only software requirement is Python 3.9. If you need to set up a development environment and you have...
Ansible playbooks I use to manage my machines. Contribute to f-koehler/playbooks development by creating an account on GitHub.
For the purposes of this article, we assume readers have some knowledge of both Ansible and PostgreSQL, not to mention Linux. I'm covering only the most basic features here; for a deeper dive, check out the references at the end of this article. How to administrate a cluster of database...
The first step is to initialize Terraform. before_script: - terraform --version - terraform init - apk add --update curl - curl -o kubectl https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/kubectl - install kubectl /usr/local/bin/ && rm kubectl - ...