├── .gitignore ├── Devoxx-2017-Spring_Boot-Kubernetes.pdf ├── LICENSE ├── README.md ├── actors ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── Dockerfile ├── config │ ├── actors-config.yaml │ ├── actors-deployment.yaml │ └── actors-svc.yaml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── docker │ │ └── assembly.xml │ ├── java │ │ └── com │ │ │ └── springdeveloper │ │ │ └── k8s │ │ │ └── actors │ │ │ ├── Actor.java │ │ │ ├── ActorRepository.java │ │ │ └── ActorsApplication.java │ └── resources │ │ ├── application-default.properties │ │ └── application-kubernetes.properties │ └── test │ └── java │ └── com │ └── springdeveloper │ └── k8s │ └── actors │ └── ActorsApplicationTests.java ├── demo-actors.adoc ├── demo-hello.adoc ├── demo-microservices.adoc ├── hello ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── Dockerfile ├── hello-deployment.yaml ├── hello-svc.yaml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── springdeveloper │ │ │ └── k8s │ │ │ └── hello │ │ │ └── HelloApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── springdeveloper │ └── k8s │ └── hello │ └── HelloApplicationTests.java └── mysql ├── mysql-deployment.yaml ├── mysql-pvc.yaml ├── mysql-secrets.yaml └── mysql-svc.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /Devoxx-2017-Spring_Boot-Kubernetes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/Devoxx-2017-Spring_Boot-Kubernetes.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/README.md -------------------------------------------------------------------------------- /actors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/.gitignore -------------------------------------------------------------------------------- /actors/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /actors/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /actors/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/Dockerfile -------------------------------------------------------------------------------- /actors/config/actors-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/config/actors-config.yaml -------------------------------------------------------------------------------- /actors/config/actors-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/config/actors-deployment.yaml -------------------------------------------------------------------------------- /actors/config/actors-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/config/actors-svc.yaml -------------------------------------------------------------------------------- /actors/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/mvnw -------------------------------------------------------------------------------- /actors/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/mvnw.cmd -------------------------------------------------------------------------------- /actors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/pom.xml -------------------------------------------------------------------------------- /actors/src/main/docker/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/docker/assembly.xml -------------------------------------------------------------------------------- /actors/src/main/java/com/springdeveloper/k8s/actors/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/java/com/springdeveloper/k8s/actors/Actor.java -------------------------------------------------------------------------------- /actors/src/main/java/com/springdeveloper/k8s/actors/ActorRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/java/com/springdeveloper/k8s/actors/ActorRepository.java -------------------------------------------------------------------------------- /actors/src/main/java/com/springdeveloper/k8s/actors/ActorsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/java/com/springdeveloper/k8s/actors/ActorsApplication.java -------------------------------------------------------------------------------- /actors/src/main/resources/application-default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/resources/application-default.properties -------------------------------------------------------------------------------- /actors/src/main/resources/application-kubernetes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/main/resources/application-kubernetes.properties -------------------------------------------------------------------------------- /actors/src/test/java/com/springdeveloper/k8s/actors/ActorsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/actors/src/test/java/com/springdeveloper/k8s/actors/ActorsApplicationTests.java -------------------------------------------------------------------------------- /demo-actors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/demo-actors.adoc -------------------------------------------------------------------------------- /demo-hello.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/demo-hello.adoc -------------------------------------------------------------------------------- /demo-microservices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/demo-microservices.adoc -------------------------------------------------------------------------------- /hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/.gitignore -------------------------------------------------------------------------------- /hello/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /hello/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/Dockerfile -------------------------------------------------------------------------------- /hello/hello-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/hello-deployment.yaml -------------------------------------------------------------------------------- /hello/hello-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/hello-svc.yaml -------------------------------------------------------------------------------- /hello/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/mvnw -------------------------------------------------------------------------------- /hello/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/mvnw.cmd -------------------------------------------------------------------------------- /hello/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/pom.xml -------------------------------------------------------------------------------- /hello/src/main/java/com/springdeveloper/k8s/hello/HelloApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/src/main/java/com/springdeveloper/k8s/hello/HelloApplication.java -------------------------------------------------------------------------------- /hello/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | endpoints.env.enabled=true 2 | -------------------------------------------------------------------------------- /hello/src/test/java/com/springdeveloper/k8s/hello/HelloApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/hello/src/test/java/com/springdeveloper/k8s/hello/HelloApplicationTests.java -------------------------------------------------------------------------------- /mysql/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/mysql/mysql-deployment.yaml -------------------------------------------------------------------------------- /mysql/mysql-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/mysql/mysql-pvc.yaml -------------------------------------------------------------------------------- /mysql/mysql-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/mysql/mysql-secrets.yaml -------------------------------------------------------------------------------- /mysql/mysql-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trisberg/devoxx-spring-boot-k8s/HEAD/mysql/mysql-svc.yaml --------------------------------------------------------------------------------