From efccfd747581eee5f48871217aaf191dd0eb3082 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Thu, 8 Jun 2023 19:18:16 -0500
Subject: [PATCH 01/68] creating 3 pods and image updated
---
azure-aks.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/azure-aks.yaml b/azure-aks.yaml
index f695edf..a78f0e1 100644
--- a/azure-aks.yaml
+++ b/azure-aks.yaml
@@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: my-python-deployment
spec:
- replicas: 2
+ replicas: 3
selector:
matchLabels:
app: my-python-app
@@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: mypythondockerrepo
- image: myacrrepo312.azurecr.io/akannan1087/mypythondockerrepo:#{Build.BuildId}#
+ image: myacrrepo421.azurecr.io/akannan1087/mypythondockerrepo:#{Build.BuildId}#
ports:
- containerPort: 5000
# service type loadbalancer
From 7b0b6239a8df2fd2e7627743b761a843ec70efbe Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Thu, 8 Jun 2023 19:36:17 -0500
Subject: [PATCH 02/68] making code changes in github
---
templates/index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/index.html b/templates/index.html
index c2f560b..c36e860 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -19,8 +19,8 @@
-
Welcome to Docker Container running inside EKS Cluster - Mar 30th, 2022!!
- Deploying Containers into EKS cluster using Jenkins Pipeline !!!!!
+ Welcome to Docker Container running inside EKS Cluster - June8th, 2023!!
+ Deploying Containers into AKS cluster using Azure Devops Pipelines !!!!!
Learning containers is really fun and awesome!!!!!
From 34a4763986fdcfbc615c553776e451760c57c135 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Thu, 13 Jul 2023 13:44:40 -0500
Subject: [PATCH 03/68] Update eks-deploy-from-ecr.yaml
---
eks-deploy-from-ecr.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eks-deploy-from-ecr.yaml b/eks-deploy-from-ecr.yaml
index 7275b36..f728ea0 100644
--- a/eks-deploy-from-ecr.yaml
+++ b/eks-deploy-from-ecr.yaml
@@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: my-python-app
- image: 211223789150.dkr.ecr.us-east-2.amazonaws.com/my-docker-repo
+ image: 211223789150.dkr.ecr.us-east-1.amazonaws.com/my-docker-repo
imagePullPolicy: Always
ports:
- containerPort: 5000
From c825170289a5ff0b3a5d84772e93080af311c73b Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Wed, 26 Jul 2023 19:45:41 -0500
Subject: [PATCH 04/68] Update index.html
---
templates/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/index.html b/templates/index.html
index c36e860..ca5261a 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -19,7 +19,7 @@
-
Welcome to Docker Container running inside EKS Cluster - June8th, 2023!!
+ Welcome to Docker Container running inside EKS Cluster - July 26th, 2023!!
Deploying Containers into AKS cluster using Azure Devops Pipelines !!!!!
Learning containers is really fun and awesome!!!!!
From ab704cebba96b883dfd3f1624d954aee1a81b941 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sun, 20 Aug 2023 13:17:12 -0500
Subject: [PATCH 05/68] updated for my python ms
---
eks-deploy-from-ecr.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eks-deploy-from-ecr.yaml b/eks-deploy-from-ecr.yaml
index f728ea0..5801eaa 100644
--- a/eks-deploy-from-ecr.yaml
+++ b/eks-deploy-from-ecr.yaml
@@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: my-python-app-deployment
spec:
- replicas: 3
+ replicas: 5
selector:
matchLabels:
app: python-app
@@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: my-python-app
- image: 211223789150.dkr.ecr.us-east-1.amazonaws.com/my-docker-repo
+ image: 211223789150.dkr.ecr.us-east-1.amazonaws.com/my-python-repo
imagePullPolicy: Always
ports:
- containerPort: 5000
From e94f62e7738e8e1e7f599141bc733666d3e2b8d2 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Fri, 13 Oct 2023 19:05:46 -0500
Subject: [PATCH 06/68] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 13 +++----------
1 file changed, 3 insertions(+), 10 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index fa1c288..164db3d 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -23,17 +23,10 @@ stages:
- task: Docker@2
displayName: Build an image
inputs:
+ containerRegistry: 'Art_Docker'
command: build
dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
- repository: $(imageName)
+ repository: $(repoName)
tags: |
$(tag)
- - task: ECRPushImage@1
- inputs:
- awsCredentials: 'iam_user_ecr_aws'
- regionName: 'us-east-1'
- imageSource: 'imageid'
- sourceImageId: '$(imageName):$(tag)'
- repositoryName: '$(repoName)'
- pushTag: $(tag)
- forceDockerNamingConventions: true
\ No newline at end of file
+
\ No newline at end of file
From 9287c42dd7288a6e58e0d610ede3be2b3a59b878 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Fri, 13 Oct 2023 19:08:18 -0500
Subject: [PATCH 07/68] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 164db3d..4230022 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -29,4 +29,10 @@ stages:
repository: $(repoName)
tags: |
$(tag)
+ - task: ArtifactoryDocker@1
+ inputs:
+ command: 'push'
+ artifactoryService: 'Art_SVC_conn'
+ targetRepo: 'example-repo-local'
+ imageName: '$(imageName)'
\ No newline at end of file
From 40a224a044956db5f626eb08c7334bd766f094c7 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Fri, 13 Oct 2023 19:11:06 -0500
Subject: [PATCH 08/68] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 4230022..4e18362 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -33,6 +33,6 @@ stages:
inputs:
command: 'push'
artifactoryService: 'Art_SVC_conn'
- targetRepo: 'example-repo-local'
- imageName: '$(imageName)'
+ targetRepo: '$(repoName)'
+ imageName: '$(imageName):$(tag)'
\ No newline at end of file
From 5b3082b4956e7cebeef2b2b35edf5474c4e0fffd Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Mon, 11 Dec 2023 20:51:09 -0600
Subject: [PATCH 09/68] Create github-actions-demo.yml
---
.github/workflows/github-actions-demo.yml | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 .github/workflows/github-actions-demo.yml
diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml
new file mode 100644
index 0000000..04ad2ef
--- /dev/null
+++ b/.github/workflows/github-actions-demo.yml
@@ -0,0 +1,20 @@
+name: Om GitHub Actions Demo
+on:
+ push:
+ branches: ["main"]
+
+jobs:
+ Explore-GitHub-Actions:
+ runs-on: ubuntu-latest
+ steps:
+ - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
+ - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
+ - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
+ - name: Check out repository code
+ uses: actions/checkout@v4
+ - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
+ - run: echo "🖥️ The workflow is now ready to test your code on the runner."
+ - name: List files in the repository
+ run: |
+ ls ${{ github.workspace }}
+ - run: echo "🍏 This job's status is ${{ job.status }}."
From 97c52c05f6ae2d837732ffc917fb31fdb99fcd90 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Mon, 11 Dec 2023 20:52:50 -0600
Subject: [PATCH 10/68] Update github-actions-demo.yml
---
.github/workflows/github-actions-demo.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml
index 04ad2ef..7d304f4 100644
--- a/.github/workflows/github-actions-demo.yml
+++ b/.github/workflows/github-actions-demo.yml
@@ -1,7 +1,7 @@
name: Om GitHub Actions Demo
on:
push:
- branches: ["main"]
+ branches: ["master"]
jobs:
Explore-GitHub-Actions:
From 9c0ad2cf1469fca914942d8c2769f77bb847f08b Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Mon, 11 Dec 2023 20:56:57 -0600
Subject: [PATCH 11/68] Create docker-image.yml
---
.github/workflows/docker-image.yml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 .github/workflows/docker-image.yml
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
new file mode 100644
index 0000000..eac633f
--- /dev/null
+++ b/.github/workflows/docker-image.yml
@@ -0,0 +1,18 @@
+name: Docker Image CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Build the Docker image
+ run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
From eb7c294cf7346840f70000180db07bdcfe140bfa Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 19:55:42 -0600
Subject: [PATCH 12/68] Update docker-image.yml
---
.github/workflows/docker-image.yml | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index eac633f..0f3ec9d 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -14,5 +14,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- - name: Build the Docker image
- run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
+ - name: Build Docker image
+ run: |
+ docker build -t my-docker-repo .
+ docker tag my-docker-repo:latest ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
+ - name: Login to Amazon ECR
+ run: |
+ aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws configure set default.region ${{ secrets.AWS_REGION }}
+ aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
+ - name: Push Docker image to ECR
+ run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
From d5182652a2ac9251e7136e2c6fbc04992b51d34d Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 19:59:25 -0600
Subject: [PATCH 13/68] Update github-actions-demo.yml
---
.github/workflows/github-actions-demo.yml | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml
index 7d304f4..8b13789 100644
--- a/.github/workflows/github-actions-demo.yml
+++ b/.github/workflows/github-actions-demo.yml
@@ -1,20 +1 @@
-name: Om GitHub Actions Demo
-on:
- push:
- branches: ["master"]
-jobs:
- Explore-GitHub-Actions:
- runs-on: ubuntu-latest
- steps:
- - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- - name: Check out repository code
- uses: actions/checkout@v4
- - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- - name: List files in the repository
- run: |
- ls ${{ github.workspace }}
- - run: echo "🍏 This job's status is ${{ job.status }}."
From 8ec3526b511f89a1fa5a2a54f4a7b40b672cf37f Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 20:00:10 -0600
Subject: [PATCH 14/68] Delete .github/workflows directory
---
.github/workflows/docker-image.yml | 28 -----------------------
.github/workflows/github-actions-demo.yml | 1 -
2 files changed, 29 deletions(-)
delete mode 100644 .github/workflows/docker-image.yml
delete mode 100644 .github/workflows/github-actions-demo.yml
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
deleted file mode 100644
index 0f3ec9d..0000000
--- a/.github/workflows/docker-image.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Docker Image CI
-
-on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
-jobs:
-
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- - name: Build Docker image
- run: |
- docker build -t my-docker-repo .
- docker tag my-docker-repo:latest ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
- - name: Login to Amazon ECR
- run: |
- aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
- aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- aws configure set default.region ${{ secrets.AWS_REGION }}
- aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
- - name: Push Docker image to ECR
- run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml
deleted file mode 100644
index 8b13789..0000000
--- a/.github/workflows/github-actions-demo.yml
+++ /dev/null
@@ -1 +0,0 @@
-
From 8a58b088b78f9dc04acd42ad1007d6f7e8fb901c Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 20:00:49 -0600
Subject: [PATCH 15/68] Create cicd.yaml
---
.workflow/cicd.yaml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 .workflow/cicd.yaml
diff --git a/.workflow/cicd.yaml b/.workflow/cicd.yaml
new file mode 100644
index 0000000..a9801e0
--- /dev/null
+++ b/.workflow/cicd.yaml
@@ -0,0 +1,26 @@
+name: Docker Image CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Build Docker image
+ run: |
+ docker build -t my-docker-repo .
+ docker tag my-docker-repo:latest ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
+ - name: Login to Amazon ECR
+ run: |
+ aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws configure set default.region ${{ secrets.AWS_REGION }}
+ aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
+ - name: Push Docker image to ECR
+ run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
From c5827ae51ccf7835745bce34d05fefa4f0f63cac Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 20:02:21 -0600
Subject: [PATCH 16/68] Create cicd.yaml
---
.github/workflows/cicd.yaml | 1 +
1 file changed, 1 insertion(+)
create mode 100644 .github/workflows/cicd.yaml
diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml
new file mode 100644
index 0000000..96fc038
--- /dev/null
+++ b/.github/workflows/cicd.yaml
@@ -0,0 +1 @@
+.workflow
From 676bf716202c1905d4fc22ddaa1a2dee874863ff Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 20:02:49 -0600
Subject: [PATCH 17/68] Update cicd.yaml
---
.github/workflows/cicd.yaml | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml
index 96fc038..a9801e0 100644
--- a/.github/workflows/cicd.yaml
+++ b/.github/workflows/cicd.yaml
@@ -1 +1,26 @@
-.workflow
+name: Docker Image CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Build Docker image
+ run: |
+ docker build -t my-docker-repo .
+ docker tag my-docker-repo:latest ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
+ - name: Login to Amazon ECR
+ run: |
+ aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws configure set default.region ${{ secrets.AWS_REGION }}
+ aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
+ - name: Push Docker image to ECR
+ run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
From c8a72747f75593aabc6d3e8e58696ca7bfa6e740 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 20:58:58 -0600
Subject: [PATCH 18/68] Update cicd.yaml
---
.github/workflows/cicd.yaml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml
index a9801e0..055d586 100644
--- a/.github/workflows/cicd.yaml
+++ b/.github/workflows/cicd.yaml
@@ -3,9 +3,6 @@ name: Docker Image CI
on:
push:
branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
jobs:
build:
runs-on: ubuntu-latest
From 0ff1a170a1896f873bb4a49c52c175567e659cc1 Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 21:38:40 -0600
Subject: [PATCH 19/68] Update cicd.yaml
---
.github/workflows/cicd.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml
index 055d586..7e559e8 100644
--- a/.github/workflows/cicd.yaml
+++ b/.github/workflows/cicd.yaml
@@ -21,3 +21,5 @@ jobs:
aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
- name: Push Docker image to ECR
run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
+ container:
+ image: my-docker-repo:latest
From 256c33419dcba70ca21caab521731c9a00b5cf8e Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sat, 20 Jan 2024 21:40:32 -0600
Subject: [PATCH 20/68] Update cicd.yaml
---
.github/workflows/cicd.yaml | 2 --
1 file changed, 2 deletions(-)
diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml
index 7e559e8..055d586 100644
--- a/.github/workflows/cicd.yaml
+++ b/.github/workflows/cicd.yaml
@@ -21,5 +21,3 @@ jobs:
aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
- name: Push Docker image to ECR
run: docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/my-docker-repo:latest
- container:
- image: my-docker-repo:latest
From abcbc6d8d699a899289fbb1d1c510e445137636f Mon Sep 17 00:00:00 2001
From: akannan1087 <15877864+akannan1087@users.noreply.github.com>
Date: Sun, 11 Feb 2024 12:45:40 -0600
Subject: [PATCH 21/68] making some code changes
---
templates/index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/templates/index.html b/templates/index.html
index ca5261a..f69f53d 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,7 +3,7 @@