diff --git a/deployment/kubernetes/weather-api.yaml b/deployment/kubernetes/weather-api.yaml index 4240df7..0216b04 100644 --- a/deployment/kubernetes/weather-api.yaml +++ b/deployment/kubernetes/weather-api.yaml @@ -14,7 +14,7 @@ spec: app: weather-api spec: containers: - - image: ghcr.io/openearthplatforminitiative/weather-api:0.0.8 + - image: ghcr.io/openearthplatforminitiative/weather-api:0.0.9 name: weather-api ports: - containerPort: 8080 @@ -22,7 +22,7 @@ spec: - name: API_ROOT_PATH value: "/weather" - name: VERSION - value: "0.0.8" + value: "0.0.9" --- apiVersion: v1 kind: Service diff --git a/weather_api/config.py b/weather_api/config.py index bfec3f9..bb50357 100644 --- a/weather_api/config.py +++ b/weather_api/config.py @@ -9,7 +9,7 @@ class Settings(BaseSettings): api_root_path: str = "/" met_api_url: str = "https://api.met.no/weatherapi" - api_description: str = "This is a RESTful service that provides accurate and up-to-date weather information based on data sourced from api.met.no." + api_description: str = 'This is a RESTful service that provides accurate and up-to-date weather information based on data sourced from https://api.met.no.
The data are freely available for use under a Creative Commons license.' settings = Settings()