FIFTH DEVOPS INTERVIEW | EXPERIENCED | REALTIME QUESTIONS | TELEPHONIC ROUND

Поділитися
Вставка
  • Опубліковано 29 сер 2024
  • ​ ‪@devopsrulers‬
    This is to learn how to attain interview for Devops role with around 4 to 6 years of experience. These are real time questions which are asked in interview.
    #devopsinterview #devopsquestions #devops #devopsinterviewquestions #devopsintelugu #devoptrainingvideo #docker #kubernetes #jenkins #aws #ansible #terraform

КОМЕНТАРІ • 62

  • @pmmanjunath58889
    @pmmanjunath58889 Рік тому +16

    Swap memory is used when the amount of physical memory (RAM) is full. If the system needs more memory resources and the RAM is full, inactive pages in memory are moved to the swap space. While swap space can help machines with a small amount of RAM, it should not be considered a replacement for more RAM.

  • @SatishDRajShetty
    @SatishDRajShetty Рік тому +7

    (Use cases of ) Init coniainer k8s :
    Potential use cases for Init Containers
    A blockchain app that needs to register itself amongst its peers
    An app that must fetch an access token from an identity provider
    Dynamic data fetched from a database and cached for the app to run after startup
    Fetch encrypted secrets from a vault and write to file system
    Block app startup until another system is available (i.e., a queue or database server)

  • @indiannationalist07
    @indiannationalist07 Рік тому +4

    Round Robin Distribute Traffic across group of Servers ,it is stateless in nature

  • @yogeshwarghule
    @yogeshwarghule 2 роки тому +4

    Good one , looking forward to more full videos like this ....Good job buddy ..Thanks

  • @sumitsrivatava
    @sumitsrivatava 2 роки тому +8

    Umask for root is 022 , open ports - netstat

  • @Aryan21able
    @Aryan21able Рік тому +1

    And he was working as devops engineer and I'm unemployed. I should leave this earth!

  • @luckycricketclub
    @luckycricketclub 2 роки тому +1

    It's helpful. Keep posting.

  • @Hidayathulla224
    @Hidayathulla224 7 місяців тому

    Shell scripting code
    #!/bin/bash
    echo "Enter a string: "
    read string
    length=${#string}
    echo "Enter your number: "
    read no
    total=`expr $no + $length`
    echo "Sum of given number of strings and number is:" $total

  • @targetachiever5014
    @targetachiever5014 Рік тому

    Very nice,keep posting such videos

  • @SatishDRajShetty
    @SatishDRajShetty Рік тому +1

    The RAM finds sufficient space to hold a new process within it. Here, the borrowed space from the hard disk is called Swap Memory

  • @omkarmule9
    @omkarmule9 7 місяців тому +1

    Gud1

  • @jayaprasad9346
    @jayaprasad9346 2 роки тому +1

    Nice 👍

  • @amitdhanke4013
    @amitdhanke4013 Рік тому +3

    If I had an interviewer this guy would get rejected sorry but he didn't seem to have 4+ experience.

    • @bitanji6851
      @bitanji6851 2 місяці тому +1

      Well,most people with no experience always said they have 3 to 4 years experience. No employer will call you without experience. The guys is pretty good,give him some credit

  • @prashantpowar9269
    @prashantpowar9269 2 роки тому +1

    Nice, please upload more video

  • @PUBLICNEWSKANNADA
    @PUBLICNEWSKANNADA Рік тому +3

    #!/bin/bash
    count=0
    var=`echo "$1" |wc -c`
    count=`expr $var - 1`
    sum=`expr $count + $2`
    echo $sum

  • @sunkamvenkatesh1086
    @sunkamvenkatesh1086 Рік тому

    Need more on kubernates and devops related

  • @bharatprasad378
    @bharatprasad378 2 роки тому

    👏👏👏

  • @chandankumarbrahma3804
    @chandankumarbrahma3804 2 роки тому

    Umask value for root user is 022

  • @arupde6320
    @arupde6320 2 роки тому +1

    be regular . subscribed

  • @bulldozerbaba3830
    @bulldozerbaba3830 2 роки тому

    Nice one ✌🏻

  • @vijaybhatt8060
    @vijaybhatt8060 2 роки тому +1

    creating rds db aws using terraform is not way in real time???

    • @nkemqueen2638
      @nkemqueen2638 Рік тому +1

      You can do it using docker compose

    • @KamilHajiyev
      @KamilHajiyev Рік тому +4

      resource "aws_db_instance" "example" {
      identifier = "example"
      engine = "mysql"
      engine_version = "5.7"
      instance_class = "db.t2.micro"
      name = "example"
      username = "username"
      password = "password"
      allocated_storage = 20
      storage_type = "gp2"
      publicly_accessible = true
      parameter_group_name = "default.mysql5.7"
      backup_retention_period = 0
      skip_final_snapshot = true
      }

  • @smileentertain
    @smileentertain Рік тому +1

    Could u please solve the shell script in comment section

    • @TheSpiritMan
      @TheSpiritMan Рік тому

      #!/bin/bash
      echo "enter string"
      read str
      echo "enter no"
      read num
      c=${#str}
      total=`expr $c \* $num`
      echo "Total = $total"

  • @Amol1501
    @Amol1501 Рік тому +6

    Zip folder gzip filename.tar.gz
    Round robin: whenever request redirect from dns to load balancer ,load balancer distribute traffic equally to the downstream server. After certain time each downstream server serve the traffic this is call round robin.
    Last question answer: kubectl get svc -n namespace name

  • @PremKumar-uj8dd
    @PremKumar-uj8dd 2 роки тому

    Post more videos 👍 nice

  • @mynameisram6795
    @mynameisram6795 Рік тому +1

    can you please share the shellscript please !!!!

    • @devopsrulers
      @devopsrulers  Рік тому

      Sure I will share

    • @christophergill6132
      @christophergill6132 Рік тому

      Try and confirm , if this is working or not
      #!/bin/bash
      echo "Enter a string: "
      read string
      length=${#string}
      echo "Enter your number: "
      read no
      echo $no + $length

  • @patnaikbrothers2024
    @patnaikbrothers2024 Рік тому

    This was for which company? Was he selected?

  • @MoonSlayer007
    @MoonSlayer007 Рік тому

    shell scripting Ans

    • @christophergill6132
      @christophergill6132 Рік тому +1

      Try and confirm , if this is working or not
      #!/bin/bash
      echo "Enter a string: "
      read string
      length=${#string}
      echo "Enter your number: "
      read no
      echo $no + $length

  • @mrshelby8838
    @mrshelby8838 Рік тому

    Is this interview a selected or rejected kind?

  • @sbnk222
    @sbnk222 Рік тому

    Hi can you please upload a video on kubernities

  • @prakharmishra7508
    @prakharmishra7508 Рік тому +2

    Bhai aisa interview jayga to select hote hai ya ni?

    • @devopsrulers
      @devopsrulers  Рік тому +1

      Yes 90% chances rhega. Some other factors also matters like internal matter of company

    • @prakharmishra7508
      @prakharmishra7508 Рік тому

      @@devopsrulers sir, how can i contact you

    • @Amol1501
      @Amol1501 Рік тому

      Mere isase kahi guna acche gaye hai interview, lekin nahi ho paya. Luck and requirement is imperative factor

    • @prakharmishra7508
      @prakharmishra7508 Рік тому

      @@Amol1501 ya bro... Samne kaun baitha hai aur uski requirements kya hai, ispe bhi depend krta hai

    • @student_voice
      @student_voice Рік тому

      When i have given final round interview of EY, i was confident that i will be selected, but when i got feedback, i was not selected.

  • @karthikh6257
    @karthikh6257 Рік тому +1

    Hope this was asked in shell scripting
    #! /usr/bin/bash
    read -p "Enter Sting Value:" String_value
    read -p "Enter Number Value:" Number_value
    Length=${#String_value} #for checking the Length of string
    ans=$((Length * Number_value))
    echo $ans

  • @shinestudio6339
    @shinestudio6339 2 роки тому

    Nice 👍

    • @devopsrulers
      @devopsrulers  2 роки тому

      Thanks ✌

    • @sbnk222
      @sbnk222 Рік тому

      Can you upload the video for kubernetes