5497dfc290
- Add deployment.yaml with imagePullSecrets and env configuration - Add service.yaml with ClusterIP configuration - Configure LLM API key from Secret and other env from ConfigMap - Ensures proper image pull authentication from private registry Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
16 lines
222 B
YAML
16 lines
222 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: lpt-ai
|
|
namespace: lpt-dev
|
|
labels:
|
|
app: lpt-ai
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: lpt-ai
|
|
ports:
|
|
- port: 5199
|
|
targetPort: 5199
|
|
protocol: TCP
|