Aws Devops Interview Questions::
=================================
=====================================
1).your pods are restarting again and again ? So what is going on?
2).your ec2 instances terminated itself.is it autoscaling and is it health check issues or its somwthigs else . So how will you answer that ?
3).The docker image works fine. But image file fails into productions ? So what u will do that into it ?
===============================================
* Check container logs (docker logs / kubectl logs)
* Verify environment variables and secrets
* Confirm required files are copied in the Dockerfile
* Check file and folder permissions
* Ensure the app listens on 0.0.0.0, not localhost
* Verify CPU/memory limits
* Confirm correct image tag and architecture
* Reproduce the issue in staging and redeploy
=================================================
4).what will happen if image you will delete the image from which your container is running into the docker enviornment?
===============================
Deleting a Docker image does not stop a running container.
The container continues to run because it already uses the image layers.
However, new containers cannot be created from that image, and if the running container stops or crashes, it cannot be restarted unless the image is pulled again.
====================================
Kubernetes Interview Questions:
===============================
Kubernestes Interview Questions:
========================================
1).You are asking with deploying a stateful applications on Kubernetes ? How would you ensure the data persistence and high avilibity into it ?
2).you need a scale a Kubernetes deployment based on a cpu utilisation’s.describe the how would you implement the autoscalling into it?
3). You are tasked with deploying a micro services on Kubernetes ? So how would you mange the inter-service communications into it ?
4).you need to deploy a Kubernetes cluster across multiple cloud provider for reduatncy ? Describe your approach into it
5).you are tirubleshooting a kubernetes pods that’s failing to start ?walk me through the debugging you process?
6).you are deploying the kubernestes applications that requires secrets management. How would you secretly mange the information into it ?
Secrets can be created manually or dynamically carted into it
7).you are tasked with updating the Kubernetes deployment without downtime? How would you chive the zero-downtime into it ?
8).you are deploying the kupernestes applications that requires persistent storage with different peformance tiers ? So how would you implement the storage class proviosin g?
9).you need to secure your access the Kubernetes cluster and resources .describe your approach to Kubernetes authentications and authrizatons into it ?
10).you are tasked with with monitoring and logging Kubernetes cluster performance and health .describe your approach to oberserviivity into it ?
===================================================================================================
AWS Interview Questions:
1).could you please explain the spot instances and configuring about the spot ec2 instances into aws environment ? 2).what is the mfa and how to configure the mfa into iam ? 3).security groups and tell about it the concepts 4).vpc endpoints and how to configure the those things ? 5).vpc flow logs 6).AWS CLI into aws environment? ------------------------------------------------ AWS Interview Questions: 1).IAM roles into aws environment: 2).Custom IAM role and policy into aws environment? IAM Role : which is used to establish the communication between the different iam services into aws environment IAM policy into aws environment: which is use to tell us what kind of activity you can perform on each services into aws environments: maybe it would be like as the, read ,write and execute How to create IAM role and policy into aws environment? first create the iam role without allocated the policy: give the aws services choose use case or aws services then don't choose any policy ...
Comments
Post a Comment