From 0cd3509ccdcaae5258d090716f325830fd383c7c Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Fri, 24 Jul 2020 11:32:06 +0530 Subject: [PATCH 01/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index f99afb6..0875e6e 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Welcome to DevOps Class

-

I hope you like the course, please give feedback

+

I hope you like the course, First Foundation Project is completed

From ce384100502184a18d8681af5c0795fb39200444 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sat, 25 Jul 2020 13:24:36 +0530 Subject: [PATCH 02/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 0875e6e..68bd968 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -1,7 +1,7 @@ -

Welcome to DevOps Class

+

Congratulations !!

I hope you like the course, First Foundation Project is completed

From 2abf91f73853ef37be2885ca9f7248177b6f6729 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 1 Sep 2020 10:28:35 +0530 Subject: [PATCH 03/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 68bd968..c082522 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

I hope you like the course, First Foundation Project is completed

+

I hope you like the course, Ansible CICD Project is completed

From e558246d55ff14d00ba840b1a6a3106a3eb24568 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 10 Sep 2020 06:34:38 +0000 Subject: [PATCH 04/19] src/main/webapp/index.jsp updated --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index c082522..068a644 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

I hope you like the course, Ansible CICD Project is completed

+

I hope you like the course, Foundation CICD Project is completed

From 2c4455a4be9a210738a352f9272295348720c872 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 10 Sep 2020 06:46:02 +0000 Subject: [PATCH 05/19] chef updated --- src/main/webapp/index.jsp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 068a644..0fcb154 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,5 +3,6 @@

Congratulations !!

I hope you like the course, Foundation CICD Project is completed

+

Next We will study CHEF

From a69ff4e958f9628276b571eb2d79431651d22b61 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 14 Sep 2020 10:20:13 +0530 Subject: [PATCH 06/19] Create ansible-playbook.yml --- ansible-playbook.yml | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 ansible-playbook.yml diff --git a/ansible-playbook.yml b/ansible-playbook.yml new file mode 100644 index 0000000..2be8b5d --- /dev/null +++ b/ansible-playbook.yml @@ -0,0 +1,62 @@ +--- +- name: Play1 for copying files + hosts: docker-master + become: yes + tasks: + - name: Copy the war file, dockerfile & flipkart.yml to docker master server + copy: + src: /home/ansadmin/trainingwale/ + dest: /opt/docker/trainingwale + owner: root + group: root + mode: '0777' + +- name: "Play 2 Install Python packages and docker image push" + hosts: docker-master + become: yes + vars: + ansible_python_interpreter: /usr/bin/python + tasks: + - name: Install boto3 and botocore with pip3 module + pip: + name: + - boto3 + - botocore + - docker + executable: pip-2.7 + register: out1 + - debug: + var: out1 + + - name: "Delete the docker image" + docker_image: + state: absent + force: yes + name: 127.0.0.1:5000/trainingwaleapp + tag: latest + register: out2 + - debug: + var: out2 + + - name: Build an image and push it to a private repo + docker_image: + path: /opt/docker/trainingwale + name: 127.0.0.1:5000/trainingwaleapp + tag: latest + push: yes + nocache: yes + force: yes + register: out3 + - debug: + var: out3 + +- name: "Play 3 docker stack deploy" + hosts: docker-master + become: yes + tasks: + + - name: stop the stack + shell: docker stack rm trainingwale + + - name: start the stack + shell: docker stack deploy --compose-file /opt/docker/trainingwale/trainingwale.yml trainingwale From 648a518111d63f2d075db526742bd3ca24dae31a Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 15 Sep 2020 09:55:50 +0530 Subject: [PATCH 07/19] Update index.jsp --- src/main/webapp/index.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 0fcb154..456d29e 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,7 +2,7 @@

Congratulations !!

-

I hope you like the course, Foundation CICD Project is completed

-

Next We will study CHEF

+

I hope you like the course, Prject 7 Completed- VVI

+

Next we will start Kubernetes

From 6e803960355af2856ffeb9d1626dbe87e4820fba Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 21 Sep 2020 12:28:56 +0530 Subject: [PATCH 08/19] Update index.jsp --- src/main/webapp/index.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 456d29e..ab49f8a 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,7 +2,7 @@

Congratulations !!

-

I hope you like the course, Prject 7 Completed- VVI

-

Next we will start Kubernetes

+

I hope you like the course, Prject 2 Completed

+

Next we will start Ansible

From 9db5fdf910ad0373c0cb1b396ffde0aecc53b1ad Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 21 Sep 2020 12:45:33 +0530 Subject: [PATCH 09/19] Update index.jsp --- src/main/webapp/index.jsp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index ab49f8a..cb6187a 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,6 +3,5 @@

Congratulations !!

I hope you like the course, Prject 2 Completed

-

Next we will start Ansible

From a83919e26306151d4d665435a065393b963bce40 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 22 Sep 2020 11:14:00 +0530 Subject: [PATCH 10/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index cb6187a..1b6ffec 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

I hope you like the course, Prject 2 Completed

+

I hope you like the course, chef project Completed

From c393d1a04b020c88908aaf713f4f08b29838e90a Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 22 Sep 2020 11:22:54 +0530 Subject: [PATCH 11/19] Update index.jsp --- src/main/webapp/index.jsp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 1b6ffec..93d4f3e 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,7 @@

Congratulations !!

-

I hope you like the course, chef project Completed

+

I hope you like the course, Chef project Completed

+ Hope you have liked the chef class From 51dd85df8c4416388892279060eb9af4a9f69bda Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 22 Sep 2020 11:25:05 +0530 Subject: [PATCH 12/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 93d4f3e..e48564e 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,6 +3,6 @@

Congratulations !!

I hope you like the course, Chef project Completed

- Hope you have liked the chef class +

Hope you have liked the chef class

From 83049cc293df86d38db1a8f478ccd06732eea9c6 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 27 Sep 2020 20:35:31 +0530 Subject: [PATCH 13/19] Update index.jsp --- src/main/webapp/index.jsp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index e48564e..c6fa143 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,6 +3,5 @@

Congratulations !!

I hope you like the course, Chef project Completed

-

Hope you have liked the chef class

From cb78db969050df46f92c7dd4a6bec47e95317114 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 28 Sep 2020 12:28:41 +0530 Subject: [PATCH 14/19] Update index.jsp --- src/main/webapp/index.jsp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index c6fa143..baa7dd4 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,5 +3,6 @@

Congratulations !!

I hope you like the course, Chef project Completed

+

I hope you like the course, Chef project Completed

From f078f8b7a923f83b7409cde8f9e2de781713262c Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 12 Oct 2020 09:11:52 +0530 Subject: [PATCH 15/19] Update index.jsp --- src/main/webapp/index.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index baa7dd4..33b2495 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,7 +2,7 @@

Congratulations !!

-

I hope you like the course, Chef project Completed

-

I hope you like the course, Chef project Completed

+

I hope you like the course, Chef project Completed.

+

I hope you like the course, Chef project Completed.

From f84ee56f4906649cb8bb44803e036f363946300a Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Fri, 6 Nov 2020 10:22:47 +0530 Subject: [PATCH 16/19] Update index.jsp --- src/main/webapp/index.jsp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 33b2495..bd0620f 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,7 +2,6 @@

Congratulations !!

-

I hope you like the course, Chef project Completed.

-

I hope you like the course, Chef project Completed.

+

CI Integration test

From 8108974566024f82e22a09f1433ccf5dc3df7641 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 9 Nov 2020 10:05:50 +0530 Subject: [PATCH 17/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index bd0620f..16025bd 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

CI Integration test

+

First Foundation CICD Project Completed

From 0e1484c8d7ca957f28484be3987cff4a819090c5 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Tue, 24 Nov 2020 10:23:35 +0530 Subject: [PATCH 18/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 16025bd..7d33b19 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

First Foundation CICD Project Completed

+

second chef CICD Project Completed

From 73bb73babf9ef983f05ba37b2d74462218441805 Mon Sep 17 00:00:00 2001 From: nitinchauhan231 <74169867+nitinchauhan231@users.noreply.github.com> Date: Mon, 30 Nov 2020 17:03:13 +0530 Subject: [PATCH 19/19] Update index.jsp --- src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 7d33b19..029feb4 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

second chef CICD Project Completed

+

CI - Jenkins integration with GIT and MAVEN Completed