Kubernetes Operators

Kubernetes Operators: Streamlining Application Manage Kubernetes, the powerful container orchestration platform, offers a robust ecosystem of tools and concepts to simplify the deployment and management of applications. One of the standout features in this ecosystem is the concept of Operators. Let’s dive into what Kubernetes Operators are and how they revolutionize application management. Understanding Kubernetes Operators At its core, a Kubernetes Operator is an implementation of the Controller pattern, but with domain-specific knowledge....

November 20, 2022 · 2 min · 390 words · Bharath

Interactively switch between AWS CLI Profiles

AWSW: AWS Switch Link to GitHub project: https://github.com/bharathalleni/awsw Interactively switch between AWS Profiles Setup Linux curl -O https://raw.githubusercontent.com/bharathalleni/awsw/main/_awswitch curl -O https://raw.githubusercontent.com/bharathalleni/awsw/main/_awsw chmod +x ./_awsw* sudo mv ./_awsw* /usr/local/bin/ Add the following line to your .bashrc or .zshrc file alias awsw="source _awsw" && source _awsw reset or echo 'alias awsw="source _awsw" && source _awsw reset' >> ~/.bashrc Usage awsw

July 18, 2021 · 1 min · 58 words · Bharath