Ajustes na documentação e remanejamento dos folders

This commit is contained in:
2026-06-21 09:34:08 -03:00
parent 4df0f39834
commit 804244b39d
32 changed files with 684 additions and 378 deletions

View File

@@ -3,34 +3,34 @@ kind: Deployment
metadata:
name: mcp-gateway
labels:
app.kubernetes.io/name: mcp-gateway
app.kubernetes.io/part-of: agent-framework-oci
app: mcp-gateway
spec:
replicas: 1
replicas: 2
selector:
matchLabels:
app.kubernetes.io/name: mcp-gateway
app: mcp-gateway
template:
metadata:
labels:
app.kubernetes.io/name: mcp-gateway
app.kubernetes.io/part-of: agent-framework-oci
app: mcp-gateway
spec:
serviceAccountName: agent-framework-oci
serviceAccountName: mcp-gateway-sa
containers:
- name: mcp-gateway
image: mcp-gateway:latest
imagePullPolicy: IfNotPresent
image: registry.example.com/agent-platform/mcp-gateway:1.0.0
ports:
- containerPort: 9200
- containerPort: 8300
env:
- name: MCP_GATEWAY_CONFIG_PATH
value: /app/config/mcp_gateway.yaml
readinessProbe:
httpGet:
path: /health
port: 9200
path: /ready
port: 8300
livenessProbe:
httpGet:
path: /health
port: 9200
port: 8300
---
apiVersion: v1
kind: Service
@@ -38,8 +38,7 @@ metadata:
name: mcp-gateway
spec:
selector:
app.kubernetes.io/name: mcp-gateway
app: mcp-gateway
ports:
- name: http
port: 9200
targetPort: 9200
- port: 8300
targetPort: 8300