Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ kind: Ingress
metadata:
name: main-app
namespace: credreg-prod
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "10m"
spec:
ingressClassName: nginx
tls:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ metadata:
spec:
serviceName: elasticsearch-discovery
replicas: 2
podManagementPolicy: Parallel
selector:
matchLabels:
app: elasticsearch
Expand Down Expand Up @@ -55,13 +56,15 @@ spec:
port: 9200
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 10
failureThreshold: 3
livenessProbe:
httpGet:
path: /_cluster/health
port: 9200
initialDelaySeconds: 120
periodSeconds: 20
timeoutSeconds: 10
failureThreshold: 5
env:
- name: ES_JAVA_OPTS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
app: elasticsearch
spec:
serviceName: elasticsearch-discovery
replicas: 2
replicas: 1
selector:
matchLabels:
app: elasticsearch
Expand Down Expand Up @@ -51,8 +51,8 @@ spec:
value: "false"
- name: network.host
value: "0.0.0.0"
- name: discovery.seed_hosts
value: "elasticsearch-discovery"
- name: discovery.type
value: "single-node"
volumeMounts:
- name: elasticsearch-data
mountPath: /usr/share/elasticsearch/data
Expand Down

This file was deleted.

This file was deleted.

Loading