Assignment#1 for DevSecOps Batch

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Pre Step#1 – Register and Validate your account at bestDevOps.com – https://www.bestdevops.com/wp-login.php?action=register Step#2 – Login Step#3 – Create a POST on following questions Q1. Title – List of 20 popular commands of docker docker –version-This command is used to get the currently installed version of dockerdocker pull-This command is used to pull images from

Read more

Assignment#1 for DevSecOps Batch

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Q1. Title – List of 20 popular commands of docker docker version docker info docker images docker ps docker ps -a docker pull docker start docker stop docker restart docker pause docker unpause docker kill docker run docker build docker rm docker exec docker commit docker create docket attach docker inspect Q2. Title –

Read more

DevOps Assignment

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now #Q1. Title – List of 20 popular commands of docker 1.docker ps2.which docker3.docker info4.docker images5.docker ps -a6.docker help7.docker version8.docker pull9.docker create10.docker start11.docker restart12.docker stop13.docker pause14.docker unpause15.docker kill16.docker rm17.docker run18.docker exec19.docker attach20.docker inspect #Q2. Title – How to configure SMTP server in Sonarqube? Login to sonar cube dashboard and click on the Administration Tab. Then

Read more

DevSecOps Session

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Assignment 1 List of Popular commands of Dockers: docker start docker stop docker commit docker run docker pause docker unpause docker kill docker info docker commit docker create docker save docker version docker restart docker help List of most popular plugins of Jenkins from plugins.jenkins.io/ GIT subversion(SVN) git pipeline for blue ocean Jira junit

Read more

Assignment#1 for DevSecOps Batch

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Q1. List of 20 popular commands of docker docker run – Runs a command in a new container. docker start – Starts one or more stopped containers docker stop – Stops one or more running containers docker build – Builds an image form a Docker file docker pull – Pulls an image or a

Read more

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now List of 20 popular commands of docker

Read more

Assignment#1 for DevSecOps Batch

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Pre Step#1 – Register and Validate your account at bestDevOps.com – https://www.bestdevops.com/wp-login.php?action=register Step#2 – Login Step#3 – Create a POST on following questions Q1. Title – List of 20 popular commands of docker Q2. Title – How to configure SMTP server in Sonarqube? Q3. Title – List of most popular plugins of Jenkins from

Read more

[SOLVED] xampplib: line 22: netstat: command not found

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now When I try to start my xampp in the server I found these errors: sudo /opt/lampp/lampp restartStarting XAMPP for Linux 7.2.34-0…XAMPP: Starting Apache…/opt/lampp/share/xampp/xampplib: line 22: netstat: command not found/opt/lampp/share/xampp/xampplib: line 22: netstat: command not found ok.XAMPP: Starting MySQL…/opt/lampp/share/xampp/xampplib: line 22: netstat: command not foundok.XAMPP: Starting ProFTPD…/opt/lampp/share/xampp/xampplib: line 22: netstat: command not foundok. How can

Read more

One To One Relationship in Laravel

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What is One To One relationships and usage of hasOne() and belongsTo() ? One to one relationships are very straightforward in Laravel. Make sure that one of the tables has a key that references the id of the other table. For example, an ‘address’ table will have a field called user_id . That will reference the

Read more

Simple view of add file into git repository

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now How to add File in Git repositery or import project into Git ? Install Git, use git-bash and goto git directory into git-bash by: $ cd c:/git Now open ‘Git-hub’ in browser or software and just create a ‘new’ repository by clicking create repository with new repository name. you can add readme file. This

Read more

Eloquent ORM Model for Database in Laravel

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What is Laravel eloquent ORM ? Laravel includes Eloquent, an object-relational mapper (ORM) that makes it enjoyable to interact with your database. In addition to retrieving records from the database table, Eloquent models allow you to insert, update, and delete records from the table as well. The Eloquent ORM included with Laravel provides a simple Active Record

Read more

Replica Sets with commands

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now 281 kubectl create -f rc1.yaml -n=jagadish282 kubectl get rc283 kubectl get rc -n=jagadish284 kubectl get pods -n=jagadish285 kubectl get rc -n=jagadish286 kubectl edit rc -n=jagadish287 kubectl get rc -n=jagadish288 vi rc1.yaml289 kubectl apply rc -n=jagadish290 kubectl apply -f -n=jagadish291 vi rc1.yaml292 kubectl apply -f rc1.yaml -n=jagadish293 kubectl get rc -n=jagadish294 kubectl delete rc -n=jagadish295

Read more

Define kubernetes ReplicaSets with Example and commands

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Replicaset: A ReplicaSet is one of the Kubernetes controllers that makes sure we have a specified number of pod replicas running. A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guarantee the availability of a specified number of identical

Read more

Replica sets with example and commands

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now [centos@ip-172-31-22-14 ~]$ kubectl scale –replicas=1 deploy/namrata -n=namtestdeployment.apps/namrata scaled[centos@ip-172-31-22-14 ~]$ kubectl scale –replicas=10 deploy/namrata -n=namtestdeployment.apps/namrata scaled[centos@ip-172-31-22-14 ~]$ kubectl get deploy -n=namrataNo resources found in namrata namespace.[centos@ip-172-31-22-14 ~]$ kubectl get deploy -n=namtestNAME READY UP-TO-DATE AVAILABLE AGEnamrata 10/10 10 10 8m54snamrata1 3/3 3 3 6m40s[centos@ip-172-31-22-14 ~]$ kubectl get pods -n=namtestNAME READY STATUS RESTARTS AGEnamrata 1/1 Running 0

Read more

Define kubernetes ReplicaSets with Example and commands:

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guarantee the availability of a specified number of identical Pods There are many ways we can use replicasets such that always required number of pods running is guarangteed. While creating

Read more

Define kubernetes ReplicaSets with Example and commands?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now ReplicaSet: A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guarantee the availability of a specified number of identical Pods. There are many ways we can use replicasets such that always required number of pods running is guarangteed. While

Read more

Define Kubernetes ReplicaSets with Examples and commands

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now ReplicaSets Definition – It is a Kubernetes object that maintains the number of pods (i.e. replicas of a given pod) and checks if the current number of pods are matching the desired number specified for the figure given in replicasets. Advantage – 1.Its powerful – since at any point of time you can manage

Read more

Kubernetes replicasets

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Kubernetes has a feature of deploying multiple replicas of a pod and managing them from workstation. Each of these sets of replicas of a pod are called replicasets. Replicasets can be created, deleted, updated in a single time. These are shown as deployments in the kubectl cli Creating deployment: kubectl create deployment rajesh –image=scmgalaxy/nginx-devopsschoolv1

Read more

Create Laravel Migration table into a Database

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now 1. What are Migrations and Migration table in Laravel? Laravel Migration is an essential feature in Laravel that allows you to “easily create a table in your database“. It allows you to create and modify the application’s database schema. You can modify the table by adding a new column or deleting an existing column. Migrations

Read more
1 46 47 48 49 50 333