Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by WhiteBlue Cloud Services Team. If you also belong to the team, you can get access from here

WhiteBlue Cloud Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

WhiteBlue Cloud Services Interview Questions and Answers

Updated 15 Feb 2025

8 Interview questions

A Kubernetes DevOps Engineer was asked 5mo ago
Q. How do you version your application's container image in an artifactory?
Ans. 

Versioning container images in an artifactory involves tagging images with version numbers.

  • Tag the container image with a version number before pushing it to the artifactory.

  • Use semantic versioning (e.g. 1.0.0) for clear version identification.

  • Maintain a consistent versioning scheme to track changes and updates.

  • Automate the versioning process using CI/CD pipelines for efficiency.

  • Ensure proper documentation of vers...

A Kubernetes DevOps Engineer was asked 5mo ago
Q. What are the key components of the Kubernetes control plane?
Ans. 

Key components of the Kubernetes control plane include API server, scheduler, controller manager, and etcd.

  • API server: serves the Kubernetes API and is the front-end for the control plane

  • Scheduler: responsible for assigning workloads to nodes based on resource availability

  • Controller manager: manages different controllers that regulate the state of the cluster

  • etcd: distributed key-value store that stores cluster st...

A Kubernetes DevOps Engineer was asked 5mo ago
Q. How do you deploy a load balancer to your Kubernetes Cluster?
Ans. 

To deploy a load balancer to a Kubernetes Cluster, you can use a Kubernetes Service of type LoadBalancer.

  • Create a Kubernetes Service manifest with type LoadBalancer.

  • Specify the ports and target port for the service.

  • Apply the service manifest to the Kubernetes cluster.

  • The cloud provider will provision a load balancer and assign an external IP to it.

  • Clients can now access the application through the external IP of t...

A Kubernetes DevOps Engineer was asked 5mo ago
Q. How is storage allocation and management done on an on-prem Kubernetes deployment?
Ans. 

Storage allocation and management on on-prem Kubernetes involves using persistent volumes and storage classes.

  • Persistent volumes (PVs) are created and managed separately from pods.

  • Storage classes define different types of storage and their properties.

  • PVs are dynamically provisioned based on storage class definitions.

  • Pods can request specific storage requirements using Persistent Volume Claims (PVCs).

A Kubernetes DevOps Engineer was asked 5mo ago
Q. What are the key differences between Chart.yaml and values.yaml?
Ans. 

Chart.yaml defines metadata about the chart, while values.yaml contains configurable values for the chart.

  • Chart.yaml contains metadata such as name, version, and description of the chart.

  • values.yaml contains configurable values that can be overridden during chart installation.

  • Chart.yaml is used for defining the structure of the chart, while values.yaml is used for customizing the chart.

  • Example: Chart.yaml may have...

A Kubernetes DevOps Engineer was asked 5mo ago
Q. How do you manage networking in a Kubernetes cluster?
Ans. 

Networking in a Kubernetes cluster is managed through various components like CNI plugins, Service objects, Ingress controllers, and Network Policies.

  • Use Container Network Interface (CNI) plugins to enable communication between pods in the cluster.

  • Utilize Service objects to expose pods internally or externally within the cluster.

  • Implement Ingress controllers to manage external access to services within the cluster...

A Kubernetes DevOps Engineer was asked 5mo ago
Q. How to create a Docker file? What are the contents of the Docker file?
Ans. 

Creating a Docker file involves defining the steps to build a Docker image.

  • Start with a base image using the 'FROM' keyword

  • Add any necessary dependencies or packages using 'RUN' commands

  • Set environment variables with 'ENV' command

  • Copy files or directories into the image using 'COPY' command

  • Expose ports with 'EXPOSE' command

  • Define the command to run when the container starts with 'CMD' or 'ENTRYPOINT' command

Are these interview questions helpful?
A Kubernetes DevOps Engineer was asked 5mo ago
Q. What are Scheduler, API Server, and Ingress Controller in Kubernetes?
Ans. 

