Real time issue on kubernetes @kubernetesissue Channel on Telegram

Real time issue on kubernetes

@kubernetesissue


Hi, does anyone want to learn real time production kubernetes issues with solutions, i have more than 30 plus real time

Real Time Kubernetes Issues and Solutions (English)

Are you a Kubernetes enthusiast looking to learn more about real-time production issues and solutions? Look no further than the "kubernetesissue" Telegram channel! With over 30 real-time scenarios, this channel is your go-to source for in-depth discussions on Kubernetes challenges and how to tackle them head-on. Whether you're a seasoned Kubernetes pro or just starting out, this channel offers valuable insights, tips, and tricks to help you navigate the complex world of container orchestration. From troubleshooting common deployment issues to optimizing your Kubernetes clusters for performance, the "kubernetesissue" channel covers it all. Join a community of like-minded individuals who are passionate about Kubernetes and share your experiences, ask questions, and learn from others in the field. Stay up-to-date with the latest trends and developments in Kubernetes technology, and gain a deeper understanding of how to overcome real-world challenges in a production environment. Don't miss out on this valuable resource for all things Kubernetes. Join the "kubernetesissue" Telegram channel today and take your Kubernetes skills to the next level!

Real time issue on kubernetes

13 Dec, 10:40


Unable to Upgrade Kubernetes Cluster and the same issue I also faced in my Real time Kubernetes project so in this session I have explained it what are the RCA For this and how do we fix this issue so that you can also get Real time exposure on Kubernetes and will be more confident during kubernetes interview

Real time issue on kubernetes

13 Dec, 10:40


Cluster upgradation failed case scenario

Real time issue on kubernetes

13 Dec, 10:38


How do we Plan for Kubernetes Cluster Upgradation | Failure case Scenario | Pre & Post Task Upgrade
https://youtu.be/QXG032PG32A

Real time issue on kubernetes

13 Dec, 10:36


Terraform Cheatsheet


#Initializes the working directory that contains our terraform code
$ terraform init
** Generally it downloads the modules and plugins and sets up the backend for storing terraform state file (by which terraform keeps tracks of resource).

#to check what changes will take place once terraform is applied
$ terraform plan
Terraform plan generally reads the code & then creates and shows a "plan" of execution/deployment. 
Note:- This command doesn't deploy anything, only shows what changes will be done after running "apply"

#it deploys the instructions & statements in the code
$ terraform apply 
** with every "terraform apply" the "state file" is updated every time

#Apply changes without being prompted to enter "yes"
$ terraform apply --auto-approve

#Destroys all resource which is recorded inside state file
$terraform destroy
**Should be used with caution as it is non-reversible command, it is best practise to always take the backup before running this command. 

#destroy/cleanup deployment without being prompted to enter "yes"
$ terraform destroy --auto-approve
#only initializes the directory but not downloads the plugin for specific provider
$ terraform init -get-plugin=false

#Shows the terraform version which is running 
$ terraform version

#Download and update modules in the "root" module
$ terraform get -update=true


#pass the deployment plan to test.out 
$ terraform plan -out test.out

#Outputs a destroy plan
$ terraform plan -destroy

#Only apply changes to the target resource
$ terraform apply -target=aws_instance.my_ec2

#Override a variable or pass a variable at run time
$ terraform apply -var my_region_variable=us-east-1

#Lock the remote state file (possible only where backend allows locking eg. aws s3 bucket)
$ terraform apply -lock=true

#Number of resource which can run simultaneously 
$ terraform apply --parallelism=4

#Provides information of providers which is used in current configuration 
$ terraform providers

#Creates a new workspace
$ terraform workspace new mytestworkspace

#Change to the selected workspace
$ terraform workspace select  mytestworkspace

#List out all workspaces
$ terraform workspace list

#Show the terraform state information in human readable format
$ terraform show

#show details stored in terraform state for the mentioned resource
$ terraform state show aws_instance.my_ec2

#download and output remote state to a file
$ terraform state pull > terraform.tfstate

#move a resource tracked via state to different/custom module
$ terraform state mv aws_instance.my_ec2 module.custom_module

#list all the resources tracked in current state file
$ terraform state list

#Unmanage a resource & delete it from terraform state file
$  terraform state rm aws_instance.my_ec2

#to check if the indentation of the code is well arranged or not as per HCL standard
$ terraform fmt

#validate code for syntax
$ terraform validate

#skip the backend validation
$ terraform validate -backend=false

#Taint resources which needs to be recreated in next apply
$ terraform taint aws_instance.my_ec2

#Remove taint for ny tainted resource
$ terraform untaint aws_instance.my_ec2

#Force unlock any locked state file
$ terraform force-unlock LOCK_ID

#Obtain and save API token for terraform cloud
$ terraform login

#Logout of terraform cloud 
$ terraform logout

Real time issue on kubernetes

19 Nov, 05:40


Unable to Access Application URL in Kubernetes | Troubleshooting in Ingress | AKS Issue
https://youtu.be/2xJzRqUEra8

Real time issue on kubernetes

11 Oct, 11:07


I have faced one of critical issue in my project that one of the applications url was not working …. So I have explained in this session that what are the RCA for this and how we can fix those issue , so that you can also get real time exposure on Kubernetes Project

Real time issue on kubernetes

09 Oct, 12:14


I have created new Module on Real time Session in Kubernetes

Where I have mentioned what all type of Issue , Use cases , Customer requirements , challenges faced in my Current Project Based on that I have Created those session …after completing all module you can easily mentioned relevant experience in Kubernetes and more confident during interviews

Real time issue on kubernetes

05 Oct, 09:01


https://wa.me/+917280997055

Real time issue on kubernetes

05 Oct, 09:00


If Interviewer asked with you like what type of challenges you faced in your project then you can explain it very well and will be more confident during interviews

Real time issue on kubernetes

05 Oct, 08:41


I HAVE COVERED ONE OF USED CASES RELATED TO KUBERNETES PROJECT THAT ONE OF APPLICATION URL NOT WORKING YOU CAN SEE IN SCREENSHOT THAT MY URL WAS NOT WORKING AFTER TROUBLESHOOTING ITS WORKING

I HAVE EXPLAINED IN IT WHAT ARE THE RCA FOR THIS HOW DO WE FIX THOSE ISSUE ,IF URL DOWN FIRST THINGS WHAT I HAVE TO CHECK I HAVE CREATED CHECKLIST WHIHC YOU HAVE TO FOLLOW AND SAME STEP I ALSO FOLLOWED IN MY CURRENT KUBERNETES PROJECT WHEN I FACED SIMILAR ISSUE IN MY PROJECT

Real time issue on kubernetes

05 Oct, 08:15


https://youtu.be/gTcDfcae0qA

Real time issue on kubernetes

03 Oct, 09:38


DM to get more details on this