Skip to content

Commit

Permalink
turn off liveness probe
Browse files Browse the repository at this point in the history
  • Loading branch information
omnipresent07 committed Nov 9, 2020
1 parent c95fbe0 commit db618b2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
3 changes: 2 additions & 1 deletion institutions-api/src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
include "persistence.conf"

akka {
log-level = INFO
stdout-loglevel = "WARNING"
loglevel = "INFO"
}

akka.http.host-connection-pool.response-entity-subscription-timeout = 100.seconds
Expand Down
16 changes: 8 additions & 8 deletions kubernetes/beta/institutions-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ spec:
- name: {{ .Values.service.name }}
containerPort: 9092
protocol: {{ .Values.service.protocol }}
livenessProbe:
httpGet:
path: /
port: {{ .Values.service.port }}
readinessProbe:
httpGet:
path: /
port: {{ .Values.service.port }}
# livenessProbe:
# httpGet:
# path: /
# port: {{ .Values.service.port }}
# readinessProbe:
# httpGet:
# path: /
# port: {{ .Values.service.port }}
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
16 changes: 8 additions & 8 deletions kubernetes/institutions-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ spec:
- name: {{ .Values.service.name }}
containerPort: 9092
protocol: {{ .Values.service.protocol }}
livenessProbe:
httpGet:
path: /
port: {{ .Values.service.port }}
readinessProbe:
httpGet:
path: /
port: {{ .Values.service.port }}
# livenessProbe:
# httpGet:
# path: /
# port: {{ .Values.service.port }}
# readinessProbe:
# httpGet:
# path: /
# port: {{ .Values.service.port }}
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- with .Values.nodeSelector }}
Expand Down

0 comments on commit db618b2

Please sign in to comment.