Scheduler, API Server, and Ingress Controller are key components in Kubernetes responsible for scheduling, managing API requests, and managing external access to services.

  • Scheduler: Component responsible for assigning workloads to nodes based on resource availability and constraints.

  • API Server: Component that serves as the front-end for Kubernetes, handling API requests, authentication, and validation.

  • Ingress Cont...

WhiteBlue Cloud Services Interview Experiences

4 interviews found

Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. What are the key components of the Kubernetes control plane?
  • Ans. 

    Key components of the Kubernetes control plane include API server, scheduler, controller manager, and etcd.

    • API server: serves the Kubernetes API and is the front-end for the control plane

    • Scheduler: responsible for assigning workloads to nodes based on resource availability

    • Controller manager: manages different controllers that regulate the state of the cluster

    • etcd: distributed key-value store that stores cluster state a...

  • Answered by AI
  • Q2. How to create a Docker file? What are the contents of the Docker file?
  • Ans. 

    Creating a Docker file involves defining the steps to build a Docker image.

    • Start with a base image using the 'FROM' keyword

    • Add any necessary dependencies or packages using 'RUN' commands

    • Set environment variables with 'ENV' command

    • Copy files or directories into the image using 'COPY' command

    • Expose ports with 'EXPOSE' command

    • Define the command to run when the container starts with 'CMD' or 'ENTRYPOINT' command

  • Answered by AI
  • Q3. How do you deploy a load balancer to your Kubernetes Cluster?
  • Ans. 

    To deploy a load balancer to a Kubernetes Cluster, you can use a Kubernetes Service of type LoadBalancer.

    • Create a Kubernetes Service manifest with type LoadBalancer.

    • Specify the ports and target port for the service.

    • Apply the service manifest to the Kubernetes cluster.

    • The cloud provider will provision a load balancer and assign an external IP to it.

    • Clients can now access the application through the external IP of the lo...

  • Answered by AI
  • Q4. What's your experience with automation using shell scripting? Write a Shell script about what you automate recently
  • Ans. 

    I have extensive experience with automation using shell scripting.

    • Automated deployment of Kubernetes clusters using shell scripts

    • Automated backup and restore processes for Kubernetes resources

    • Automated monitoring and alerting setup for Kubernetes environments

  • Answered by AI
  • Q5. How do you manage networking in a Kubernetes cluster?
  • Ans. 

    Networking in a Kubernetes cluster is managed through various components like CNI plugins, Service objects, Ingress controllers, and Network Policies.

    • Use Container Network Interface (CNI) plugins to enable communication between pods in the cluster.

    • Utilize Service objects to expose pods internally or externally within the cluster.

    • Implement Ingress controllers to manage external access to services within the cluster.

    • Enfo...

  • Answered by AI
  • Q6. How is storage allocation and management done on an on-prem Kubernetes deployment?
  • Ans. 

    Storage allocation and management on on-prem Kubernetes involves using persistent volumes and storage classes.

    • Persistent volumes (PVs) are created and managed separately from pods.

    • Storage classes define different types of storage and their properties.

    • PVs are dynamically provisioned based on storage class definitions.

    • Pods can request specific storage requirements using Persistent Volume Claims (PVCs).

  • Answered by AI
  • Q7. What are the key differences between Chart.yaml and values.yaml?
  • Ans. 

    Chart.yaml defines metadata about the chart, while values.yaml contains configurable values for the chart.

    • Chart.yaml contains metadata such as name, version, and description of the chart.

    • values.yaml contains configurable values that can be overridden during chart installation.

    • Chart.yaml is used for defining the structure of the chart, while values.yaml is used for customizing the chart.

    • Example: Chart.yaml may have 'nam...

  • Answered by AI
  • Q8. What are Scheduler, API Server, and Ingress Controller in Kubernetes?
  • Ans. 

    Scheduler, API Server, and Ingress Controller are key components in Kubernetes responsible for scheduling, managing API requests, and managing external access to services.

    • Scheduler: Component responsible for assigning workloads to nodes based on resource availability and constraints.

    • API Server: Component that serves as the front-end for Kubernetes, handling API requests, authentication, and validation.

    • Ingress Controlle...

  • Answered by AI
  • Q9. How to version your application's container image in an artifactory?
  • Ans. 

    Versioning container images in an artifactory involves tagging images with version numbers.

    • Tag the container image with a version number before pushing it to the artifactory.

    • Use semantic versioning (e.g. 1.0.0) for clear version identification.

    • Maintain a consistent versioning scheme to track changes and updates.

    • Automate the versioning process using CI/CD pipelines for efficiency.

    • Ensure proper documentation of version c...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for WhiteBlue Cloud Services interview:
  • Kubernetes
  • Helm
  • Docker
  • Artifactory
  • Shell Scripting
