diff --git a/.k8s/deployment-server.yaml b/.k8s/deployment-server.yaml index 34ed45ea..41c2cda3 100644 --- a/.k8s/deployment-server.yaml +++ b/.k8s/deployment-server.yaml @@ -39,18 +39,18 @@ spec: httpGet: path: /actuator/health port: 8080 - initialDelaySeconds: 10 + initialDelaySeconds: 30 timeoutSeconds: 2 periodSeconds: 3 failureThreshold: 1 livenessProbe: - httpGet: - path: /actuator/health - port: 8080 - initialDelaySeconds: 20 - timeoutSeconds: 2 - periodSeconds: 8 - failureThreshold: 1 + httpGet: + path: /actuator/health + port: 8080 + initialDelaySeconds: 30 + timeoutSeconds: 2 + periodSeconds: 8 + failureThreshold: 1 - name: cloudsql-proxy image: gcr.io/cloudsql-docker/gce-proxy:1.14 command: ["/cloud_sql_proxy", diff --git a/client/src/components/LandingPage.vue b/client/src/components/LandingPage.vue index 2eddcfe1..c9ea981f 100644 --- a/client/src/components/LandingPage.vue +++ b/client/src/components/LandingPage.vue @@ -7,6 +7,7 @@ src="../assets/logo.png" aspect-ratio="1.7" style="vertical-align: middle" + height="140" /> Schnell. Einfach. Zuverlässig. @@ -36,12 +37,10 @@
-
diff --git a/client/src/components/ViewAllDataComponent.vue b/client/src/components/ViewAllDataComponent.vue index e069bf78..91dd71fd 100644 --- a/client/src/components/ViewAllDataComponent.vue +++ b/client/src/components/ViewAllDataComponent.vue @@ -26,16 +26,17 @@ // TestStationen Ordnen ProbeIds und durchzuführrende Tests den Patienten zu diff --git a/server/src/main/java/de/coronavirus/imis/App.java b/server/src/main/java/de/coronavirus/imis/App.java index 31dfce12..ea9c29e4 100644 --- a/server/src/main/java/de/coronavirus/imis/App.java +++ b/server/src/main/java/de/coronavirus/imis/App.java @@ -21,7 +21,7 @@ public WebMvcConfigurer corsConfigurer() { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") - .allowedOrigins("https://imis-prototyp.de", "http://localhost:8080") + .allowedOrigins("https://imis-prototyp.de", "http://imis-prototyp.de", "http://localhost:8080") .allowedMethods("GET", "POST", "PUT", "DELETE"); } }; diff --git a/server/src/main/resources/application.yml b/server/src/main/resources/application.yml index d8c64b35..4d57b1ab 100644 --- a/server/src/main/resources/application.yml +++ b/server/src/main/resources/application.yml @@ -33,6 +33,9 @@ spring: gcp: credentials: location: file:/usr/local/cloud-store/credentials.json +management: + server: + port: 8081 --- spring: profiles: test