The purpose of this application is to provide a simple container image that can be referenced in courses, without relying on images outside the Tanzu Learning team. It is built using the new native compilation features of Spring Boot, so start-up times are very small.
It provides the following endpoints:
/
- just responds withOK
, but can be over-ridden using theOK_MESSAGE
environment variable./echo
- a GET to this with a query-parameter ofmessage
echoes back the supplied message/echo
- a POST to this echoes back the body contents/env
- responds with a JSON map of current environment variable settings/hello
- responds with a canned greeting message, which can be over-ridden using theHELLO_MESSAGE
environment variable./status/<CODE>
- response with a status of the given code value, and matching message.
In addition:
/actuator
- exposes the full range of actuator endpoints- Liveness and readiness endpoints are also exposed on
/livez
and/readyz
, respectively.
Copyright © 2023, 2024 Broadcom Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.