Jump to content

Puppet And Aws Devops Interview Questions


Recommended Posts

Posted

Friends,

 

Puppet and AWS related interview questions ikkada post cheyandi... meeru interview lo face chesine question and answers ikkada post cheyandi....

 

Thank you

Posted

you need to deploy using pupper or chef  a nginx server and static pages should update automatically from git repo

Posted

what is object storage?

 

S3 - Object Storage

EBS - Block Storage

Posted

migita answers meeting ayyaka septa.

Posted

S3 - Object Storage

EBS - Block Storage

product adagle bhayya what is object storage ani adiga

 

Swift kuda add chesuko above list lo

Posted

what is object storage?

Stores data as objects. Each object typically includes the data itself, a variable amount of metadata, and a globally unique identifier

Posted

diff between VPC and private cloud?

VPC is an isolated part of a public cloud that can be used as an extension to your on premises data center.

 

Private cloud --- isn't this just like a data center?. 

Posted

Stores data as objects. Each object typically includes the data itself, a variable amount of metadata, and a globally unique identifier

baa google talla a?

 

pawan-kalyan-trivikram-laugh-gif.gif

Posted

you need to deploy using pupper or chef  a nginx server and static pages should update automatically from git repo

simple puppet manifest to install nginx server . we can make use of vcsrepo modue to write a manifest that checks out code from a git repo.

 

if you want to launch a VM with this configuration use Vagrant + puppet.

 

node hostname {

 

            package {"nginx" :

                     

                      ensure => installed,

                      }

 

            file {"/etc/nginx/pathtonginxConfigurationFile":

                    

                     ensure => present,

                     content => "virtualhost configuration file content"

                     notify => Service["nginx"]

                }

 

 

             service{"nginx":

 

                 ensure => running

                 required => Package["nginx"]

                   }

}

Posted

Stores data as objects. Each object typically includes the data itself, a variable amount of metadata, and a globally unique identifier

Only bold part google

×
×
  • Create New...