Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 593 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 593 Bytes

Docker commands

  • docker build -t weather-client .
  • docker run --rm -it -p 8080:80/tcp weather-client:latest

Helm

  • Helm Create
  • helm package .
  • helm -n weather install weather-forecast-server ./weather-forecast-server-0.1.0.tgz

Endpoints

  • /actuator/health

HOWTOs

Helm chart liveness & readiness:

livenessProbe:
            httpGet:
              path: /actuator/health/liveness
              port: http
          readinessProbe:
            httpGet:
              path: /actuator/health/readiness
              port: http