├── .gitignore ├── LICENSE ├── README.md └── demoweb ├── .dockerignore ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── Dockerfile.graalvm ├── Jenkinsfile ├── charts └── springboot-demoweb │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── docker-compose.yml ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── example │ │ └── demoweb │ │ ├── DemowebApplication.java │ │ └── DemowebController.java └── resources │ └── application.properties └── test └── java └── com └── example └── demoweb └── DemowebApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/README.md -------------------------------------------------------------------------------- /demoweb/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/.dockerignore -------------------------------------------------------------------------------- /demoweb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/.gitignore -------------------------------------------------------------------------------- /demoweb/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demoweb/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demoweb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/Dockerfile -------------------------------------------------------------------------------- /demoweb/Dockerfile.graalvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/Dockerfile.graalvm -------------------------------------------------------------------------------- /demoweb/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/Jenkinsfile -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/.helmignore -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/Chart.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/NOTES.txt -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/_helpers.tpl -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/deployment.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/hpa.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/ingress.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/service.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /demoweb/charts/springboot-demoweb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/charts/springboot-demoweb/values.yaml -------------------------------------------------------------------------------- /demoweb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/docker-compose.yml -------------------------------------------------------------------------------- /demoweb/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/mvnw -------------------------------------------------------------------------------- /demoweb/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/mvnw.cmd -------------------------------------------------------------------------------- /demoweb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/pom.xml -------------------------------------------------------------------------------- /demoweb/src/main/java/com/example/demoweb/DemowebApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/src/main/java/com/example/demoweb/DemowebApplication.java -------------------------------------------------------------------------------- /demoweb/src/main/java/com/example/demoweb/DemowebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/src/main/java/com/example/demoweb/DemowebController.java -------------------------------------------------------------------------------- /demoweb/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demoweb/src/test/java/com/example/demoweb/DemowebApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binblee/springboot-helm-chart/HEAD/demoweb/src/test/java/com/example/demoweb/DemowebApplicationTests.java --------------------------------------------------------------------------------