# springboot-helm-chart **Repository Path**: spafka/springboot-helm-chart ## Basic Information - **Project Name**: springboot-helm-chart - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-11 - **Last Updated**: 2021-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Spring Boot Application Helm Chart Example ## Build and push docker image Rename ```image``` in demoweb/docker-compose.yml. ```yaml build: context: . image: binblee/springboot-helm-chart ``` Build docker image use docker-compose command. ``` cd demoweb docker-compose build docker push xxxx ``` If you prefer classic docker command line, run these: ``` cd demoweb docker build -t xxxx . docker push xxxx ``` ## Deploy using helm Rename image ```image.repository``` and ```tag``` in demoweb/charts/values.yaml. ```yaml image: repository: binblee/springboot-helm-chart tag: openjdk-9-jre ``` You should have a running Kubernetes cluster and [helm installed](https://docs.helm.sh/using_helm/#installing-helm) before proceed. Deploy application using helm. ``` cd demoweb/charts helm install -n springboot-demo springboot-demoweb/ ```