├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── Jenkinsfile ├── README.md ├── deploymentservice.yaml ├── kubernetes-cd.hpi ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── javatechie │ │ └── DevopsIntegrationApplication.java └── resources │ ├── application.properties │ └── application.yml └── test └── java └── com └── javatechie └── DevopsIntegrationApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # devops-automation 2 | -------------------------------------------------------------------------------- /deploymentservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/deploymentservice.yaml -------------------------------------------------------------------------------- /kubernetes-cd.hpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/kubernetes-cd.hpi -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/javatechie/DevopsIntegrationApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/src/main/java/com/javatechie/DevopsIntegrationApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/test/java/com/javatechie/DevopsIntegrationApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/devops-automation/HEAD/src/test/java/com/javatechie/DevopsIntegrationApplicationTests.java --------------------------------------------------------------------------------