Interview preparation tips for other job seekers - Questions about Containerisation, Pipelines, Shell Scripting, and other concepts related to DevOps are minimal. In-depth discussion was about Kubernetes, functionality in a cluster, networking, deployments with Helm charts and on-premise deployment with Kubernetes.
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Core Technical Questions
  • Q2. Technical Questions with advance lvl
Round 2 - One-on-one 

(1 Question)

  • Q1. Leadership Discussion
Round 3 - One-on-one 

(1 Question)

  • Q1. In office Leadership discussion
Round 4 - One-on-one 

(1 Question)

  • Q1. Final discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - For basic learning it's good. Also if you are an experienced person you will get good amount of salary because of the market competition.
For juniors it's just learn as much as you can and switch as the company uses you like any other company for their projects n throws when not you r not required.

Interview Questions & Answers

user image Anonymous

posted on 15 Nov 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Oct 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Fully scenario based questions...even if we tell the answer they are expecting the optimized solution

Interview Questions & Answers

user image Anonymous

posted on 27 Feb 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

General topics like distance speed

Round 2 - Group Discussion 

Current affair topics were asked to check the knowledge

Round 3 - HR 

(1 Question)

  • Q1. It was merely an introduction about the candidate

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about WhiteBlue Cloud Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence
Are these interview questions helpful?

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

WhiteBlue Cloud Services Interview FAQs

How many rounds are there in WhiteBlue Cloud Services interview?
WhiteBlue Cloud Services interview process usually has 2-3 rounds. The most common rounds in the WhiteBlue Cloud Services interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for WhiteBlue Cloud Services interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at WhiteBlue Cloud Services. The most common topics and skills that interviewers at WhiteBlue Cloud Services expect are Logistics, GCP, SQL, Python and Human Capital Management.
What are the top questions asked in WhiteBlue Cloud Services interview?

Some of the top questions asked at the WhiteBlue Cloud Services interview -

  1. How do you deploy a load balancer to your Kubernetes Clust...read more
  2. How is storage allocation and management done on an on-prem Kubernetes deployme...read more
  3. How to create a Docker file? What are the contents of the Docker fi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

WhiteBlue Cloud Services Reviews and Ratings

based on 13 reviews

3.4/5

Rating in categories

3.9

Skill development

3.4

Work-life balance

3.0

Salary

3.1

Job security

3.5

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 13 Reviews and Ratings
Senior Architect
6 salaries
unlock blur

₹42.8 L/yr - ₹45 L/yr

Software Developer
5 salaries
unlock blur

₹5.2 L/yr - ₹7 L/yr

Software Cloud Engineer
5 salaries
unlock blur

₹5.2 L/yr - ₹8.1 L/yr

Software Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹12.1 L/yr

DOT NET Developer
4 salaries
unlock blur

₹4.5 L/yr - ₹4.5 L/yr

Explore more salaries
Compare WhiteBlue Cloud Services with

HCL Infosystems

3.9
Compare

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

3.9
Compare
write
Share an Interview