Skip to main content

Posts

AWS Security Specialty Exam Practice Test

Recent posts

Infrastructure as a Code and my two favorite tools!

Google Cloud VPC Basics for Associate Cloud Engineer - Part 2

Google Cloud VPC Basics for Associate Cloud Engineer - Part 1

How to connect to GCP services from outside using Service accounts

How to setup a swarm mode cluster, with managers and worker nodes

Setup swarm mode cluster, with managers and worker nodes I have used GCP for creating compute engines as we get 300$ free credit. You can follow steps in  https://cloud.google.com/compute/docs/quickstart-linux  to get started with the creation of vm's. Make sure that you select f1.micro instances to be in the free tier limit. More details on GCP free tier: https://cloud.google.com/free/ . However you can spin instance either in GCP, Azure or Aws to get started quickly. Once after creation on VM, install docker using yum install docker -y ( I have used CentOS distribution). We will start by creating a Docker swarm cluster with one master node and one working node. Docker swarm comes by default with docker installation and doesn't require any additional installations. Execute the command docker swarm init to initialize docker swarm in the manager node. We get a swarm token to run on the node and also for adding another manager Adding a worker node to the swarm cluster

Installing Ansible with CloudFormation and Userdata

AWS game-changing feature of supporting YAML in Cloudformation is a blessing for people who would love to see things in a "proper" format with comments :). Also it reduces the number of lines when compared to JSON. Thanks to Graham  for his basic tutorial on YAML and CloudFormation, borrowed much of his code and added ansible install. I haven't used cfn-init in the below snippet. Will try to enhance the code in future and make it more sophisticated. Please note: I have hard-coded values of my key-pair etc, feel free to remove them. Please do leave a comment if you are running into any issues. I have used RHEL image for this tutorial. AWSTemplateFormatVersion: "2010-09-09" Description: A sample template Parameters: FilePath: Description: The path of the file. Type: String Default: /home/ec2-user/userdata Resources: MyEC2Instance: Type: "AWS::EC2::Instance" # 1 Quotes are unnecessary here - will they always be? Pr