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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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/32] 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 e387f7f4be77305a9e371edc53acf79f4b022598 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Wed, 23 Dec 2020 10:40:46 +0530 Subject: [PATCH 19/32] Update ansible-playbook.yml --- ansible-playbook.yml | 78 ++++++++++++++++++++++++++++++++------------ 1 file changed, 57 insertions(+), 21 deletions(-) diff --git a/ansible-playbook.yml b/ansible-playbook.yml index 2be8b5d..39bcb61 100644 --- a/ansible-playbook.yml +++ b/ansible-playbook.yml @@ -1,32 +1,60 @@ --- - name: Play1 for copying files - hosts: docker-master + hosts: docker-manager become: yes tasks: - - name: Copy the war file, dockerfile & flipkart.yml to docker master server + - name: Copy the war file, dockerfile & training-com.yml to docker master server copy: - src: /home/ansadmin/trainingwale/ - dest: /opt/docker/trainingwale + src: /etc/ansible/training-com + dest: /opt/docker owner: root group: root mode: '0777' -- name: "Play 2 Install Python packages and docker image push" - hosts: docker-master +- name: "Play 2- python istallation" + hosts: docker-manager + become: yes + tasks: + - name: Install Python 3.6 + yum: + name: python36 + state: present + register: out1 + tags: python-install + - debug: + var: out1 + + - name: alternatives + alternatives: + name: python + link: /usr/bin/python3.6 + path: /usr/bin/python3 + register: out2 + tags: python-alternatives + - debug: + var: out2 + +- name: "Play 3 Install Python packages and docker image push" + hosts: docker-manager become: yes vars: - ansible_python_interpreter: /usr/bin/python + ansible_python_interpreter: /usr/bin/python3 tasks: - name: Install boto3 and botocore with pip3 module pip: name: + - boto - boto3 - botocore - - docker - executable: pip-2.7 - register: out1 + # - docker + - docker-py + - jsondiff + - pyyaml + executable: pip3.6 + register: out3 + tags: docker-lib-install - debug: - var: out1 + var: out3 - name: "Delete the docker image" docker_image: @@ -34,29 +62,37 @@ force: yes name: 127.0.0.1:5000/trainingwaleapp tag: latest - register: out2 + register: out4 + tags: docker-image-deletion - debug: - var: out2 + var: out4 - name: Build an image and push it to a private repo docker_image: - path: /opt/docker/trainingwale + path: /opt/docker/training-com name: 127.0.0.1:5000/trainingwaleapp tag: latest push: yes nocache: yes force: yes - register: out3 + register: out5 + tags: docker-image-build - debug: - var: out3 + var: out5 - name: "Play 3 docker stack deploy" - hosts: docker-master + hosts: docker-manager become: yes tasks: - - - name: stop the stack - shell: docker stack rm trainingwale + - name: Remove stack + docker_stack: + name: trainingwale + state: absent + tags: docker-stack-remove - name: start the stack - shell: docker stack deploy --compose-file /opt/docker/trainingwale/trainingwale.yml trainingwale + shell: docker stack deploy --compose-file /opt/docker/training-com/trainingwale.yml trainingwale + register: out6 + tags: docker-stack-deploy + - debug: + var: out6 From ef967a14ec2de56d943d69ace9aed1f493f59d50 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Wed, 23 Dec 2020 10:43:39 +0530 Subject: [PATCH 20/32] 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..87f5aa2 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

second chef CICD Project Completed

+

Docker 7 CICD Project Completed

From 22d32eaeceb582dc4fd47cf46dd4ef2d65189dee Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 21:54:50 +0530 Subject: [PATCH 21/32] Update ansible-playbook.yml --- ansible-playbook.yml | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/ansible-playbook.yml b/ansible-playbook.yml index 39bcb61..f770584 100644 --- a/ansible-playbook.yml +++ b/ansible-playbook.yml @@ -3,15 +3,27 @@ hosts: docker-manager become: yes tasks: + - name: Create a directory if it does not exist + file: + path: /tmp/training-com + state: directory + mode: '0755' + owner: ansadmin + group: root + tags: + - create-dir + - name: Copy the war file, dockerfile & training-com.yml to docker master server copy: - src: /etc/ansible/training-com - dest: /opt/docker - owner: root + src: /etc/ansible/training-com/ + dest: /tmp/training-com + owner: ansadmin group: root mode: '0777' + tags: + - copy_code -- name: "Play 2- python istallation" +- name: "Play 2- python installation" hosts: docker-manager become: yes tasks: @@ -20,7 +32,8 @@ name: python36 state: present register: out1 - tags: python-install + tags: + - python-install - debug: var: out1 @@ -30,7 +43,8 @@ link: /usr/bin/python3.6 path: /usr/bin/python3 register: out2 - tags: python-alternatives + tags: + - python-alternatives - debug: var: out2 @@ -46,8 +60,8 @@ - boto - boto3 - botocore - # - docker - - docker-py + - docker + #- docker-py - jsondiff - pyyaml executable: pip3.6 @@ -67,9 +81,10 @@ - debug: var: out4 - - name: Build an image and push it to a private repo + - name: "Build an image and push it to a private repo" docker_image: - path: /opt/docker/training-com + build: + path: /tmp/training-com name: 127.0.0.1:5000/trainingwaleapp tag: latest push: yes @@ -91,7 +106,7 @@ tags: docker-stack-remove - name: start the stack - shell: docker stack deploy --compose-file /opt/docker/training-com/trainingwale.yml trainingwale + shell: docker stack deploy --compose-file /tmp/training-com/trainingwale.yml trainingwale register: out6 tags: docker-stack-deploy - debug: From 49a3e2d0f4e1bf899d08941a86726eb26dbd51f9 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 21:56:33 +0530 Subject: [PATCH 22/32] 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 87f5aa2..3a8791a 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -2,6 +2,6 @@

