├── EKS-TF ├── backend.tf ├── eks-cluster.tf ├── eks-node-group.tf ├── iam-policy.tf ├── iam-role.tf ├── provider.tf ├── variables.tf ├── variables.tfvars └── vpc.tf ├── Jenkins-Pipeline-Code ├── Jenkinsfile-EKS-Terraform ├── Jenkinsfile-TetrisV1 └── Jenkinsfile-TetrisV2 ├── Jenkins-Server-TF ├── .terraform.lock.hcl ├── backend.tf ├── ec2.tf ├── gather.tf ├── iam-instance-profile.tf ├── iam-policy.tf ├── iam-role.tf ├── provider.tf ├── tools-install.sh ├── variables.tf ├── variables.tfvars └── vpc.tf ├── LICENSE ├── Manifest-file ├── deployment-service.yml └── ingress.yaml ├── Process.md ├── README.md ├── Tetris-V1 ├── Dockerfile ├── README.md ├── images │ └── game.jpg ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── components │ ├── Cell.js │ ├── Cell.module.css │ ├── Game.js │ ├── Game.module.css │ ├── Game.test.js │ ├── Level.js │ ├── Next.js │ ├── Next.module.css │ └── Score.js │ ├── helpers │ ├── Generators.js │ └── Helpers.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ ├── setupTests.js │ ├── tetris │ ├── Colors.js │ ├── Piece.js │ ├── State.js │ ├── Tetris.js │ └── Tetromino.js │ └── webpack.config.js ├── Tetris-V2 ├── .github │ └── workflows │ │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets │ ├── react-tetris-desktop-1.png │ ├── react-tetris-mobile-1.png │ └── react-tetris-mobile-2.png ├── package-lock.json ├── package.json ├── public │ └── index.html └── src │ ├── App.js │ ├── components │ ├── Center │ │ └── index.js │ ├── Game │ │ └── index.js │ ├── LoseGame │ │ └── index.js │ ├── Stage │ │ └── index.js │ ├── StartPage │ │ └── index.js │ ├── StatusRow │ │ └── index.js │ └── Tetris │ │ └── index.js │ ├── hooks │ ├── useInterval.js │ └── useWindowDimensions.js │ ├── images │ ├── background-min.jpg │ └── background.jpg │ ├── index.css │ ├── index.js │ ├── styles.css │ └── utils │ └── Utils.js └── assets └── Infra.gif /EKS-TF/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/backend.tf -------------------------------------------------------------------------------- /EKS-TF/eks-cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/eks-cluster.tf -------------------------------------------------------------------------------- /EKS-TF/eks-node-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/eks-node-group.tf -------------------------------------------------------------------------------- /EKS-TF/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/iam-policy.tf -------------------------------------------------------------------------------- /EKS-TF/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/iam-role.tf -------------------------------------------------------------------------------- /EKS-TF/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } -------------------------------------------------------------------------------- /EKS-TF/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/variables.tf -------------------------------------------------------------------------------- /EKS-TF/variables.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/variables.tfvars -------------------------------------------------------------------------------- /EKS-TF/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/EKS-TF/vpc.tf -------------------------------------------------------------------------------- /Jenkins-Pipeline-Code/Jenkinsfile-EKS-Terraform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Pipeline-Code/Jenkinsfile-EKS-Terraform -------------------------------------------------------------------------------- /Jenkins-Pipeline-Code/Jenkinsfile-TetrisV1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Pipeline-Code/Jenkinsfile-TetrisV1 -------------------------------------------------------------------------------- /Jenkins-Pipeline-Code/Jenkinsfile-TetrisV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Pipeline-Code/Jenkinsfile-TetrisV2 -------------------------------------------------------------------------------- /Jenkins-Server-TF/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/.terraform.lock.hcl -------------------------------------------------------------------------------- /Jenkins-Server-TF/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/backend.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/ec2.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/gather.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/gather.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/iam-instance-profile.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/iam-instance-profile.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/iam-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/iam-policy.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/iam-role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/iam-role.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } -------------------------------------------------------------------------------- /Jenkins-Server-TF/tools-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/tools-install.sh -------------------------------------------------------------------------------- /Jenkins-Server-TF/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/variables.tf -------------------------------------------------------------------------------- /Jenkins-Server-TF/variables.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/variables.tfvars -------------------------------------------------------------------------------- /Jenkins-Server-TF/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Jenkins-Server-TF/vpc.tf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /Manifest-file/deployment-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Manifest-file/deployment-service.yml -------------------------------------------------------------------------------- /Manifest-file/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Manifest-file/ingress.yaml -------------------------------------------------------------------------------- /Process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Process.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/README.md -------------------------------------------------------------------------------- /Tetris-V1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/Dockerfile -------------------------------------------------------------------------------- /Tetris-V1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/README.md -------------------------------------------------------------------------------- /Tetris-V1/images/game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/images/game.jpg -------------------------------------------------------------------------------- /Tetris-V1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/package-lock.json -------------------------------------------------------------------------------- /Tetris-V1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/package.json -------------------------------------------------------------------------------- /Tetris-V1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/favicon.ico -------------------------------------------------------------------------------- /Tetris-V1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/index.html -------------------------------------------------------------------------------- /Tetris-V1/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/logo192.png -------------------------------------------------------------------------------- /Tetris-V1/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/logo512.png -------------------------------------------------------------------------------- /Tetris-V1/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/manifest.json -------------------------------------------------------------------------------- /Tetris-V1/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/public/robots.txt -------------------------------------------------------------------------------- /Tetris-V1/src/components/Cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Cell.js -------------------------------------------------------------------------------- /Tetris-V1/src/components/Cell.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Cell.module.css -------------------------------------------------------------------------------- /Tetris-V1/src/components/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Game.js -------------------------------------------------------------------------------- /Tetris-V1/src/components/Game.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Game.module.css -------------------------------------------------------------------------------- /Tetris-V1/src/components/Game.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Game.test.js -------------------------------------------------------------------------------- /Tetris-V1/src/components/Level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Level.js -------------------------------------------------------------------------------- /Tetris-V1/src/components/Next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Next.js -------------------------------------------------------------------------------- /Tetris-V1/src/components/Next.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Next.module.css -------------------------------------------------------------------------------- /Tetris-V1/src/components/Score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/components/Score.js -------------------------------------------------------------------------------- /Tetris-V1/src/helpers/Generators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/helpers/Generators.js -------------------------------------------------------------------------------- /Tetris-V1/src/helpers/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/helpers/Helpers.js -------------------------------------------------------------------------------- /Tetris-V1/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/index.css -------------------------------------------------------------------------------- /Tetris-V1/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/index.js -------------------------------------------------------------------------------- /Tetris-V1/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/reportWebVitals.js -------------------------------------------------------------------------------- /Tetris-V1/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/setupTests.js -------------------------------------------------------------------------------- /Tetris-V1/src/tetris/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/tetris/Colors.js -------------------------------------------------------------------------------- /Tetris-V1/src/tetris/Piece.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/tetris/Piece.js -------------------------------------------------------------------------------- /Tetris-V1/src/tetris/State.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/tetris/State.js -------------------------------------------------------------------------------- /Tetris-V1/src/tetris/Tetris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/tetris/Tetris.js -------------------------------------------------------------------------------- /Tetris-V1/src/tetris/Tetromino.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/tetris/Tetromino.js -------------------------------------------------------------------------------- /Tetris-V1/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V1/src/webpack.config.js -------------------------------------------------------------------------------- /Tetris-V2/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/.github/workflows/main.yml -------------------------------------------------------------------------------- /Tetris-V2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/.gitignore -------------------------------------------------------------------------------- /Tetris-V2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/Dockerfile -------------------------------------------------------------------------------- /Tetris-V2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/LICENSE -------------------------------------------------------------------------------- /Tetris-V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/README.md -------------------------------------------------------------------------------- /Tetris-V2/assets/react-tetris-desktop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/assets/react-tetris-desktop-1.png -------------------------------------------------------------------------------- /Tetris-V2/assets/react-tetris-mobile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/assets/react-tetris-mobile-1.png -------------------------------------------------------------------------------- /Tetris-V2/assets/react-tetris-mobile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/assets/react-tetris-mobile-2.png -------------------------------------------------------------------------------- /Tetris-V2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/package-lock.json -------------------------------------------------------------------------------- /Tetris-V2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/package.json -------------------------------------------------------------------------------- /Tetris-V2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/public/index.html -------------------------------------------------------------------------------- /Tetris-V2/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/App.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/Center/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/Center/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/Game/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/LoseGame/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/LoseGame/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/Stage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/Stage/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/StartPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/StartPage/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/StatusRow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/StatusRow/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/components/Tetris/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/components/Tetris/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/hooks/useInterval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/hooks/useInterval.js -------------------------------------------------------------------------------- /Tetris-V2/src/hooks/useWindowDimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/hooks/useWindowDimensions.js -------------------------------------------------------------------------------- /Tetris-V2/src/images/background-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/images/background-min.jpg -------------------------------------------------------------------------------- /Tetris-V2/src/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/images/background.jpg -------------------------------------------------------------------------------- /Tetris-V2/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/index.css -------------------------------------------------------------------------------- /Tetris-V2/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/index.js -------------------------------------------------------------------------------- /Tetris-V2/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/styles.css -------------------------------------------------------------------------------- /Tetris-V2/src/utils/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/Tetris-V2/src/utils/Utils.js -------------------------------------------------------------------------------- /assets/Infra.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanPathak-DevOps/End-to-End-Kubernetes-DevSecOps-Tetris-Project/HEAD/assets/Infra.gif --------------------------------------------------------------------------------