-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from andrewlod/devops
Change database engine to PostgresQL + AWS EKS action
- Loading branch information
Showing
14 changed files
with
147 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Deploy to EKS | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
ECR_REPOSITORY: authentication-api | ||
EKS_CLUSTER_NAME: default-cluster | ||
AWS_REGION: us-east-1 | ||
IMAGE_NAME: authentication-api | ||
NODE_ENV: development | ||
LOG_STRATEGY: CONSOLE | ||
SECRETS_LIST: "" | ||
|
||
PASSWORD_SALT: "10" | ||
JWT_SECRET: "" | ||
JWT_EXPIRE_MINUTES: "60" | ||
JWT_COOKIE_KEY: "JWT_COOKIE" | ||
DATABASE_URL: "" | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
name: Deployment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Set short git commit SHA | ||
id: commit | ||
uses: prompt/actions-commit-hash@v2 | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{env.AWS_REGION}} | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
with: | ||
registry-type: public | ||
|
||
- name: Login to Docker Hub (to pull images) | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build, tag, and push image to Amazon ECR | ||
env: | ||
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
IMAGE_TAG: ${{ steps.commit.outputs.short }} | ||
run: | | ||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG \ | ||
-t $ECR_REGISTRY/$ECR_REPOSITORY:latest . | ||
docker push -a $ECR_REGISTRY/$ECR_REPOSITORY | ||
- name: Update kube config | ||
run: aws eks update-kubeconfig --name $EKS_CLUSTER_NAME --region $AWS_REGION | ||
|
||
- name: Deploy to EKS | ||
env: | ||
IMAGE_NAME: "${{ steps.login-ecr.outputs.registry }}/$IMAGE_NAME:${IMAGE_TAG}" | ||
run: | | ||
cat kubernetes/aws/deployment.yml | envsubst | kubectl apply -f - && \ | ||
kubectl apply -f kubernetes/aws/service.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
src/database/schemas/migrations/20240227173707_auth_test/migration.sql
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/database/schemas/migrations/20240314223153_remove_username/migration.sql
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/database/schemas/migrations/20240322221521_user_token/migration.sql
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
src/database/schemas/migrations/20240322222229_rename_user_token/migration.sql
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
src/database/schemas/migrations/20240322222618_add_user_token_expires_at/migration.sql
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
src/database/schemas/migrations/20240328233304_init/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
-- CreateTable | ||
CREATE TABLE "User" ( | ||
"id" SERIAL NOT NULL, | ||
"email" VARCHAR(255) NOT NULL, | ||
"password" VARCHAR(128) NOT NULL, | ||
"is_admin" BOOLEAN NOT NULL, | ||
|
||
CONSTRAINT "User_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "user_token" ( | ||
"id" SERIAL NOT NULL, | ||
"user_id" INTEGER NOT NULL, | ||
"token" VARCHAR(255) NOT NULL, | ||
"expires_at" TIMESTAMP(3) NOT NULL, | ||
|
||
CONSTRAINT "user_token_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "User_email_key" ON "User"("email"); | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "user_token" ADD CONSTRAINT "user_token_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE; |
27 changes: 27 additions & 0 deletions
27
src/database/schemas/migrations/20240328234107_rename_user/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the `User` table. If the table is not empty, all the data it contains will be lost. | ||
*/ | ||
-- DropForeignKey | ||
ALTER TABLE "user_token" DROP CONSTRAINT "user_token_user_id_fkey"; | ||
|
||
-- DropTable | ||
DROP TABLE "User"; | ||
|
||
-- CreateTable | ||
CREATE TABLE "user" ( | ||
"id" SERIAL NOT NULL, | ||
"email" VARCHAR(255) NOT NULL, | ||
"password" VARCHAR(128) NOT NULL, | ||
"is_admin" BOOLEAN NOT NULL, | ||
|
||
CONSTRAINT "user_pkey" PRIMARY KEY ("id") | ||
); | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "user_email_key" ON "user"("email"); | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "user_token" ADD CONSTRAINT "user_token_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "user"("id") ON DELETE RESTRICT ON UPDATE CASCADE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Please do not edit this file manually | ||
# It should be added in your version-control system (i.e. Git) | ||
provider = "mysql" | ||
provider = "postgresql" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters