46 lines
892 B
YAML
46 lines
892 B
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: embedding-deploy
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: embedding-deploy
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
sidecar.istio.io/rewriteAppHTTPProbers: "true"
|
|
labels:
|
|
app: embedding-deploy
|
|
spec:
|
|
hostIPC: true
|
|
containers:
|
|
- envFrom:
|
|
- configMapRef:
|
|
name: qna-config
|
|
image: opea/embedding-tei:latest
|
|
imagePullPolicy: IfNotPresent
|
|
name: embedding-deploy
|
|
args:
|
|
ports:
|
|
- containerPort: 6000
|
|
serviceAccountName: default
|
|
---
|
|
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: embedding-svc
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: embedding-deploy
|
|
ports:
|
|
- name: service
|
|
port: 6000
|
|
targetPort: 6000
|