Here I share my learned experience in the form of tech blogs to share with my colleagues and friends.
-
Enable WinRM via Powershell
I have already setup a Certificate Authority (CA) on my Domain Controller and also have the GPOs setup to issue certificates. So if the machine has a valid certificate, then use the following powershell command to enable WinRM on https. To check run: PS C:\Users\adjoin> Test-WSMan -ComputerName “syswin01.ad.mitsuk.com”
-
AWX Dynamic Inventory plugin for cobbler
Here is my guide on how to import systems/hosts from cobbler. Step 1: Create a Custom Credential Type create inventories/cobbler_inventory.py in your repo and sync the project. Step 1: Create a Custom Credential Type Injector Configuration: Define how these fields will be injected into the environment:YAML Save the Custom Credential Type. Step 2: Create a…
-
Ansible AWX running Projects from Github Repo
Continuous Integration/Continuous delivery (CI/CD) is the practice of automating the integration of code changes from multiple developers into a single codebase. It is a software development practice where the developers commit their work frequently to the central code repository (Github or Stash). Then there are automated tools that build the newly committed code and do…