diff --git a/NOTICE b/NOTICE index f0250477c59e921ee0067fcbfed5872f6a2c4add..15e6babcd8b37d30f30196e02493b8f19b5ed847 100644 --- a/NOTICE +++ b/NOTICE @@ -499,13 +499,6 @@ The following software have components provided under the terms of this license: - Jakarta XML Binding API (from https://repo1.maven.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api, https://repo1.maven.org/maven2/org/jboss/spec/javax/xml/bind/jboss-jaxb-api_2.3_spec) - Old JAXB Core (from <https://eclipse-ee4j.github.io/jaxb-ri/>, https://eclipse-ee4j.github.io/jaxb-ri/, https://repo1.maven.org/maven2/com/sun/xml/bind/jaxb-impl) -======================================================================== -GPL-2.0-only -======================================================================== -The following software have components provided under the terms of this license: - -- javax.annotation API (from http://jcp.org/en/jsr/detail?id=250) - ======================================================================== GPL-2.0-with-classpath-exception ======================================================================== diff --git a/devops/core-plus/deploy/templates/deployment.yaml b/devops/core-plus/deploy/templates/deployment.yaml index 9ec2f907d58345bff4821e38f01ced4a199f052c..371fc6d64f504b8302089fa67bc7f5c50ed64d47 100644 --- a/devops/core-plus/deploy/templates/deployment.yaml +++ b/devops/core-plus/deploy/templates/deployment.yaml @@ -30,11 +30,16 @@ spec: livenessProbe: failureThreshold: 3 httpGet: - path: api/notification/v1/_ah/warmup - port: 8080 - scheme: HTTP + path: /health/liveness + port: 8081 initialDelaySeconds: 120 periodSeconds: 10 + readinessProbe: + failureThreshold: 2 + httpGet: + path: /health/readiness + port: 8081 + periodSeconds: 15 envFrom: - configMapRef: name: {{ .Values.conf.configmap | quote }} diff --git a/devops/gc/deploy/templates/deployment.yaml b/devops/gc/deploy/templates/deployment.yaml index d5187b34f82ae6e48ca972f8116605a1b60221f2..0d6a0cb20c10f4824b1d4922e112ad042daa23f5 100644 --- a/devops/gc/deploy/templates/deployment.yaml +++ b/devops/gc/deploy/templates/deployment.yaml @@ -30,11 +30,16 @@ spec: livenessProbe: failureThreshold: 3 httpGet: - path: api/notification/v1/_ah/warmup - port: 8080 - scheme: HTTP + path: /health/liveness + port: 8081 initialDelaySeconds: 120 periodSeconds: 10 + readinessProbe: + failureThreshold: 2 + httpGet: + path: /health/readiness + port: 8081 + periodSeconds: 15 envFrom: - configMapRef: name: {{ .Values.conf.configmap | quote}}