Congratulations !!

-

Docker 7 CICD Project Completed

+

Docker Swarm 7 CICD Project Completed

From 1b83dc2a9f986df50991c2c662062ff1a3c098bf Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 22:01:41 +0530 Subject: [PATCH 23/32] Update ansible-playbook.yml --- ansible-playbook.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible-playbook.yml b/ansible-playbook.yml index f770584..ab0eaa4 100644 --- a/ansible-playbook.yml +++ b/ansible-playbook.yml @@ -104,6 +104,9 @@ name: trainingwale state: absent tags: docker-stack-remove + + - name: sleep for 10 sec + shell: sleep 10 - name: start the stack shell: docker stack deploy --compose-file /tmp/training-com/trainingwale.yml trainingwale From 44a299908272b10568db84df02b63cbe4d69f878 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 22:06:22 +0530 Subject: [PATCH 24/32] Update ansible-playbook.yml --- ansible-playbook.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ansible-playbook.yml b/ansible-playbook.yml index ab0eaa4..b289dc4 100644 --- a/ansible-playbook.yml +++ b/ansible-playbook.yml @@ -107,9 +107,13 @@ - name: sleep for 10 sec shell: sleep 10 - - - name: start the stack - shell: docker stack deploy --compose-file /tmp/training-com/trainingwale.yml trainingwale + + - name: Deploy stack from a compose file + docker_stack: + state: present + name: mystack + compose: + - /tmp/training-com/trainingwale.yml register: out6 tags: docker-stack-deploy - debug: From e2528f47ed3523f7ebebd83c1df44131f79c7553 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 22:08:27 +0530 Subject: [PATCH 25/32] 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 3a8791a..5b3afea 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -1,7 +1,7 @@ -

Congratulations !!

+

Congratulations !!!!!!!!!

Docker Swarm 7 CICD Project Completed

From 86aa1c29a9defdf425e7aff392d9e8617c8d242b Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 14 Feb 2021 22:14:26 +0530 Subject: [PATCH 26/32] 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 5b3afea..40d9a32 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -1,7 +1,7 @@ -

Congratulations !!!!!!!!!

+

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

From 84379dbc4f48769cd6a6058d7909a4fa72926d04 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Mon, 15 Feb 2021 09:20:09 +0530 Subject: [PATCH 27/32] Update ansible-playbook.yml --- ansible-playbook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible-playbook.yml b/ansible-playbook.yml index b289dc4..9370ec6 100644 --- a/ansible-playbook.yml +++ b/ansible-playbook.yml @@ -104,14 +104,14 @@ name: trainingwale state: absent tags: docker-stack-remove - + - name: sleep for 10 sec shell: sleep 10 - + - name: Deploy stack from a compose file docker_stack: state: present - name: mystack + name: trainingwale compose: - /tmp/training-com/trainingwale.yml register: out6 From d68529dcb2fa1102184558675b9150453a0ed702 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Wed, 10 Mar 2021 12:00:56 +0530 Subject: [PATCH 28/32] 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 40d9a32..d8f0a95 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,5 +3,6 @@

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

+

We will start Kubernetes tomorrow

From da035ee5c6fb152acfaadb2a25cd5c5d6809b214 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sat, 17 Apr 2021 11:31:07 +0530 Subject: [PATCH 29/32] 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 d8f0a95..56477ec 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,6 +3,6 @@

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

-

We will start Kubernetes tomorrow

+

We will again discuss the playbook tomorrow

From 2deec6c0b4a212fa2425b668a4c8beaadfa2b889 Mon Sep 17 00:00:00 2001 From: mailrahulsre <59342234+mailrahulsre@users.noreply.github.com> Date: Sun, 18 Apr 2021 09:36:59 +0530 Subject: [PATCH 30/32] 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 56477ec..ccc9a45 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -3,6 +3,6 @@

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

-

We will again discuss the playbook tomorrow

+

We will start Kubernetes now

From 2c12e55c4b909cc1b42196a8b3580a1a17f76a7f Mon Sep 17 00:00:00 2001 From: S2193 <97331479+S2193@users.noreply.github.com> Date: Thu, 17 Feb 2022 15:17:55 +0530 Subject: [PATCH 31/32] 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 ccc9a45..5877088 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -4,5 +4,6 @@

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

We will start Kubernetes now

+

Welcome to session

From 28cce0e7701e2f3e5a63a944512772b7b0f6d7c9 Mon Sep 17 00:00:00 2001 From: S2193 <97331479+S2193@users.noreply.github.com> Date: Thu, 17 Feb 2022 16:21:39 +0530 Subject: [PATCH 32/32] 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 5877088..a6c3b25 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -4,6 +4,6 @@

Congratulations !!!!!!!!!!!!

Docker Swarm 7 CICD Project Completed

We will start Kubernetes now

-

Welcome to session

+

Welcome to session!