Skip to content

Commit 01f9568

Browse files
committed
feat: turn on production mode
1 parent ad52661 commit 01f9568

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

manifests/meilisearch.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ metadata:
2323
app.kubernetes.io/component: search-engine
2424
app.kubernetes.io/part-of: meilisearch
2525
data:
26-
MEILI_ENV: "development"
26+
MEILI_ENV: "production"
2727
MEILI_NO_ANALYTICS: "true"
2828
---
2929
# Source: meilisearch/templates/service.yaml
@@ -97,16 +97,16 @@ spec:
9797
allowPrivilegeEscalation: false
9898
capabilities:
9999
drop:
100-
- ALL
100+
- ALL
101101
readOnlyRootFilesystem: true
102102
volumeMounts:
103103
- name: tmp
104104
mountPath: /tmp
105105
- name: data
106106
mountPath: /meili_data
107107
envFrom:
108-
- configMapRef:
109-
name: meilisearch-environment
108+
- configMapRef:
109+
name: meilisearch-environment
110110
ports:
111111
- name: http
112112
containerPort: 7700
@@ -130,8 +130,7 @@ spec:
130130
port: http
131131
periodSeconds: 10
132132
initialDelaySeconds: 0
133-
resources:
134-
{}
133+
resources: {}
135134
---
136135
# Source: meilisearch/templates/tests/test-connection.yaml
137136
apiVersion: v1
@@ -147,6 +146,6 @@ spec:
147146
containers:
148147
- name: wget
149148
image: busybox
150-
command: ['wget']
151-
args: ['meilisearch:7700']
149+
command: ["wget"]
150+
args: ["meilisearch:7700"]
152151
restartPolicy: Never

0 commit comments

Comments
 (0)