├── .editorconfig ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.adoc ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── fabric8 │ ├── deployment.yaml │ └── svc.yaml ├── java │ └── com │ │ └── redhat │ │ └── developers │ │ ├── GreeterController.java │ │ └── KubernetesSpringBootDemosConfigMapsDemoApplication.java └── resources │ └── application.properties └── test └── java └── com └── redhat └── developers └── KubernetesSpringBootDemosConfigMapsDemoApplicationTests.java /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/README.adoc -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/fabric8/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/src/main/fabric8/deployment.yaml -------------------------------------------------------------------------------- /src/main/fabric8/svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | spec: 4 | type: NodePort -------------------------------------------------------------------------------- /src/main/java/com/redhat/developers/GreeterController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/src/main/java/com/redhat/developers/GreeterController.java -------------------------------------------------------------------------------- /src/main/java/com/redhat/developers/KubernetesSpringBootDemosConfigMapsDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/src/main/java/com/redhat/developers/KubernetesSpringBootDemosConfigMapsDemoApplication.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/test/java/com/redhat/developers/KubernetesSpringBootDemosConfigMapsDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/spring-boot-configmaps-demo/HEAD/src/test/java/com/redhat/developers/KubernetesSpringBootDemosConfigMapsDemoApplicationTests.java --------------------------------------------------------------------------------