├── Dockerfile ├── README.md ├── deployment.yaml ├── pom.xml ├── service.yaml └── src ├── main ├── java │ └── com │ │ └── javatechie │ │ └── k8s │ │ └── SpringbootK8sDemoApplication.java └── resources │ ├── application.properties │ └── deployment.yaml └── test └── java └── com └── javatechie └── k8s └── SpringbootK8sDemoApplicationTests.java /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # springboot-k8s-yaml -------------------------------------------------------------------------------- /deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/deployment.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/pom.xml -------------------------------------------------------------------------------- /service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/service.yaml -------------------------------------------------------------------------------- /src/main/java/com/javatechie/k8s/SpringbootK8sDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/src/main/java/com/javatechie/k8s/SpringbootK8sDemoApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/src/main/resources/deployment.yaml -------------------------------------------------------------------------------- /src/test/java/com/javatechie/k8s/SpringbootK8sDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Java-Techie-jt/springboot-k8s-yaml/HEAD/src/test/java/com/javatechie/k8s/SpringbootK8sDemoApplicationTests.java --------------------------------------------------------------------------------