Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Configuring Spring Boot on Kubernetes with ConfigMap

October 3, 2017
Kamesh Sampath
Related topics:
JavaKubernetesMicroservicesSpring Boot
Related products:
Red Hat OpenShift Container Platform

    ConfigMaps is the Kubernetes counterpart of the Spring Boot externalized configuration. ConfigMaps is a simple key/value store, which can store simple values to files. In this post  "Configuring Spring Boot on Kubernetes with ConfigMap",  we will see how to use ConfigMaps to externalize the application configuration.

    One of the ways configuring the spring boot application on kubernetes is to use ConfigMaps. ConfigMaps is a way to decouple the application specific artifacts from the container image, thereby enabling better portability and externalization.

    The sources of this blog post are available in my github repo. In this blog post, we will build simple GreeterApplication, which exposes a REST API to greet the user. The GreeterApplication will use ConfigMaps to externalize the application properties.

    Setup

    You might need access to Kubernetes Cluster to play with this application. The easiest way to get local Kubernetes cluster up and running is using minikube. The rest of the blog assumes you have minikube up and running.

    There are two ways to use ConfigMaps,

    1. ConfigMaps as Environment variables
    2. Mounting ConfigMaps as files

    ConfigMaps as Environment variables

    Assuming you have cloned my github repo, let's refer to the cloned location of the source code as $PROJECT_HOME throughout this document.

    You will notice that com.redhat.developers.GreeterController has a code to look up an environment variable GREETER_PREFIX.

    package com.redhat.developers;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    @Slf4j
    public class GreeterController {
    
        @Value("${greeter.message}")
        private String greeterMessageFormat; 
    
        @GetMapping("/greet/{user}")
        public String greet(@PathVariable("user") String user) {
            String prefix = System.getenv().getOrDefault("GREETING_PREFIX", "Hi");
            log.info("Prefix :{} and User:{}", prefix, user);
            if (prefix == null) {
                prefix = "Hello!";
            }
    
            return String.format(greeterMessageFormat, prefix, user);
        }
    }

    By convention Spring Boot applications rather any Java applications passes these kind values via system properties. Let us now see how we can do the same with Kubernetes deployment.

    • Let's create a Kubernetes ConfigMaps to hold the property called greeter.prefix, which will then be injected into the Kubernetes deployment via an environment variable called GREETER_PREFIX.        

    Create ConfigMap          

    kubectl create configmap spring-boot-configmaps-demo --from-literal=greeter.prefix="Hello"
    •  You can see the contents of the ConfigMap using the command kubectl get configmap spring-boot-configmaps-demo-oyaml

    Create Fragment deployment.yaml

    Once we have the Kubernetes ConfigMaps created, we then need to inject the GREETER_PREFIX as an environment variable into the Kubernetes deployment. The following code snippet shows how to define an environment variable in a kubernetes deployment.yaml.

    spec:
      template:
        spec:
          containers:
            - env:
              - name: GREETING_PREFIX
                valueFrom:
                 configMapKeyRef:
                    name: spring-boot-configmaps-demo
                    key: greeter.prefix
    • The above snippet defines an environment variable called GREETING_PREFIX which will have its value set from ConfigMap spring-boot-configmaps-demo key greeter.prefix.

    NOTE:

    As the application is configured to use fabric8-maven-plugin, we can create Kubernetes deployment and service as fragments in '$PROJECT_HOME/src/main/fabric8'. The fabric8-maven-plugin takes care of building the complete Kubernetes manifests by merging the contents of the fragment(s) from '$PROJECT_HOME/src/main/fabric8' during deployment.

    Deploy Application

    To deploy the application, execute the following command from the $PROJECT_HOME ./mvnw clean fabric8:deploy.

    Access Application

    The application status can be checked with command, kubectl get pods -w once the application is deployed, let's do a simple curl like curl $(minikube service spring-boot-configmaps-demo --url)/greet/jerry; echo ""; command will return a message  Hello jerry! Welcome to Configuring Spring Boot on Kubernetes! The return message has a prefix called "Hello", which we had injected via the environment variable GREETING_PREFIX  with the value from the ConfigMap property "greeter.prefix".

    Mounting  ConfigMaps as files

    Kubernetes ConfigMaps also allows us to load a file as a ConfigMap property. That gives us an interesting option of loading the Spring Boot application.properties via Kubernetes ConfigMaps.

    To be able to load application.properties via ConfigMaps, we need to mount the ConfigMaps as the volume inside the Spring Boot application container.

    Update application.properties

    greeter.message=%s %s! Spring Boot application.properties has been mounted as volume on Kubernetes!

    Create ConfigMap from file

    kubectl create configmap spring-app-config --from-file=src/main/resources/application.properties

    The command above will create a configmap called spring-app-config with the application.properties file stored as one of the properties.

    The sample output ofkubectl get configmap spring-app-config -o yaml is shown below.

    apiVersion: v1
    data:
      application.properties: greeter.message=%s %s! Spring Boot application.properties has been mounted as volume on Kubernetes!
        on Kubernetes!
    kind: ConfigMap
    metadata:
      creationTimestamp: 2017-09-19T04:45:27Z
      name: spring-app-config
      namespace: default
      resourceVersion: "53471"
      selfLink: /api/v1/namespaces/default/configmaps/spring-app-config
      uid: 5bac774a-9cf5-11e7-9b8d-080027da6995

    Modifying GreeterController

    package com.redhat.developers;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    @Slf4j
    public class GreeterController {
    
        @Value("${greeter.message}")
        private String greeterMessageFormat; 
    
        @GetMapping("/greet/{user}")
        public String greet(@PathVariable("user") String user) {
            String prefix = System.getenv().getOrDefault("GREETING_PREFIX", "Hi");
            log.info("Prefix :{} and User:{}", prefix, user);
            if (prefix == null) {
                prefix = "Hello!";
            }
    
            return String.format(greeterMessageFormat, prefix, user);
        }
    }

    Update Fragment deployment.yaml

    Update the deployment.yaml to add the volume mounts that will allow us to mount the application.properties under /deployments/config.

    spec:
      template:
        spec:
          containers:
            - env:
              - name: GREETING_PREFIX
                valueFrom:
                 configMapKeyRef:
                    name: spring-boot-configmaps-demo
                    key: greeter.prefix
              volumeMounts:
              - name: application-config 
                mountPath: "/deployments/config" 
                readOnly: true
          volumes:
          - name: application-config
            configMap:
              name: spring-app-config 
              items:
              - key: application.properties 
                path: application.properties

    Let's deploy and access the application like how we did earlier, but this time the response will be using the application.properties from ConfigMaps.

    The Spring Boot and Kubernetes Series

    How to Configure the Spring Boot Application on Kubernetes

    Part I: Configuring Spring Boot on Kubernetes with ConfigMap

    Part II: Configuring Spring Boot Kubernetes Secrets

    Last updated: May 30, 2023

    Recent Posts

    • MCP servers vs. skills: Choosing the right context for your AI

    • How to route external and local LLMs with Models-as-a-Service

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.