techblog.akashojha.comHow to create a simple Bastion server in AWSWhat is a Bastion host? A bastion host is a server whose purpose is to provide access to a private network from an external network, such as the Internet. Because of its exposure to potential attack, a bastion host must minimize the chances of penetr...Jan 4, 2024·6 min read
techblog.akashojha.comConfigure your kubernetes with helm chartWhat is helm? Helm is a package manager for Kubernetes. It makes updates and rollback of applications more efficient and improves team collaboration. Kubernetes objects are challenging to manage Helm automates maintenance of YAML manifests for Kubern...Jan 9, 2023·6 min read
techblog.akashojha.comImplementing Github actions in your Python projectIntroduction Automation is the key to streamlining your work processes for any software development project. GitHub actions allow you to add your software development lifecycle workflows directly to your repository. GitHub Actions is a continuous int...Jan 6, 2023·7 min read
techblog.akashojha.comInvoke flake8 in Python ProjectFlake8 is a popular lint wrapper for python. In this article, we will understand the uses of flake8 against our python projects. What is flake8? Install flake8 in your project Run flake8 against your project Configure flake8 in config.cfg What ...Jan 5, 2023·2 min read
techblog.akashojha.comSetup and run your app on Kubernetes locally in your systemIn this article, we will go through the installation of Kubernetes in your local system and run a simple nginx server via kubernetes. We need to follow this process Introduction to kubernetes Install minikube locally Run your first pod Access kub...Dec 27, 2022·9 min read