Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Fullstack Labs

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Fullstack Labs | Offres d’emploi chez Fullstack Labs | Salaires chez Fullstack Labs | Avantages sociaux chez Fullstack Labs
      Entretiens chez Fullstack LabsEntretiens d’embauche pour Devops Engineer chez Fullstack LabsEntretien chez Fullstack Labs


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Devops Engineer

      21 nov. 2025
      Candidat à l'entretien anonyme
      Bogotá,
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 1 semaine. J'ai passé un entretien chez Fullstack Labs (Bogotá, ) en sept. 2025

      Entretien

      There was an initial interview to get to know you and understand your level of English. After that, everything was completely automated. The second phase was divided into three stages. The first was a test, maybe to assess your IQ, then an automated interview where you speak to no one, and finally a coding test where you need to create some infrastructure in 1 hour and then, through a video, explain what you did. The overall process for me is unpleasant, speaking to no one and knowing you are being qualified by machines? I wonder if the same happen once you are inside, managed through AI ...

      Questions d'entretien [1]

      Question 1

      - Whats the difference between canary deployment and blue/green deployment? - When to use a statefulset vs using a deployment in kubernetes?
      Répondre à cette question

      Autres retours d’entretien d’embauche pour un poste comme Devops Engineer chez Fullstack Labs

      Entretien pour Devops Engineer

      29 oct. 2022
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience négative
      Entretien difficile

      Candidature

      J'ai passé un entretien chez Fullstack Labs

      Entretien

      Interview was smooth, but tedious. After HR interview, was given a complete CI/CD pipeline challenge, and required to complete a technical interview. Both stages are video recordings, I never got to interact with anyone, even HR interview, camera was off.

      Questions d'entretien [1]

      Question 1

      1. Introduce yourself, where you live, what you enjoy doing in your free time 2. Give us a high level overview of your skills and experience over your professional career. What projects have you worked on, describe the technologies you have worked with, teams, roles and responsibilities. 3. Development Process and Workflow. Describe the workflow from being assigned a ticket or scope of work all the way through the stages to being deployed to production. 4. AWS Challenges. Describe your responsibilities for the most challenging project you worked on, on deploying, monitoring and maintaining the AWS. Explain the infrastructure and the tools you used. 5. AWS Downtime. Using ec2 or ECS, how do you update an app version with close to zero downtime. 6. Is there a way to create an alarm based on a specific log using AWS, if yes, tell us as much detailed as possible about the process. 7. AWS BACKUP (2 MINS). Imagine a DBA developer reaching to you to recover some tables of a database that they lost in production database. What steps would you go to accomplish this task and put the database serving all the tables needed. 8. Terraform State (2 mins). Is there a difference between using terraform on your machine or automatic pipelines 9. Terraform rollbacks (2 minutes) Describe in details how you handle and control rollbacks when something wrong happens 10. K8s self-healing. Imagine the pipeline deployed a new version of an app that breaks the pod. The problem occurred because some secrets are missing inside the k8s 11. K8s configuration. What is the best approach to serve multiple apps inside k8s using only one DNS name 12. CI/CD. Explain the difference between continuous integration and continuous delivery. 13. Deployments. List different deployment strategies that you have used in the past. Go into detail any deployment strategy of your choosing. Go into details pros, cons and your experience 14. Automated Pipelines. Choose 1, Github, Circle Ci, Gitlab, Or Azure DevOps, what command do you use to request a job requiring another job also, what command do you use to request a job only when a condition is met. 15. Unit Testing. Describe in details test coverage, residence testing, continuous testing and automation testing 16. Leadership and architecture. Please describe in as much details as possible any leadership, management or architecture roles you’ve had. Give detailed example with specific tasks and goal was delivered. Introduction You will create a screen recording video of yourself completing the challenge, then send me a link to the file via Google Drive. A few things to consider: • We ask that you complete this challenge within the timeframe agreed on in our conversation. • You MUST NOT edit your video, stop it and continue later, copy contents from hidden screens, or anything similar that can be considered cheating. The recording must be without stopping and no editing. • You can use screen recording software like Loom, QuickTime, or something similar, to create the video. • The recording should be of the entire coding challenge, from the beginning to end, which is about 1 hour and 30 minutes. • Please upload the video file to Google Drive and share an open link with us (we support .mp4, files smaller/with less than 4gb). • As you complete the challenge, please explain what you are doing. Walk us through your thinking, explain your decisions, etc. Show us your UI work, if applicable. • Here is a short clip from a recent coding challenge, as an example of what your recording should look like: Example video. It is from a React challenge, but it is the same for any challenge. Setup You can clone the challenge repository to your local machine with the following command: git clone FSL DevOps Challenge: Part 1 Continuous integration Set up a new repository and CI pipeline using any code version provider specified below: • Github Actions • Gitlab CI/CD • CircleCI • Azure DevOps The CI steps should be created and triggered for any pull request. The pipeline should run the following steps: • Install dependencies npm install • Linter (ESLint) npm run lint • Formatter (Prettier) npm run prettier • Test (Jest) CI=true npm run test • Build npm run build The pipeline should be successful. Please provide some pull requests to show pass or fail status in the CI pipeline. FSL DevOps Challenge: Part 2 Test the application locally Run the application locally using the Kubernetes platform with docker-desktop, minikube, or any application that creates a local cluster of Kubernetes. The application must be deployed on Kubernetes using manifest files and must follow the requirements below: 1. The service and deployment resources must be hosted in a namespace called production 2. The service resource must listen on port 8080 3. The application should have an env name called MY_SECRET that gets the value from the Kubernetes secrets resource. The value should be password/secret 4. The application must be
      Répondre à cette question
      30

      Entretien pour Devops Engineer

      22 juin 2021
      Candidat à l'entretien anonyme
      Cal-Ida, CA
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 3 jours. J'ai passé un entretien chez Fullstack Labs (Cal-Ida, CA) en janv. 2021

      Entretien

      Seems to be very unprofessional, they reached me out via linkedin and we have scheduled a first interview, which they made me wait for 30 min and they did not even connect, I pinged back over linkedin and they did not even answer also I sent an email to find out what happened and if we could re-scheduled the call but they did not answer either..

      Questions d'entretien [1]

      Question 1

      Did not even connect to the zoom call.
      Répondre à cette question
      4