├── ARGO-CICD-KUBERNETES-main ├── README.md ├── yam │ ├── deployment.yml │ ├── hpa.yml │ ├── namespace.yml │ ├── secret.yml │ └── service.yml └── yamls │ ├── nginx-service.yml │ └── nginx.yml ├── Ansible Playbook └── 1-ansible-playbook.yaml ├── Ansible_Scenarios_Role_Based ├── ansible.cfg ├── group_vars │ └── webservers.yaml ├── inventory ├── playbooks │ └── site.yaml └── roles │ └── webserver │ ├── files │ ├── custom_404.html │ └── index.html │ ├── handlers │ └── main.yaml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yaml │ ├── templates │ └── nginx.conf.j2 │ └── vars │ └── main.yaml ├── Dockerfiles ├── Dockerfile1.txt ├── Dockerfile10.txt ├── Dockerfile11.txt ├── Dockerfile12.txt ├── Dockerfile13.txt ├── Dockerfile14.txt ├── Dockerfile2.txt ├── Dockerfile3.txt ├── Dockerfile4.txt ├── Dockerfile5.txt ├── Dockerfile6.txt ├── Dockerfile7.txt ├── Dockerfile8.txt └── Dockerfile9.txt ├── Gitops_Argocd ├── deployment.yaml └── service.yaml ├── JenkinsPipeline ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── db.sqlite3 ├── deployment.yaml ├── manage.py ├── service.yaml ├── staticfiles │ ├── css │ │ └── style.css │ └── todoApp.png ├── todoApp │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── todos │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20191201_2357.py │ │ ├── 0003_auto_20191202_0000.py │ │ ├── 0004_auto_20191202_0004.py │ │ ├── 0005_auto_20191202_0011.py │ │ ├── 0006_remove_todo_deadline.py │ │ ├── 0007_auto_20191202_0323.py │ │ ├── 0008_auto_20191202_0809.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── todos │ │ │ ├── base.html │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py └── volume │ └── store_data │ └── db.sqlite3 ├── Jenkinsfiles ├── jenkinsfile1.txt ├── jenkinsfile10.txt ├── jenkinsfile11.txt ├── jenkinsfile12.txt ├── jenkinsfile13.txt ├── jenkinsfile14.txt ├── jenkinsfile15.txt ├── jenkinsfile16.txt ├── jenkinsfile2.txt ├── jenkinsfile3.txt ├── jenkinsfile4.txt ├── jenkinsfile5.txt ├── jenkinsfile6.txt ├── jenkinsfile7.txt ├── jenkinsfile8.txt └── jenkinsfile9.txt ├── K8s_Deploy └── K8s_Deploy-master │ ├── backend-pv.yaml │ ├── backend-pvc.yaml │ ├── backend │ ├── Dockerfile │ ├── backend-hpa.yaml │ ├── db.js │ ├── index.js │ ├── java-app-deployment.yaml │ ├── java-app-service.yaml │ ├── models │ │ └── task.js │ ├── package-lock.json │ ├── package.json │ └── routes │ │ └── tasks.js │ ├── config.yaml │ ├── frontend-pv.yaml │ ├── frontend-pvc.yaml │ └── frontend │ ├── Dockerfile │ ├── frontend-deploy.yaml │ ├── frontend-hpa.yaml │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── service-frontend.yaml │ └── src │ ├── App.css │ ├── App.js │ ├── Tasks.js │ ├── index.css │ ├── index.js │ └── services │ └── taskServices.js ├── Multi-Pod-Helm-Chart ├── .helmignore ├── .values.yaml.swp ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pod1-deployment.yaml │ ├── pod1-service.yaml │ ├── pod2-deployment.yaml │ ├── pod2-service.yaml │ ├── post-hook.yaml │ ├── pre-hook.yaml │ ├── rbac.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── test-connection.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── Production Jenkinsfile └── productionJenkinsfile ├── README.md ├── Shell Scripts ├── 1-deploy.sh ├── 2-migrate-db.sh ├── 3-monitoring.sh ├── 4-analyze-logs.sh └── 5-security-checks.sh ├── Terraform └── 1-Terraform.tf ├── ecommerce-app-microservice ├── Dockerfile ├── Jenkinsfile ├── deployment.yaml ├── order-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── compose.yml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── selimhorri │ │ │ │ │ └── app │ │ │ │ │ ├── OrderServiceApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── client │ │ │ │ │ │ └── ClientConfig.java │ │ │ │ │ └── mapper │ │ │ │ │ │ └── MapperConfig.java │ │ │ │ │ ├── constant │ │ │ │ │ └── AppConstant.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── AbstractMappedEntity.java │ │ │ │ │ ├── Cart.java │ │ │ │ │ └── Order.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── CartDto.java │ │ │ │ │ ├── OrderDto.java │ │ │ │ │ ├── UserDto.java │ │ │ │ │ └── response │ │ │ │ │ │ └── collection │ │ │ │ │ │ └── DtoCollectionResponse.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── ApiExceptionHandler.java │ │ │ │ │ ├── payload │ │ │ │ │ │ └── ExceptionMsg.java │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── CartNotFoundException.java │ │ │ │ │ │ └── OrderNotFoundException.java │ │ │ │ │ ├── helper │ │ │ │ │ ├── CartMappingHelper.java │ │ │ │ │ └── OrderMappingHelper.java │ │ │ │ │ ├── repository │ │ │ │ │ ├── CartRepository.java │ │ │ │ │ └── OrderRepository.java │ │ │ │ │ ├── resource │ │ │ │ │ ├── CartResource.java │ │ │ │ │ └── OrderResource.java │ │ │ │ │ └── service │ │ │ │ │ ├── CartService.java │ │ │ │ │ ├── OrderService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── CartServiceImpl.java │ │ │ │ │ └── OrderServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ ├── application-stage.yml │ │ │ │ ├── application.yml │ │ │ │ └── db │ │ │ │ └── migration │ │ │ │ ├── V1__create_carts_table.sql │ │ │ │ ├── V2__insert_carts_table.sql │ │ │ │ ├── V3__create_orders_table.sql │ │ │ │ ├── V4__insert_orders_table.sql │ │ │ │ └── V5__create_orders_cart_id_fk.sql │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── selimhorri │ │ │ └── app │ │ │ └── OrderServiceApplicationTests.java │ └── system.properties ├── payment-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── compose.yml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── selimhorri │ │ │ │ │ └── app │ │ │ │ │ ├── PaymentServiceApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── client │ │ │ │ │ │ └── ClientConfig.java │ │ │ │ │ └── mapper │ │ │ │ │ │ └── MapperConfig.java │ │ │ │ │ ├── constant │ │ │ │ │ └── AppConstant.java │ │ │ │ │ ├── domain │ │ │ │ │ ├── AbstractMappedEntity.java │ │ │ │ │ ├── Payment.java │ │ │ │ │ └── PaymentStatus.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── OrderDto.java │ │ │ │ │ ├── PaymentDto.java │ │ │ │ │ └── response │ │ │ │ │ │ └── collection │ │ │ │ │ │ └── DtoCollectionResponse.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── ApiExceptionHandler.java │ │ │ │ │ ├── payload │ │ │ │ │ │ └── ExceptionMsg.java │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── PaymentNotFoundException.java │ │ │ │ │ ├── helper │ │ │ │ │ └── PaymentMappingHelper.java │ │ │ │ │ ├── repository │ │ │ │ │ └── PaymentRepository.java │ │ │ │ │ ├── resource │ │ │ │ │ └── PaymentResource.java │ │ │ │ │ └── service │ │ │ │ │ ├── PaymentService.java │ │ │ │ │ └── impl │ │ │ │ │ └── PaymentServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application-dev.yml │ │ │ │ ├── application-prod.yml │ │ │ │ ├── application-stage.yml │ │ │ │ ├── application.yml │ │ │ │ └── db │ │ │ │ └── migration │ │ │ │ ├── V1__create_payments_table.sql │ │ │ │ └── V2__insert_payments_table.sql │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── selimhorri │ │ │ └── app │ │ │ └── PaymentServiceApplicationTests.java │ └── system.properties ├── service.yaml └── user-service │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── compose.yml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── selimhorri │ │ │ │ └── app │ │ │ │ ├── UserServiceApplication.java │ │ │ │ ├── config │ │ │ │ ├── client │ │ │ │ │ └── ClientConfig.java │ │ │ │ └── mapper │ │ │ │ │ └── MapperConfig.java │ │ │ │ ├── constant │ │ │ │ └── AppConstant.java │ │ │ │ ├── domain │ │ │ │ ├── AbstractMappedEntity.java │ │ │ │ ├── Address.java │ │ │ │ ├── Credential.java │ │ │ │ ├── RoleBasedAuthority.java │ │ │ │ ├── User.java │ │ │ │ └── VerificationToken.java │ │ │ │ ├── dto │ │ │ │ ├── AddressDto.java │ │ │ │ ├── CredentialDto.java │ │ │ │ ├── UserDto.java │ │ │ │ ├── VerificationTokenDto.java │ │ │ │ └── response │ │ │ │ │ └── collection │ │ │ │ │ └── DtoCollectionResponse.java │ │ │ │ ├── exception │ │ │ │ ├── ApiExceptionHandler.java │ │ │ │ ├── payload │ │ │ │ │ └── ExceptionMsg.java │ │ │ │ └── wrapper │ │ │ │ │ ├── AddressNotFoundException.java │ │ │ │ │ ├── CredentialNotFoundException.java │ │ │ │ │ ├── UserObjectNotFoundException.java │ │ │ │ │ └── VerificationTokenNotFoundException.java │ │ │ │ ├── helper │ │ │ │ ├── AddressMappingHelper.java │ │ │ │ ├── CredentialMappingHelper.java │ │ │ │ ├── UserMappingHelper.java │ │ │ │ └── VerificationTokenMappingHelper.java │ │ │ │ ├── repository │ │ │ │ ├── AddressRepository.java │ │ │ │ ├── CredentialRepository.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── VerificationTokenRepository.java │ │ │ │ ├── resource │ │ │ │ ├── AddressResource.java │ │ │ │ ├── CredentialResource.java │ │ │ │ ├── UserResource.java │ │ │ │ └── VerificationTokenResource.java │ │ │ │ └── service │ │ │ │ ├── AddressService.java │ │ │ │ ├── CredentialService.java │ │ │ │ ├── UserService.java │ │ │ │ ├── VerificationTokenService.java │ │ │ │ └── impl │ │ │ │ ├── AddressServiceImpl.java │ │ │ │ ├── CredentialServiceImpl.java │ │ │ │ ├── UserServiceImpl.java │ │ │ │ └── VerificationTokenServiceImpl.java │ │ └── resources │ │ │ ├── application-dev.yml │ │ │ ├── application-prod.yml │ │ │ ├── application-stage.yml │ │ │ ├── application.yml │ │ │ └── db │ │ │ └── migration │ │ │ ├── V10__create_credentials_user_id_fk.sql │ │ │ ├── V11__create_verification_tokens_credential_id_fk.sql │ │ │ ├── V1__create_users_table.sql │ │ │ ├── V2__insert_users_table.sql │ │ │ ├── V3__create_address_table.sql │ │ │ ├── V4__insert_address_table.sql │ │ │ ├── V5__create_credentials_table.sql │ │ │ ├── V6__insert_credentials_table.sql │ │ │ ├── V7__create_verification_tokens_table.sql │ │ │ ├── V8__insert_verification_tokens_table.sql │ │ │ └── V9__create_address_user_id_fk.sql │ └── test │ │ └── java │ │ └── com │ │ └── selimhorri │ │ └── app │ │ └── UserServiceApplicationTests.java │ └── system.properties ├── helm-scenarios ├── .helmignore ├── Chart.yaml ├── pv.yaml ├── pvc.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hooks │ │ ├── cleanup-resources.sh │ │ ├── post-install-job.yaml │ │ ├── post-upgrade-verification.yaml │ │ ├── pre-install-job.yaml │ │ ├── pre-upgrade-cleanup.yaml │ │ └── verify-deployment.sh │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml ├── values-dev.yaml ├── values-prod.yaml └── values.yaml ├── k8snetwork-project ├── allow-my-app-networkpolicy.yaml ├── deployment.yaml ├── egress-allow-specific-ip.yaml ├── my-app-ingress.yaml ├── networkpopicy.yaml ├── nginx-ingress-controller.yaml └── nginx-ingress-service.yaml ├── lamda-triggers ├── automated-cleanup.py.txt ├── file-convert.py.txt └── send-mail-on-s3upload.py.txt ├── multi environement terraform ├── separated_directories │ ├── environments │ │ ├── production │ │ │ ├── main.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ └── staging │ │ │ ├── main.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ └── modules │ │ └── ec2 │ │ ├── main.tf │ │ └── variables.tf └── workspaces │ ├── main.tf │ ├── modules │ └── ec2 │ │ ├── main.tf │ │ └── variables.tf │ ├── provider.tf │ └── variables.tf ├── python automation ideas ├── Artifact Cleanup.py ├── Artifact Upload to Artifactory.py ├── Automated Backup and Restore.py ├── Automated Database Backup.py ├── Automated Deployment.py ├── Automated Jenkins Pipeline Trigger.py ├── Automated Trivy Scan.py ├── Environment Health Check.py ├── Image Build and Push.py ├── Kubernetes Deployment.py ├── Log Aggregation and Analysis.py ├── Log Monitoring and Alerting.py ├── Performance Testing.py ├── Resource Scaling.py ├── Slack Notifications.py └── SonarQube Analysis.py └── terraform-infra-and-deploy-app ├── eks-cluster ├── eks-cluster.tf ├── kubernetes.tf ├── outputs.tf ├── security-groups.tf ├── terraform.tfstate ├── terraform.tfstate.backup ├── versions.tf └── vpc.tf └── nodejs-application ├── sample-nodejs-application.tf ├── terraform.tfstate └── terraform.tfstate.backup /ARGO-CICD-KUBERNETES-main/README.md: -------------------------------------------------------------------------------- 1 | # ARGO-CICD-KUBERNETES -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yam/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yam/deployment.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yam/hpa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yam/hpa.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yam/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yam/namespace.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yam/secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yam/secret.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yam/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yam/service.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yamls/nginx-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yamls/nginx-service.yml -------------------------------------------------------------------------------- /ARGO-CICD-KUBERNETES-main/yamls/nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ARGO-CICD-KUBERNETES-main/yamls/nginx.yml -------------------------------------------------------------------------------- /Ansible Playbook/1-ansible-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible Playbook/1-ansible-playbook.yaml -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/ansible.cfg -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/group_vars/webservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/group_vars/webservers.yaml -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/inventory -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/playbooks/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/playbooks/site.yaml -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/files/custom_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/roles/webserver/files/custom_404.html -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/roles/webserver/files/index.html -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/handlers/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/roles/webserver/handlers/main.yaml -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dependencies: [] 3 | 4 | -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/roles/webserver/tasks/main.yaml -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/templates/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Ansible_Scenarios_Role_Based/roles/webserver/templates/nginx.conf.j2 -------------------------------------------------------------------------------- /Ansible_Scenarios_Role_Based/roles/webserver/vars/main.yaml: -------------------------------------------------------------------------------- 1 | # Role-specific default variables 2 | nginx_port: 80 3 | server_name: localhost 4 | 5 | -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile1.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile10.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile11.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile12.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile13.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile14.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile2.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile3.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile4.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile5.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile6.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile7.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile8.txt -------------------------------------------------------------------------------- /Dockerfiles/Dockerfile9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Dockerfiles/Dockerfile9.txt -------------------------------------------------------------------------------- /Gitops_Argocd/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Gitops_Argocd/deployment.yaml -------------------------------------------------------------------------------- /Gitops_Argocd/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Gitops_Argocd/service.yaml -------------------------------------------------------------------------------- /JenkinsPipeline/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/.dockerignore -------------------------------------------------------------------------------- /JenkinsPipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/.gitignore -------------------------------------------------------------------------------- /JenkinsPipeline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/Dockerfile -------------------------------------------------------------------------------- /JenkinsPipeline/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/Jenkinsfile -------------------------------------------------------------------------------- /JenkinsPipeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/LICENSE -------------------------------------------------------------------------------- /JenkinsPipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/README.md -------------------------------------------------------------------------------- /JenkinsPipeline/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/db.sqlite3 -------------------------------------------------------------------------------- /JenkinsPipeline/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/deployment.yaml -------------------------------------------------------------------------------- /JenkinsPipeline/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/manage.py -------------------------------------------------------------------------------- /JenkinsPipeline/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/service.yaml -------------------------------------------------------------------------------- /JenkinsPipeline/staticfiles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/staticfiles/css/style.css -------------------------------------------------------------------------------- /JenkinsPipeline/staticfiles/todoApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/staticfiles/todoApp.png -------------------------------------------------------------------------------- /JenkinsPipeline/todoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JenkinsPipeline/todoApp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todoApp/settings.py -------------------------------------------------------------------------------- /JenkinsPipeline/todoApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todoApp/urls.py -------------------------------------------------------------------------------- /JenkinsPipeline/todoApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todoApp/views.py -------------------------------------------------------------------------------- /JenkinsPipeline/todoApp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todoApp/wsgi.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JenkinsPipeline/todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/admin.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/apps.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0002_auto_20191201_2357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0002_auto_20191201_2357.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0003_auto_20191202_0000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0003_auto_20191202_0000.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0004_auto_20191202_0004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0004_auto_20191202_0004.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0005_auto_20191202_0011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0005_auto_20191202_0011.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0006_remove_todo_deadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0006_remove_todo_deadline.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0007_auto_20191202_0323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0007_auto_20191202_0323.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/0008_auto_20191202_0809.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/migrations/0008_auto_20191202_0809.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JenkinsPipeline/todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/models.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/templates/todos/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/templates/todos/base.html -------------------------------------------------------------------------------- /JenkinsPipeline/todos/templates/todos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/templates/todos/index.html -------------------------------------------------------------------------------- /JenkinsPipeline/todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/tests.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/urls.py -------------------------------------------------------------------------------- /JenkinsPipeline/todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/todos/views.py -------------------------------------------------------------------------------- /JenkinsPipeline/volume/store_data/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/JenkinsPipeline/volume/store_data/db.sqlite3 -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile1.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile10.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile11.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile12.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile13.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile14.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile15.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile16.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile2.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile3.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile4.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile5.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile6.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile7.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile8.txt -------------------------------------------------------------------------------- /Jenkinsfiles/jenkinsfile9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Jenkinsfiles/jenkinsfile9.txt -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend-pv.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend-pvc.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/Dockerfile -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/backend-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/backend-hpa.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/db.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/index.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/java-app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/java-app-deployment.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/java-app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/java-app-service.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/models/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/models/task.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/package-lock.json -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/package.json -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/backend/routes/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/backend/routes/tasks.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/config.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend-pv.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend-pvc.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/Dockerfile -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/frontend-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/frontend-deploy.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/frontend-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/frontend-hpa.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/package-lock.json -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/package.json -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/favicon.ico -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/index.html -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/logo192.png -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/logo512.png -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/manifest.json -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/public/robots.txt -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/service-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/service-frontend.yaml -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/App.css -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/App.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/Tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/Tasks.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/index.css -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/index.js -------------------------------------------------------------------------------- /K8s_Deploy/K8s_Deploy-master/frontend/src/services/taskServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/K8s_Deploy/K8s_Deploy-master/frontend/src/services/taskServices.js -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/.helmignore -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/.values.yaml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/.values.yaml.swp -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/Chart.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/NOTES.txt -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/hpa.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/ingress.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/pod1-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/pod1-deployment.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/pod1-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/pod1-service.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/pod2-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/pod2-deployment.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/pod2-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/pod2-service.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/post-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/post-hook.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/pre-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/pre-hook.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/rbac.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/service.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/test-connection.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /Multi-Pod-Helm-Chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Multi-Pod-Helm-Chart/values.yaml -------------------------------------------------------------------------------- /Production Jenkinsfile/productionJenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Production Jenkinsfile/productionJenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # scenario_based_learnings -------------------------------------------------------------------------------- /Shell Scripts/1-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Shell Scripts/1-deploy.sh -------------------------------------------------------------------------------- /Shell Scripts/2-migrate-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Shell Scripts/2-migrate-db.sh -------------------------------------------------------------------------------- /Shell Scripts/3-monitoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Shell Scripts/3-monitoring.sh -------------------------------------------------------------------------------- /Shell Scripts/4-analyze-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Shell Scripts/4-analyze-logs.sh -------------------------------------------------------------------------------- /Shell Scripts/5-security-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Shell Scripts/5-security-checks.sh -------------------------------------------------------------------------------- /Terraform/1-Terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/Terraform/1-Terraform.tf -------------------------------------------------------------------------------- /ecommerce-app-microservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/Dockerfile -------------------------------------------------------------------------------- /ecommerce-app-microservice/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/Jenkinsfile -------------------------------------------------------------------------------- /ecommerce-app-microservice/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/deployment.yaml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/.gitignore -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/Dockerfile -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/compose.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/mvnw -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/mvnw.cmd -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/pom.xml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/OrderServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/OrderServiceApplication.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/constant/AppConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/constant/AppConstant.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/Cart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/Cart.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/domain/Order.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/CartDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/CartDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/OrderDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/OrderDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/UserDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/UserDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/wrapper/CartNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/wrapper/CartNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/wrapper/OrderNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/exception/wrapper/OrderNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/helper/CartMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/helper/CartMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/helper/OrderMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/helper/OrderMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/repository/CartRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/repository/CartRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/repository/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/repository/OrderRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/resource/CartResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/resource/CartResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/resource/OrderResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/resource/OrderResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/CartService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/CartService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/OrderService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/impl/CartServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/impl/CartServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/impl/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/java/com/selimhorri/app/service/impl/OrderServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/application-dev.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/application-prod.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/application-stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/application-stage.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/db/migration/V1__create_carts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/db/migration/V1__create_carts_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/db/migration/V2__insert_carts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/db/migration/V2__insert_carts_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/db/migration/V3__create_orders_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/db/migration/V3__create_orders_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/db/migration/V4__insert_orders_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/db/migration/V4__insert_orders_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/main/resources/db/migration/V5__create_orders_cart_id_fk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/main/resources/db/migration/V5__create_orders_cart_id_fk.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/src/test/java/com/selimhorri/app/OrderServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/order-service/src/test/java/com/selimhorri/app/OrderServiceApplicationTests.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/order-service/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/.gitignore -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/Dockerfile -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/compose.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/mvnw -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/mvnw.cmd -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/pom.xml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/PaymentServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/PaymentServiceApplication.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/constant/AppConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/constant/AppConstant.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/Payment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/Payment.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/PaymentStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/domain/PaymentStatus.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/OrderDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/OrderDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/PaymentDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/PaymentDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/wrapper/PaymentNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/exception/wrapper/PaymentNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/helper/PaymentMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/helper/PaymentMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/repository/PaymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/repository/PaymentRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/resource/PaymentResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/resource/PaymentResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/service/PaymentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/service/PaymentService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/service/impl/PaymentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/java/com/selimhorri/app/service/impl/PaymentServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/application-dev.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/application-prod.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/application-stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/application-stage.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/db/migration/V1__create_payments_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/db/migration/V1__create_payments_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/main/resources/db/migration/V2__insert_payments_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/main/resources/db/migration/V2__insert_payments_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/src/test/java/com/selimhorri/app/PaymentServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/payment-service/src/test/java/com/selimhorri/app/PaymentServiceApplicationTests.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/payment-service/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 -------------------------------------------------------------------------------- /ecommerce-app-microservice/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/service.yaml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/.gitignore -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/Dockerfile -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/compose.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/mvnw -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/mvnw.cmd -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/pom.xml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/UserServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/UserServiceApplication.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/config/client/ClientConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/config/mapper/MapperConfig.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/constant/AppConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/constant/AppConstant.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/AbstractMappedEntity.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/Address.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/Credential.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/Credential.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/RoleBasedAuthority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/RoleBasedAuthority.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/User.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/VerificationToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/domain/VerificationToken.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/AddressDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/AddressDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/CredentialDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/CredentialDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/UserDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/UserDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/VerificationTokenDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/VerificationTokenDto.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/dto/response/collection/DtoCollectionResponse.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/ApiExceptionHandler.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/payload/ExceptionMsg.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/AddressNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/AddressNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/CredentialNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/CredentialNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/UserObjectNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/UserObjectNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/VerificationTokenNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/exception/wrapper/VerificationTokenNotFoundException.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/AddressMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/AddressMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/CredentialMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/CredentialMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/UserMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/UserMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/VerificationTokenMappingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/helper/VerificationTokenMappingHelper.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/AddressRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/AddressRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/CredentialRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/CredentialRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/UserRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/VerificationTokenRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/repository/VerificationTokenRepository.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/AddressResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/AddressResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/CredentialResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/CredentialResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/UserResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/UserResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/VerificationTokenResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/resource/VerificationTokenResource.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/AddressService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/AddressService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/CredentialService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/CredentialService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/UserService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/VerificationTokenService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/VerificationTokenService.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/AddressServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/AddressServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/CredentialServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/CredentialServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/VerificationTokenServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/java/com/selimhorri/app/service/impl/VerificationTokenServiceImpl.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/application-dev.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/application-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/application-prod.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/application-stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/application-stage.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V10__create_credentials_user_id_fk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V10__create_credentials_user_id_fk.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V11__create_verification_tokens_credential_id_fk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V11__create_verification_tokens_credential_id_fk.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V1__create_users_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V1__create_users_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V2__insert_users_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V2__insert_users_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V3__create_address_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V3__create_address_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V4__insert_address_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V4__insert_address_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V5__create_credentials_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V5__create_credentials_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V6__insert_credentials_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V6__insert_credentials_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V7__create_verification_tokens_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V7__create_verification_tokens_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V8__insert_verification_tokens_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V8__insert_verification_tokens_table.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/main/resources/db/migration/V9__create_address_user_id_fk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/main/resources/db/migration/V9__create_address_user_id_fk.sql -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/src/test/java/com/selimhorri/app/UserServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/ecommerce-app-microservice/user-service/src/test/java/com/selimhorri/app/UserServiceApplicationTests.java -------------------------------------------------------------------------------- /ecommerce-app-microservice/user-service/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=11 -------------------------------------------------------------------------------- /helm-scenarios/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/.helmignore -------------------------------------------------------------------------------- /helm-scenarios/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/Chart.yaml -------------------------------------------------------------------------------- /helm-scenarios/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/pv.yaml -------------------------------------------------------------------------------- /helm-scenarios/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/pvc.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-scenarios/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-scenarios/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/cleanup-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/cleanup-resources.sh -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/post-install-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/post-install-job.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/post-upgrade-verification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/post-upgrade-verification.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/pre-install-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/pre-install-job.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/pre-upgrade-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/pre-upgrade-cleanup.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/hooks/verify-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hooks/verify-deployment.sh -------------------------------------------------------------------------------- /helm-scenarios/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/hpa.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/pdb.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/secret.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/service.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-scenarios/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm-scenarios/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/values-dev.yaml -------------------------------------------------------------------------------- /helm-scenarios/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/values-prod.yaml -------------------------------------------------------------------------------- /helm-scenarios/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/helm-scenarios/values.yaml -------------------------------------------------------------------------------- /k8snetwork-project/allow-my-app-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/allow-my-app-networkpolicy.yaml -------------------------------------------------------------------------------- /k8snetwork-project/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/deployment.yaml -------------------------------------------------------------------------------- /k8snetwork-project/egress-allow-specific-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/egress-allow-specific-ip.yaml -------------------------------------------------------------------------------- /k8snetwork-project/my-app-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/my-app-ingress.yaml -------------------------------------------------------------------------------- /k8snetwork-project/networkpopicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/networkpopicy.yaml -------------------------------------------------------------------------------- /k8snetwork-project/nginx-ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/nginx-ingress-controller.yaml -------------------------------------------------------------------------------- /k8snetwork-project/nginx-ingress-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/k8snetwork-project/nginx-ingress-service.yaml -------------------------------------------------------------------------------- /lamda-triggers/automated-cleanup.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/lamda-triggers/automated-cleanup.py.txt -------------------------------------------------------------------------------- /lamda-triggers/file-convert.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/lamda-triggers/file-convert.py.txt -------------------------------------------------------------------------------- /lamda-triggers/send-mail-on-s3upload.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/lamda-triggers/send-mail-on-s3upload.py.txt -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/production/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/production/main.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/production/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/production/provider.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/production/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/production/variables.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/staging/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/staging/main.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/staging/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/staging/provider.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/environments/staging/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/environments/staging/variables.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/modules/ec2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/modules/ec2/main.tf -------------------------------------------------------------------------------- /multi environement terraform/separated_directories/modules/ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/separated_directories/modules/ec2/variables.tf -------------------------------------------------------------------------------- /multi environement terraform/workspaces/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/workspaces/main.tf -------------------------------------------------------------------------------- /multi environement terraform/workspaces/modules/ec2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/workspaces/modules/ec2/main.tf -------------------------------------------------------------------------------- /multi environement terraform/workspaces/modules/ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/workspaces/modules/ec2/variables.tf -------------------------------------------------------------------------------- /multi environement terraform/workspaces/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/workspaces/provider.tf -------------------------------------------------------------------------------- /multi environement terraform/workspaces/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/multi environement terraform/workspaces/variables.tf -------------------------------------------------------------------------------- /python automation ideas/Artifact Cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Artifact Cleanup.py -------------------------------------------------------------------------------- /python automation ideas/Artifact Upload to Artifactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Artifact Upload to Artifactory.py -------------------------------------------------------------------------------- /python automation ideas/Automated Backup and Restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Automated Backup and Restore.py -------------------------------------------------------------------------------- /python automation ideas/Automated Database Backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Automated Database Backup.py -------------------------------------------------------------------------------- /python automation ideas/Automated Deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Automated Deployment.py -------------------------------------------------------------------------------- /python automation ideas/Automated Jenkins Pipeline Trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Automated Jenkins Pipeline Trigger.py -------------------------------------------------------------------------------- /python automation ideas/Automated Trivy Scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Automated Trivy Scan.py -------------------------------------------------------------------------------- /python automation ideas/Environment Health Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Environment Health Check.py -------------------------------------------------------------------------------- /python automation ideas/Image Build and Push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Image Build and Push.py -------------------------------------------------------------------------------- /python automation ideas/Kubernetes Deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Kubernetes Deployment.py -------------------------------------------------------------------------------- /python automation ideas/Log Aggregation and Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Log Aggregation and Analysis.py -------------------------------------------------------------------------------- /python automation ideas/Log Monitoring and Alerting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Log Monitoring and Alerting.py -------------------------------------------------------------------------------- /python automation ideas/Performance Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Performance Testing.py -------------------------------------------------------------------------------- /python automation ideas/Resource Scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Resource Scaling.py -------------------------------------------------------------------------------- /python automation ideas/Slack Notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/Slack Notifications.py -------------------------------------------------------------------------------- /python automation ideas/SonarQube Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/python automation ideas/SonarQube Analysis.py -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/eks-cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/eks-cluster.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/kubernetes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/kubernetes.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/outputs.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/security-groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/security-groups.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/terraform.tfstate -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/terraform.tfstate.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/terraform.tfstate.backup -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/versions.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/eks-cluster/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/eks-cluster/vpc.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/nodejs-application/sample-nodejs-application.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/nodejs-application/sample-nodejs-application.tf -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/nodejs-application/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/nodejs-application/terraform.tfstate -------------------------------------------------------------------------------- /terraform-infra-and-deploy-app/nodejs-application/terraform.tfstate.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveen1994dec/scenario_based_learnings/HEAD/terraform-infra-and-deploy-app/nodejs-application/terraform.tfstate.backup --------------------------------------------------------------------------------