Below you will find pages that utilize the taxonomy term “english”
Posts
Build Kubernetes QEMU/KVM Image with Packer
Packer is a tools to automate creation of multiple machine images build by Hashicorp. Its support multiple builders such as AWS EC2, DigitalOcean, LXD, VMWare, QEMU, etc. In this post, I will share how to create a packer template to build kubernetes image for QEMU/KVM on top of Ubuntu minimal cloud image based on my homelab setup.
Prerequisites packer cloud-localds (from cloud-image-utils in ubuntu) QEMU/KVM enabled host Step by Step Ensure you have QEMU/KVM enabled host, and also packer installed in your machine.
Posts
First Experience as a Tech Lead
Last year, I got offered and trust to be a lead in my team. To be honest, that was my first time I become a lead in my career. First thing that come to my mind was,
If I become a lead, then I will have N peoples that will be my responsibility, I will be one of the factor of their good and bad
That was not easy choice, but thanks to my supportive lead and also supportive colleague.
Posts
Does Infra Testing Really Matters?
Story In previous post, I already share my experience when tried to automate manual process by created script to automatically create configs based on the input in requests. We found that the script are useful enough at that time, and reduced number of incidents caused by misconfiguration (yay!). Unfortunately, we faced with issues when the provisioned infrastructure not work as expected which caused by several things, example: invalid port definition which (again) inputted by human.
Posts
How Scripting Make My Life Easier
Story Did you ever worked in repetitive tasks? I was worked as an operational cloud infrastructure engineer. Starting from received several ticket from developers who needs infrastructure, gathering informations for their needs, double check the requests, and everything done manually by myself.. Ouch! Even worse if we missed something from the request, ta-daaa! Incident happened and another requests got delayed.
It does happened to me (and my team) about past one-half years ago.
Posts
Stream Twitter Statuses with Tweepy
Flashback to several years ago when I was using Twitter and learn text mining. At that time, I used python to collects twitter statuses with specific keywords / terms defined and then stored all of those statuses to csv as dataset for text mining learning. In this article, I will share how to stream twitter statuses with python using tweepy module but in this article, I only print the status without store it to a file or database.
Posts
Test Your Ansible Role with Test Kitchen
Its been a while I am using Ansible as a tool for configuration management. There was some conditions where I created a roles with multiple dependencies, or I have to revisit an ancient roles created by someone else in the past. It doesn’t matter if the roles are well tested, how if its untested or doesn’t have tests at all?
In the past, I test ansible role by creating a vagrant box and run ansible playbook in it.
Posts
Immutable Infrastructure using Terraform
What is Terraform? Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently.
OK, that’s the first answer when you questioning about “what is Terraform”. Terraform is a tool built by Hashicorp for infrastructure management. It’s based on Go, so you can easily install it by downloading the binary into your machine.
Why Using Terraform? This is a good question, we know that there are some tools besides Terraform for infrastructure management that commonly used out there like Ansible, Chef, or CloudFormation (if you use AWS).