13 lines
306 B
YAML
13 lines
306 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: meilisearch
|
|
spec:
|
|
selector:
|
|
io.kompose.service: meilisearch
|
|
ports:
|
|
- protocol: TCP
|
|
port: 7700 # Default Meilisearch HTTP port
|
|
targetPort: 7700 # Port on the container
|
|
type: ClusterIP # or ClusterIP depending on the use case
|
|
|