├── .gitignore ├── CarLoan ├── .dockerignore ├── .vs │ └── CarLoan │ │ └── xs │ │ ├── UserPrefs.xml │ │ ├── project-cache │ │ └── CarLoan-Debug.json │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── CarLoan.sln ├── CarLoan │ ├── CarLoan.csproj │ ├── Controllers │ │ └── CarLoanController.cs │ ├── Dockerfile │ ├── LoanQuote.cs │ ├── LoanQuoteRequest.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── docker-compose.dcproj ├── docker-compose.override.yml └── docker-compose.yml ├── README.md ├── app_server ├── Dockerfile ├── README.md ├── base_assets │ ├── IconBase.png │ ├── login.png │ └── logout.png ├── nb-configuration.xml ├── pom.xml ├── setenv.sh └── src │ └── main │ ├── java │ ├── com │ │ └── supercars │ │ │ ├── Car.java │ │ │ ├── Enquiry.java │ │ │ ├── InsuranceQuote.java │ │ │ ├── InsuranceQuoteRequest.java │ │ │ ├── Leak.java │ │ │ ├── LoanQuote.java │ │ │ ├── LoanQuoteRequest.java │ │ │ ├── Manufacturer.java │ │ │ ├── Rating.java │ │ │ ├── RatingRequest.java │ │ │ ├── ZendeskComment.java │ │ │ ├── ZendeskTicket.java │ │ │ ├── dataloader │ │ │ ├── CarDataLoader.java │ │ │ ├── Constants.java │ │ │ ├── EnquiryDataLoader.java │ │ │ └── ManufacturerDataLoader.java │ │ │ ├── externaldata │ │ │ ├── CarRating.java │ │ │ ├── FuelPrices.java │ │ │ ├── InsuranceQuotes.java │ │ │ ├── LoanQuotes.java │ │ │ ├── S3Images.java │ │ │ └── Zendesk.java │ │ │ ├── logging │ │ │ ├── CarLogFormatter.java │ │ │ ├── CarLogger.java │ │ │ └── SessionIDHolder.java │ │ │ ├── prometheus │ │ │ └── Init.java │ │ │ ├── rest │ │ │ ├── CarService.java │ │ │ ├── EnquiryService.java │ │ │ ├── FuelService.java │ │ │ ├── HealthService.java │ │ │ ├── InsuranceService.java │ │ │ ├── LeakService.java │ │ │ ├── LoanService.java │ │ │ ├── ManufacturerService.java │ │ │ └── UserService.java │ │ │ ├── tracing │ │ │ ├── DelegatingTracingFilter.java │ │ │ ├── ObserveTagFilter.java │ │ │ ├── TracingBuilder.java │ │ │ ├── TracingHelper.java │ │ │ └── ZipkinMetricReporter.java │ │ │ └── usermanagement │ │ │ ├── User.java │ │ │ └── UserManager.java │ └── conf │ │ └── MANIFEST.MF │ └── webapp │ ├── META-INF │ ├── context.xml │ └── redisson.yaml │ ├── WEB-INF │ ├── c.tld │ ├── classes │ │ └── logging.properties │ ├── jboss-web.xml │ ├── validator-rules.xml │ └── web.xml │ ├── angular │ ├── about.html │ ├── alpina.html │ ├── amg.html │ ├── angular-route.js │ ├── angular.js │ ├── car.html │ ├── cars.html │ ├── enquire.html │ ├── favicon.ico │ ├── gembella.html │ ├── home.html │ ├── images │ │ ├── about.png │ │ ├── about_car.gif │ │ ├── cars.png │ │ ├── cars │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── IMG_1.jpeg │ │ │ ├── IMG_2.jpeg │ │ │ ├── IMG_3.jpeg │ │ │ ├── IMG_4.jpeg │ │ │ ├── IMG_5.jpeg │ │ │ ├── IMG_6.jpeg │ │ │ ├── IMG_7.jpeg │ │ │ ├── IMG_8.jpeg │ │ │ └── IMG_9.jpeg │ │ ├── enquire.png │ │ ├── enquire_but.gif │ │ ├── enquire_button.gif │ │ ├── homepagebackground.jpg │ │ ├── insurance.png │ │ ├── insurance_button.gif │ │ ├── insurance_car.gif │ │ ├── line.gif │ │ ├── login.png │ │ ├── logo.gif │ │ ├── logout.png │ │ ├── manufacturers │ │ │ ├── AstonMartin.gif │ │ │ ├── Bmw.gif │ │ │ ├── Ferrari.gif │ │ │ ├── Ford.gif │ │ │ ├── Jaguar.gif │ │ │ ├── Lamborghini.gif │ │ │ ├── Lotus.gif │ │ │ ├── Mazda.gif │ │ │ ├── McLaren.png │ │ │ ├── Mercedes.gif │ │ │ ├── Porsche.gif │ │ │ ├── Subaru.gif │ │ │ └── Tvr.gif │ │ ├── performance │ │ │ ├── alpina.gif │ │ │ ├── amg.gif │ │ │ ├── b10.gif │ │ │ ├── gcar.gif │ │ │ ├── gembella.gif │ │ │ ├── mazda.gif │ │ │ ├── rgt.gif │ │ │ ├── ruf.gif │ │ │ ├── rx8.gif │ │ │ └── slk.gif │ │ ├── pipe.gif │ │ ├── search.png │ │ ├── search_button.gif │ │ ├── sell.png │ │ ├── sell_but.gif │ │ ├── small_search_but.gif │ │ ├── submit_button.gif │ │ └── view_enquiries_button.gif │ ├── index.html │ ├── index.jsp │ ├── insurance.html │ ├── login.html │ ├── logout.html │ ├── manufacturers.html │ ├── mazdaspeed.html │ ├── preferences.html │ ├── ruf.html │ ├── search.html │ ├── sell.html │ ├── superCars.js │ ├── superCarsController.js │ ├── thankyou.html │ ├── trader.css │ └── tuner.jsp │ └── trader.css ├── car_rating └── index.js ├── cron_cleanup ├── Dockerfile ├── Pipfile ├── README.md ├── clean_up.py └── config ├── daily_tasks ├── HTTPCodes.json ├── README.md ├── badmap.yaml ├── createUsers.py └── goodmap.yaml ├── db_server ├── Dockerfile ├── README.md └── mysql.sql ├── demo_monkey ├── Cars Demo Base.mnky ├── Manufacturers.mnky ├── README.md └── fitness.mnky ├── docImages ├── highlevelarc.png └── tunerLinks.png ├── file.txt ├── jenkins ├── .gitignore ├── Dockerfile ├── config ├── jenkins │ ├── .config │ │ └── jgit │ │ │ └── config │ ├── .gitignore │ ├── .java │ │ └── fonts │ │ │ └── 1.8.0_232 │ │ │ └── fcinfo-1-7a743aa66a63-Linux-4.19.76-linuxkit-en.properties │ ├── .lastStarted │ ├── .owner │ ├── hudson.tasks.Shell.xml │ ├── jobs │ │ ├── AppServerBuild │ │ │ ├── builds │ │ │ │ ├── legacyIds │ │ │ │ └── permalinks │ │ │ ├── config.xml │ │ │ ├── nextBuildNumber │ │ │ └── scm-polling.log │ │ ├── InsuranceService │ │ │ ├── builds │ │ │ │ ├── legacyIds │ │ │ │ └── permalinks │ │ │ ├── config.xml │ │ │ └── nextBuildNumber │ │ ├── LoanService │ │ │ ├── builds │ │ │ │ ├── legacyIds │ │ │ │ └── permalinks │ │ │ ├── config.xml │ │ │ └── nextBuildNumber │ │ ├── WebFrontEnd │ │ │ ├── builds │ │ │ │ ├── legacyIds │ │ │ │ └── permalinks │ │ │ ├── config.xml │ │ │ └── nextBuildNumber │ │ └── flip │ │ │ ├── config.xml │ │ │ └── nextBuildNumber │ └── users │ │ ├── admin_3997065835366059157 │ │ └── config.xml │ │ ├── tom_18273539587912869938 │ │ └── config.xml │ │ └── users.xml └── postStart.sh ├── kubernetes ├── .gitignore ├── README.md ├── aws-load-balancer-controller-service-account.yaml ├── cars_app-prod.yaml ├── cars_app-staging.yaml ├── cars_app.yaml ├── clean_staging_test.yaml ├── dummy-cf.yaml ├── ingress.yaml ├── load_gen.yaml ├── oom.yaml └── v2_4_1_full.yaml ├── lambda ├── .gitignore └── car_rating │ ├── lambda_function.py │ ├── logger.py │ └── memory_consumer.py ├── load_gen ├── Dockerfile ├── README.md ├── SuperCars.jmx └── entrypoint.sh ├── mobile └── iOS │ ├── Cars Mobile Sample │ ├── Cars Mobile Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── tom.batchelor.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── tom.batchelor.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── Cars Mobile Sample.xcscheme │ │ │ └── xcschememanagement.plist │ ├── Cars Mobile Sample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── tom.batchelor.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ ├── Cars Mobile Sample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-60x60@2x-1.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x-1.png │ │ │ │ └── Icon-App-76x76@2x.png │ │ │ ├── Contents.json │ │ │ └── sample.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PinkTeapot.jpeg │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Car.swift │ │ ├── CarTableViewCell.swift │ │ ├── CarTableViewController.swift │ │ ├── CarViewController.swift │ │ ├── HomeViewController.swift │ │ ├── Info.plist │ │ ├── LoginViewController.swift │ │ ├── Manufacturer.swift │ │ ├── ManufacturerTableViewCell.swift │ │ ├── ManufacturerTableViewController.swift │ │ ├── RestApiManager.swift │ │ ├── SearchViewController.swift │ │ ├── SellViewController.swift │ │ └── User.swift │ └── Cars Mobile SampleTests │ │ ├── Cars_Mobile_SampleTests.swift │ │ └── Info.plist │ └── README.md ├── oom_pod ├── Dockerfile └── oom.py ├── prometheus ├── Dockerfile ├── README.md └── prometheus.yml ├── scenario ├── Dockerfile ├── README.md └── Scenario.jmx ├── terraform ├── .gitignore ├── .terraform.lock.hcl ├── aws │ ├── eks-cluster.tf │ ├── kubernetes.tf │ ├── monitoring.tf │ ├── outputs.tf │ ├── variables.tf │ ├── versions.tf │ └── vpc.tf ├── main.tf ├── providers.tf └── variables.tf ├── updateDeployLocalhost.sh └── web_server ├── Dockerfile ├── README.md └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/.gitignore -------------------------------------------------------------------------------- /CarLoan/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/.dockerignore -------------------------------------------------------------------------------- /CarLoan/.vs/CarLoan/xs/UserPrefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/.vs/CarLoan/xs/UserPrefs.xml -------------------------------------------------------------------------------- /CarLoan/.vs/CarLoan/xs/project-cache/CarLoan-Debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/.vs/CarLoan/xs/project-cache/CarLoan-Debug.json -------------------------------------------------------------------------------- /CarLoan/.vs/CarLoan/xs/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CarLoan/.vs/CarLoan/xs/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/.vs/CarLoan/xs/sqlite3/storage.ide -------------------------------------------------------------------------------- /CarLoan/CarLoan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan.sln -------------------------------------------------------------------------------- /CarLoan/CarLoan/CarLoan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/CarLoan.csproj -------------------------------------------------------------------------------- /CarLoan/CarLoan/Controllers/CarLoanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/Controllers/CarLoanController.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/Dockerfile -------------------------------------------------------------------------------- /CarLoan/CarLoan/LoanQuote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/LoanQuote.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/LoanQuoteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/LoanQuoteRequest.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/Program.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/Properties/launchSettings.json -------------------------------------------------------------------------------- /CarLoan/CarLoan/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/Startup.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/WeatherForecast.cs -------------------------------------------------------------------------------- /CarLoan/CarLoan/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/appsettings.Development.json -------------------------------------------------------------------------------- /CarLoan/CarLoan/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/CarLoan/appsettings.json -------------------------------------------------------------------------------- /CarLoan/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/docker-compose.dcproj -------------------------------------------------------------------------------- /CarLoan/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/docker-compose.override.yml -------------------------------------------------------------------------------- /CarLoan/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/CarLoan/docker-compose.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/README.md -------------------------------------------------------------------------------- /app_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/Dockerfile -------------------------------------------------------------------------------- /app_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/README.md -------------------------------------------------------------------------------- /app_server/base_assets/IconBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/base_assets/IconBase.png -------------------------------------------------------------------------------- /app_server/base_assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/base_assets/login.png -------------------------------------------------------------------------------- /app_server/base_assets/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/base_assets/logout.png -------------------------------------------------------------------------------- /app_server/nb-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/nb-configuration.xml -------------------------------------------------------------------------------- /app_server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/pom.xml -------------------------------------------------------------------------------- /app_server/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/setenv.sh -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/Car.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/Enquiry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/Enquiry.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/InsuranceQuote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/InsuranceQuote.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/InsuranceQuoteRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/InsuranceQuoteRequest.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/Leak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/Leak.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/LoanQuote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/LoanQuote.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/LoanQuoteRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/LoanQuoteRequest.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/Manufacturer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/Manufacturer.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/Rating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/Rating.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/RatingRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/RatingRequest.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/ZendeskComment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/ZendeskComment.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/ZendeskTicket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/ZendeskTicket.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/dataloader/CarDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/dataloader/CarDataLoader.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/dataloader/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/dataloader/Constants.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/dataloader/EnquiryDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/dataloader/EnquiryDataLoader.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/dataloader/ManufacturerDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/dataloader/ManufacturerDataLoader.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/CarRating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/CarRating.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/FuelPrices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/FuelPrices.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/InsuranceQuotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/InsuranceQuotes.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/LoanQuotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/LoanQuotes.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/S3Images.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/S3Images.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/externaldata/Zendesk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/externaldata/Zendesk.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/logging/CarLogFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/logging/CarLogFormatter.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/logging/CarLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/logging/CarLogger.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/logging/SessionIDHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/logging/SessionIDHolder.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/prometheus/Init.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/prometheus/Init.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/CarService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/CarService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/EnquiryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/EnquiryService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/FuelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/FuelService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/HealthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/HealthService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/InsuranceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/InsuranceService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/LeakService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/LeakService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/LoanService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/LoanService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/ManufacturerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/ManufacturerService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/rest/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/rest/UserService.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/tracing/DelegatingTracingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/tracing/DelegatingTracingFilter.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/tracing/ObserveTagFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/tracing/ObserveTagFilter.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/tracing/TracingBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/tracing/TracingBuilder.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/tracing/TracingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/tracing/TracingHelper.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/tracing/ZipkinMetricReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/tracing/ZipkinMetricReporter.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/usermanagement/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/usermanagement/User.java -------------------------------------------------------------------------------- /app_server/src/main/java/com/supercars/usermanagement/UserManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/java/com/supercars/usermanagement/UserManager.java -------------------------------------------------------------------------------- /app_server/src/main/java/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /app_server/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /app_server/src/main/webapp/META-INF/redisson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/META-INF/redisson.yaml -------------------------------------------------------------------------------- /app_server/src/main/webapp/WEB-INF/c.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/WEB-INF/c.tld -------------------------------------------------------------------------------- /app_server/src/main/webapp/WEB-INF/classes/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/WEB-INF/classes/logging.properties -------------------------------------------------------------------------------- /app_server/src/main/webapp/WEB-INF/jboss-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/WEB-INF/jboss-web.xml -------------------------------------------------------------------------------- /app_server/src/main/webapp/WEB-INF/validator-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/WEB-INF/validator-rules.xml -------------------------------------------------------------------------------- /app_server/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/about.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/alpina.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/alpina.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/amg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/amg.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/angular-route.js -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/angular.js -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/car.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/cars.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/enquire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/enquire.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/favicon.ico -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/gembella.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/gembella.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/home.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/about.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/about_car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/about_car.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/1.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/2.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/3.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/4.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/5.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/6.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/7.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/8.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/9.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_1.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_2.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_3.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_4.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_5.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_6.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_7.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_8.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/cars/IMG_9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/cars/IMG_9.jpeg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/enquire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/enquire.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/enquire_but.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/enquire_but.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/enquire_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/enquire_button.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/homepagebackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/homepagebackground.jpg -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/insurance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/insurance.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/insurance_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/insurance_button.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/insurance_car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/insurance_car.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/line.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/login.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/logo.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/logout.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/AstonMartin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/AstonMartin.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Bmw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Bmw.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Ferrari.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Ferrari.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Ford.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Ford.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Jaguar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Jaguar.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Lamborghini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Lamborghini.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Lotus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Lotus.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Mazda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Mazda.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/McLaren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/McLaren.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Mercedes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Mercedes.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Porsche.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Porsche.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Subaru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Subaru.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/manufacturers/Tvr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/manufacturers/Tvr.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/alpina.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/alpina.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/amg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/amg.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/b10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/b10.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/gcar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/gcar.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/gembella.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/gembella.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/mazda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/mazda.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/rgt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/rgt.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/ruf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/ruf.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/rx8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/rx8.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/performance/slk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/performance/slk.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/pipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/pipe.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/search.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/search_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/search_button.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/sell.png -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/sell_but.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/sell_but.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/small_search_but.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/small_search_but.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/submit_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/submit_button.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/images/view_enquiries_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/images/view_enquiries_button.gif -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/index.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/index.jsp -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/insurance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/insurance.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/login.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/logout.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/manufacturers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/manufacturers.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/mazdaspeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/mazdaspeed.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/preferences.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/ruf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/ruf.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/search.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/sell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/sell.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/superCars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/superCars.js -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/superCarsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/superCarsController.js -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/thankyou.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/thankyou.html -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/trader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/trader.css -------------------------------------------------------------------------------- /app_server/src/main/webapp/angular/tuner.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/angular/tuner.jsp -------------------------------------------------------------------------------- /app_server/src/main/webapp/trader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/app_server/src/main/webapp/trader.css -------------------------------------------------------------------------------- /car_rating/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/car_rating/index.js -------------------------------------------------------------------------------- /cron_cleanup/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/cron_cleanup/Dockerfile -------------------------------------------------------------------------------- /cron_cleanup/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/cron_cleanup/Pipfile -------------------------------------------------------------------------------- /cron_cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/cron_cleanup/README.md -------------------------------------------------------------------------------- /cron_cleanup/clean_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/cron_cleanup/clean_up.py -------------------------------------------------------------------------------- /cron_cleanup/config: -------------------------------------------------------------------------------- 1 | [default] 2 | region = us-west-2 3 | -------------------------------------------------------------------------------- /daily_tasks/HTTPCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/daily_tasks/HTTPCodes.json -------------------------------------------------------------------------------- /daily_tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/daily_tasks/README.md -------------------------------------------------------------------------------- /daily_tasks/badmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/daily_tasks/badmap.yaml -------------------------------------------------------------------------------- /daily_tasks/createUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/daily_tasks/createUsers.py -------------------------------------------------------------------------------- /daily_tasks/goodmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/daily_tasks/goodmap.yaml -------------------------------------------------------------------------------- /db_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/db_server/Dockerfile -------------------------------------------------------------------------------- /db_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/db_server/README.md -------------------------------------------------------------------------------- /db_server/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/db_server/mysql.sql -------------------------------------------------------------------------------- /demo_monkey/Cars Demo Base.mnky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/demo_monkey/Cars Demo Base.mnky -------------------------------------------------------------------------------- /demo_monkey/Manufacturers.mnky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/demo_monkey/Manufacturers.mnky -------------------------------------------------------------------------------- /demo_monkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/demo_monkey/README.md -------------------------------------------------------------------------------- /demo_monkey/fitness.mnky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/demo_monkey/fitness.mnky -------------------------------------------------------------------------------- /docImages/highlevelarc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/docImages/highlevelarc.png -------------------------------------------------------------------------------- /docImages/tunerLinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/docImages/tunerLinks.png -------------------------------------------------------------------------------- /file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/file.txt -------------------------------------------------------------------------------- /jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/Dockerfile -------------------------------------------------------------------------------- /jenkins/config: -------------------------------------------------------------------------------- 1 | [default] 2 | region = us-west-2 3 | -------------------------------------------------------------------------------- /jenkins/jenkins/.config/jgit/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/.config/jgit/config -------------------------------------------------------------------------------- /jenkins/jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | secrets 2 | plugins 3 | -------------------------------------------------------------------------------- /jenkins/jenkins/.java/fonts/1.8.0_232/fcinfo-1-7a743aa66a63-Linux-4.19.76-linuxkit-en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/.java/fonts/1.8.0_232/fcinfo-1-7a743aa66a63-Linux-4.19.76-linuxkit-en.properties -------------------------------------------------------------------------------- /jenkins/jenkins/.lastStarted: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/jenkins/.owner: -------------------------------------------------------------------------------- 1 | 1730585416 contextPath="/jenkins" at 7467@TomsObserve -------------------------------------------------------------------------------- /jenkins/jenkins/hudson.tasks.Shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/hudson.tasks.Shell.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/AppServerBuild/builds/legacyIds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/AppServerBuild/builds/permalinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/AppServerBuild/builds/permalinks -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/AppServerBuild/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/AppServerBuild/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/AppServerBuild/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/AppServerBuild/scm-polling.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/AppServerBuild/scm-polling.log -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/InsuranceService/builds/legacyIds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/InsuranceService/builds/permalinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/InsuranceService/builds/permalinks -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/InsuranceService/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/InsuranceService/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/InsuranceService/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 65 2 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/LoanService/builds/legacyIds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/LoanService/builds/permalinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/LoanService/builds/permalinks -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/LoanService/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/LoanService/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/LoanService/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/WebFrontEnd/builds/legacyIds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/WebFrontEnd/builds/permalinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/WebFrontEnd/builds/permalinks -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/WebFrontEnd/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/WebFrontEnd/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/WebFrontEnd/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/flip/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/jobs/flip/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/jobs/flip/nextBuildNumber: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /jenkins/jenkins/users/admin_3997065835366059157/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/users/admin_3997065835366059157/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/users/tom_18273539587912869938/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/users/tom_18273539587912869938/config.xml -------------------------------------------------------------------------------- /jenkins/jenkins/users/users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/jenkins/users/users.xml -------------------------------------------------------------------------------- /jenkins/postStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/jenkins/postStart.sh -------------------------------------------------------------------------------- /kubernetes/.gitignore: -------------------------------------------------------------------------------- 1 | jenkins-secrets.yaml 2 | -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/aws-load-balancer-controller-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/aws-load-balancer-controller-service-account.yaml -------------------------------------------------------------------------------- /kubernetes/cars_app-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/cars_app-prod.yaml -------------------------------------------------------------------------------- /kubernetes/cars_app-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/cars_app-staging.yaml -------------------------------------------------------------------------------- /kubernetes/cars_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/cars_app.yaml -------------------------------------------------------------------------------- /kubernetes/clean_staging_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/clean_staging_test.yaml -------------------------------------------------------------------------------- /kubernetes/dummy-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/dummy-cf.yaml -------------------------------------------------------------------------------- /kubernetes/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/load_gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/load_gen.yaml -------------------------------------------------------------------------------- /kubernetes/oom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/oom.yaml -------------------------------------------------------------------------------- /kubernetes/v2_4_1_full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/kubernetes/v2_4_1_full.yaml -------------------------------------------------------------------------------- /lambda/.gitignore: -------------------------------------------------------------------------------- 1 | car_rating 2 | -------------------------------------------------------------------------------- /lambda/car_rating/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/lambda/car_rating/lambda_function.py -------------------------------------------------------------------------------- /lambda/car_rating/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/lambda/car_rating/logger.py -------------------------------------------------------------------------------- /lambda/car_rating/memory_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/lambda/car_rating/memory_consumer.py -------------------------------------------------------------------------------- /load_gen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/load_gen/Dockerfile -------------------------------------------------------------------------------- /load_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/load_gen/README.md -------------------------------------------------------------------------------- /load_gen/SuperCars.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/load_gen/SuperCars.jmx -------------------------------------------------------------------------------- /load_gen/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/load_gen/entrypoint.sh -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/project.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcschemes/Cars Mobile Sample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcschemes/Cars Mobile Sample.xcscheme -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcodeproj/xcuserdata/tom.batchelor.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample.xcworkspace/xcuserdata/tom.batchelor.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/AppDelegate.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x-1.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x-1.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/sample.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/sample.imageset/Contents.json -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/sample.imageset/PinkTeapot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Assets.xcassets/sample.imageset/PinkTeapot.jpeg -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Car.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Car.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarTableViewCell.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarTableViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/CarViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/HomeViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Info.plist -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/LoginViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Manufacturer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/Manufacturer.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/ManufacturerTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/ManufacturerTableViewCell.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/ManufacturerTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/ManufacturerTableViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/RestApiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/RestApiManager.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/SearchViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/SellViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/SellViewController.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile Sample/User.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile SampleTests/Cars_Mobile_SampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile SampleTests/Cars_Mobile_SampleTests.swift -------------------------------------------------------------------------------- /mobile/iOS/Cars Mobile Sample/Cars Mobile SampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/Cars Mobile Sample/Cars Mobile SampleTests/Info.plist -------------------------------------------------------------------------------- /mobile/iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/mobile/iOS/README.md -------------------------------------------------------------------------------- /oom_pod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/oom_pod/Dockerfile -------------------------------------------------------------------------------- /oom_pod/oom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/oom_pod/oom.py -------------------------------------------------------------------------------- /prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/prometheus/Dockerfile -------------------------------------------------------------------------------- /prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/prometheus/README.md -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/prometheus/prometheus.yml -------------------------------------------------------------------------------- /scenario/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM justb4/jmeter 2 | 3 | COPY Scenario.jmx /tests/ 4 | -------------------------------------------------------------------------------- /scenario/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/scenario/README.md -------------------------------------------------------------------------------- /scenario/Scenario.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/scenario/Scenario.jmx -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- 1 | .main.tf 2 | .terraform/ 3 | *state* 4 | -------------------------------------------------------------------------------- /terraform/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/aws/eks-cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/eks-cluster.tf -------------------------------------------------------------------------------- /terraform/aws/kubernetes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/kubernetes.tf -------------------------------------------------------------------------------- /terraform/aws/monitoring.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/monitoring.tf -------------------------------------------------------------------------------- /terraform/aws/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/outputs.tf -------------------------------------------------------------------------------- /terraform/aws/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/variables.tf -------------------------------------------------------------------------------- /terraform/aws/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/versions.tf -------------------------------------------------------------------------------- /terraform/aws/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/aws/vpc.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/providers.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/terraform/variables.tf -------------------------------------------------------------------------------- /updateDeployLocalhost.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git pull 4 | mvn tomcat7:redeploy -------------------------------------------------------------------------------- /web_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/web_server/Dockerfile -------------------------------------------------------------------------------- /web_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/web_server/README.md -------------------------------------------------------------------------------- /web_server/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombatchelor/Cars_Sample_App/HEAD/web_server/nginx.conf --------------------------------------------------------------------------------