Author: Ashi Dubey

Computer code on screens

How to Deploy a Nginx Web server using Pulumi

Reading Time: 3 minutes Good day, Readers! In this blog, we’ll look at how to deploy a Nginx Web server with Pulumi. Before you begin using pulumi, you should be familiar with Kubernetes workloads. What is Pulumi? Pulumi is an open-source infrastructure as code tool that simplifies the provisioning and management of cloud resources by utilising the most popular programming languages. Pulumi, which was founded in 2017, has fundamentally Continue Reading

Visualizing data - abstract purple background with motion blur, digital data analysis concept

Getting Started With New Relic and Kubernetes

Reading Time: 3 minutes Good day, Readers! In this blog, we will look at how to begin monitoring the performance of apps and infrastructure with New Relic.. What is New Relic? New Relic is observability software, which allows teams to monitor the performance of their apps and infrastructure. Part of creating a successful application is ensuring that it remains operational after you construct it. Teams need insight into the Continue Reading

code coding computer cyberspace

How to create Service Using Kubernetes Python Client

Reading Time: 2 minutes Hello Readers! In this blog, we will see how we can create a service using the Kubernetes Python client. As we all know that we use kubectl commands for creating, listing, updating, and deleting the Kubernetes resources. What is service in Kubernetes? A cluster’s deployed collection of pods is logically abstracted as a Kubernetes service (which all perform the same function). Since pods are transient, Continue Reading

Our Rust experts offer their insights to the Rust community with a dedicated LinkedIn page

How to create Job workloads Using Kubernetes Python Client

Reading Time: 3 minutes Hello Readers! In this blog, we will see how we can create a job using the Kubernetes Python client. As we all know that we use kubectl commands for creating, listing, updating, and deleting the Kubernetes resources. What is K8s Python Client?  To write applications using the Kubernetes Rest API, you do not need to implement the API calls and request/response types yourself. You can Continue Reading

jenkins

How to Build and Push a Docker Image using JenkinsFile

Reading Time: 3 minutes Hello Readers, In this we are going to learn How to Build and Push a Docker Image using JenkinsFile Before you start you must have installed and configured docker and Jenkins on your system. What is Docker? Docker is an open platform for developers and system administrators to build, ship, and run decentralized applications. To learn more about docker you can check this URL Why Continue Reading

data codes through eyeglasses

How to deploy a Django Application using Helm

Reading Time: 3 minutes Hello Readers, In this we are going to create a helm chart to deploy a Django application. Before you start you must a django application, kubernetes and a helm installed and configured on your system. What is Python Django Application? Django is a high-level Python web framework that enables the rapid development of secure and maintainable websites. Built by experienced developers, Django handles much of Continue Reading

docker

How to Dockerize a Django Application

Reading Time: 3 minutes Hello readers. This blog will show you how to get started with dockerize a Django application. Before you start, you need to have docker and Django installed and configured on your computer. What is Docker? Docker is a software platform that allows you to quickly build, test, and deploy applications. Docker packages the software into standardized units called containers. For instance, this unit contains everything Continue Reading

packer

How to install Jenkins on AMI using Packer

Reading Time: 3 minutes Hello Readers, In this blog, we’ll see how we can install Jenkins on an AMI for EC2 instance in AWS using packer.  Before starting you must have Packer, and AWS CLI installed on your machine and they both must be configured.  What is Packer? Packer is an open-source tool that allows you to create the same machine image for multiple platforms from a single source Continue Reading

terraform

How to Setup IAM Roles in AWS using Terraform

Reading Time: 3 minutes Hello Readers, In this blog we’ll see that how we can set-up or create IAM roles in AWS using terraform. Before starting you must have Terraform, AWS CLI install on your machine and they both must be configure.  What is IAM Roles in AWS ? AWS Identity and Access Management (IAM) is a web service that you can use to securely control access to AWS Continue Reading

close up of computer screen

How to Setup Networks in AWS using Terraform

Reading Time: 3 minutes Hello Readers, In this blog we’ll see that how we can set-up OR create networks in AWS using Terraform. Before starting you must have Terraform, AWS CLI install on your local machine and they both must be configure.  SO LET’S GET START! It is easy to set-up Networks using terraform. In order to do so you should follow certain steps. These are as follows: Go Continue Reading

blur business close up code

How to Deploy AWS Elastic Container Service using Fargate

Reading Time: 3 minutes Hello Readers! In this blog let’s see how to deploy and run your docker container in AWS Elastic Container service(ECS) in AWS using the launch type fargate. What is Elastic Container Service(ECS) ? Amazon Elastic Container Service (ECS) is a highly scalable, high performance container management service that supports Docker containers and allows you to easily run applications on a managed cluster of Amazon Elastic Continue Reading

introduction to web server and its illustration

Reading Time: 3 minutes what is web server? A web server is a computer that stores web content. Web servers are basically use to host websites. There are also other web servers such as games, storage, FTP, and email. A website is a collection of web pages, and a web server is software that responds to requests for web resources. Web server Working The web server responds to client Continue Reading

introduction to linux filter command and its illustration

Reading Time: 3 minutes What is Linux filter? A filter is a program that takes plain text (stored in a file or generated by another program) as standard input, converts it to a meaningful format, and then returns it as standard output. Linux has several filters. Some of the most commonly use filters are describe below. 1. cat : Display the text of the file line by line.  Syntax:   cat [path] Continue Reading