For git commands git init, git log, git clone commands and syntax, please find youtube link below:
how to add your local git branch changes to remote branch
how to add your local git branch changes to remote branch
// follow 3 steps
1. git add .
2. git commit -m “my commit”
3. git push
stpe 1 add yourworking directoryfile to index area
step 2. saves yourchanges to local repo
step 3. pushesyour changes to remote branch
Most useful git commands
Most useful git commands are git init, git add ., git commit, git push, git pull, git feth
1. git init// to start local repo
2. git add .//to add local changesto staging area
3. git commit -m “change1″// to collect stagedchanges
4. git push// to push localcommittedchanges toremote branch
5. git fetch// will fetchremote branchchanges to yourlocal repo (notto workspcae)
6. git pull// it is git fetch + mergeto your workspace
7. git remote show origin// to find remote git url
8. git checkout baranch// checkout to local branchall commits will be recorded
9. git checkout -b branch// create new local branchand check out
What is Blue/Green Deployment and its Pros/Cons
What is Blue/Green Deployment and its Pros/Cons
t’s an Advanced
Deployment process
with following steps
1. While Blue environment
is active and supporting
production users,
Green environment
will be upgraded,
then smoke tested
2. After successful
smoke test, Load balancer
will direct user traffic
to Green environment
3. Now Blue
environment
will be upgraded
Pros:
Uninterrupted
availability of services
during deployment
Cons:
Expensive to maintain
duplicate
production environment
What is Rolling Updates – Advanced deployment strategy
DevOps #2 What is Rolling Updates or Deployment | Incremental node updates on multi node environment
Rolling updates are
done for Multi node
environment. Here
each node will
be taken out, upgraded,
smoke tested and
then redeployed.
Process repeated until
all nodes are upgraded
individually
Pros:
Incremental,
zero downtime
incremental
deployement
Cons:
unpredictable
behavior
may be noticed
due to each node
level updates
How to create Molecule and test Ansible tasks
For Ansible Molecule setup the following commands needs to be executed:
1.pip install
2.virtualenv ansible(will create virtual env
for python with ansible name)
- cd ansible (to go to ansible folder)
- source bin/activate (to activate python env)
- pip install molecule anisble molecule[docker] docker Now, verify ansible and molecule version
- ansible –version
- molecule –version
run command :
- molecule init role
-r my-ansible-molecule-role - cd my-ansible-molecule-role
folder “my-ansible-molecule-role”
will have following folders
1.defaults
2.handlers
3.meta
4.molecule
5.tasks
6.vars
except molecule, all folders have main. yml
molecule folder has
1.default > task folder
2.molecule.yml
3.playbook. yml
4.Dockerfile
now, run command
- cd..(to go to parent folder)
store yml files in tasks folder thatto be tested and linted by molecule
now just run command
- molecule test
- molecule destroy
- molecule converge
How to create Ansible roles
Ansible Role is set of directory structures and yml files
Roles help to organize set of tasks and group it
command (to create role):
Ansible-galaxy init /etc/ansible/roles/project1 –offline
now, project1 directory has 8 directories:
1.defaults
2.files
3.handlers
4.meta
5.tasks
6.templates
7.tests
8.vars
except files and templates, all other directories have main.yml file
defaults and vars carry variables. priority goes
to vars
task stores all playbook tasks grouped and maintained
How to setup Gradle project in Eclipse from scratch
Search &install Gradle pugin in Eclipse marketplace
find the gradle installation directory map that with Eclipse Window > Preferences > Gradle > local installation directory
File > New >Other > Gradle option to create new Gradle project
File > import > Gradle project to load existing gradle project
How to create, test, run, build Angular app using CLI
Following are the commands
- npm install -g @angular/cli (to install cli)
- ng new my-angular-app (to create workspace)
- cd my-angular-app
- ng serve -o (to open app on localhost)
- ng test (to test using karma and jasmine)
- ng build –prod (to deploy app to dist folder)
Terraform Jenkins Declarative pipeline
Install Terraform plugin for Jenkins
Download Terraform CLI and associate Terraform binary path to jenkins terraform section.