spring: application: name: "%APP_NAME%" version: "%APP_VERSION%" build: time: "%APP_BUILD_TIME%" os: name: "%APP_BUILD_OS_NAME%" version: "%APP_BUILD_OS_VERSION%" profiles: active: develop management: endpoint: health: access: read_only show-details: always info: access: read_only endpoints: access: default: none web: exposure: include: "health,info" --- ########################### ### Develop environment ### ########################### spring: config: activate: on-profile: develop --- ########################## ### Docker environment ### ########################## spring: config: activate: on-profile: docker --- ############################## ### Kubernetes environment ### ############################## spring: config: activate: on-profile: kubernetes