Compare commits
24 Commits
codex/regr
...
oldcluster
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c72fd9b72a | ||
|
|
6e9ae07869 | ||
|
|
9c2c9810d8 | ||
|
|
204001a89d | ||
|
|
6950010ea4 | ||
|
|
b28ab73a19 | ||
|
|
09398d451f | ||
|
|
3a7978ab1f | ||
|
|
c0bfcb46fa | ||
|
|
ebbf501038 | ||
|
|
d4f24f6f43 | ||
|
|
9f4805f1d6 | ||
|
|
b9a81fb4c0 | ||
|
|
a4ccd30429 | ||
|
|
09b22e32c2 | ||
|
|
5bb136554d | ||
|
|
485710230b | ||
|
|
f016375419 | ||
|
|
fc64638029 | ||
|
|
6b751b0fbe | ||
|
|
a03dbe166d | ||
|
|
6febe1fdb3 | ||
|
|
40fd35ba44 | ||
|
|
17654835e7 |
@@ -153,6 +153,17 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
itemPath: "vaults/IAmWorkin/items/FlowerCore DMS MCP Keys"
|
itemPath: "vaults/IAmWorkin/items/FlowerCore DMS MCP Keys"
|
||||||
|
|
||||||
|
---
|
||||||
|
# FlowerCore MCP Gateway key. Agent Zero advertises only fc_gateway so product
|
||||||
|
# tool schemas are discovered on demand instead of dumped into the prompt.
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: gateway-mcp-keys
|
||||||
|
namespace: agent-zero
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore Gateway MCP Keys"
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
@@ -266,31 +277,11 @@ spec:
|
|||||||
MODELCFG
|
MODELCFG
|
||||||
# Strip heredoc indentation
|
# Strip heredoc indentation
|
||||||
sed -i 's/^ //' /a0/usr/plugins/_model_config/config.json
|
sed -i 's/^ //' /a0/usr/plugins/_model_config/config.json
|
||||||
# Phase 0 Chat MCP pilot: Agent Zero does not interpolate env vars
|
# Agent Zero does not interpolate env vars inside
|
||||||
# inside A0_SET_mcp_servers JSON, so build the final JSON here from
|
# A0_SET_mcp_servers JSON, so build the final JSON here from the
|
||||||
# the secret-backed env vars before initialize.sh. Keep the local
|
# secret-backed gateway key before initialize.sh.
|
||||||
# corpus_search.py tool mounted either way so outage fallback
|
|
||||||
# remains available even when fc_knowledge is not advertised.
|
|
||||||
export KNOWLEDGE_MCP_ENABLED=false
|
|
||||||
if [ -n "${KNOWLEDGE_MCP_BEARER_TOKEN:-}" ]; then
|
|
||||||
if curl -sf --connect-timeout 3 "${KNOWLEDGE_MCP_HEALTH_URL}" > /dev/null && \
|
|
||||||
curl -sf --connect-timeout 5 \
|
|
||||||
-H "Authorization: Bearer ${KNOWLEDGE_MCP_BEARER_TOKEN}" \
|
|
||||||
-H "Accept: application/json, text/event-stream" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d '{"jsonrpc":"2.0","id":"fc-knowledge-bootstrap","method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"agent-zero-bootstrap","version":"1.0"}}}' \
|
|
||||||
"${KNOWLEDGE_MCP_URL}" > /dev/null; then
|
|
||||||
export KNOWLEDGE_MCP_ENABLED=true
|
|
||||||
echo "fc_knowledge enabled from ${KNOWLEDGE_MCP_URL}."
|
|
||||||
else
|
|
||||||
echo "fc_knowledge unavailable or unauthorized; keeping local corpus_search.py as the fallback path."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "fc_knowledge token missing; keeping local corpus_search.py as the fallback path."
|
|
||||||
fi
|
|
||||||
|
|
||||||
export A0_SET_mcp_servers="$(
|
export A0_SET_mcp_servers="$(
|
||||||
python3 -c 'import json, os; servers = {}; chat_key = os.getenv("CHAT_MCP_API_KEY"); knowledge_enabled = os.getenv("KNOWLEDGE_MCP_ENABLED", "false").lower() == "true"; token = os.getenv("KNOWLEDGE_MCP_BEARER_TOKEN", "") if knowledge_enabled else ""; chat_key and servers.setdefault("fc_chat", {"type": "streamable-http", "url": "http://chat-web.fc-chat.svc/mcp", "headers": {"X-Api-Key": chat_key}}); token and servers.setdefault("fc_knowledge", {"type": "streamable-http", "url": os.getenv("KNOWLEDGE_MCP_URL", "http://knowledge-web.knowledge.svc/mcp"), "headers": {"Authorization": f"Bearer {token}"}}); dms_key = os.getenv("DMS_MCP_API_KEY"); dms_key and servers.setdefault("fc_dms", {"type": "streamable-http", "url": os.getenv("DMS_MCP_URL", "http://dms-web.fc-dms.svc/mcp"), "headers": {"X-Api-Key": dms_key}}); print(json.dumps({"mcpServers": servers}, separators=(",", ":")))'
|
python3 -c 'import json, os; key=os.getenv("GATEWAY_MCP_API_KEY"); url=os.getenv("GATEWAY_MCP_URL", "http://fc-gateway.fc-gateway.svc/mcp"); servers={"fc_gateway":{"type":"streamable-http","url":url,"headers":{"X-Api-Key":key}}} if key else {}; print(json.dumps({"mcpServers": servers}, separators=(",", ":")))'
|
||||||
)"
|
)"
|
||||||
# Run the original entrypoint
|
# Run the original entrypoint
|
||||||
exec /exe/initialize.sh $BRANCH
|
exec /exe/initialize.sh $BRANCH
|
||||||
@@ -372,6 +363,14 @@ spec:
|
|||||||
value: "http://fc-llm-bridge.fc-llm-bridge.svc:8080"
|
value: "http://fc-llm-bridge.fc-llm-bridge.svc:8080"
|
||||||
- name: FLOWERCORE_AGENTZERO_OLLAMA_URL
|
- name: FLOWERCORE_AGENTZERO_OLLAMA_URL
|
||||||
value: "http://fc-llm-bridge.fc-llm-bridge.svc:8080"
|
value: "http://fc-llm-bridge.fc-llm-bridge.svc:8080"
|
||||||
|
# FlowerCore.Mcp.Gateway — single MCP fan-in for product tools.
|
||||||
|
- name: GATEWAY_MCP_URL
|
||||||
|
value: "http://fc-gateway.fc-gateway.svc/mcp"
|
||||||
|
- name: GATEWAY_MCP_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: gateway-mcp-keys
|
||||||
|
key: credential
|
||||||
# Agent profile — Blue Jay personality, tools, and system prompt
|
# Agent profile — Blue Jay personality, tools, and system prompt
|
||||||
- name: A0_SET_agent_profile
|
- name: A0_SET_agent_profile
|
||||||
value: "bluejay"
|
value: "bluejay"
|
||||||
@@ -678,6 +677,17 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
- port: 8080
|
- port: 8080
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
# FlowerCore.Mcp.Gateway — Agent Zero advertises this single MCP server;
|
||||||
|
# the gateway performs backend search and invokes product MCP tools.
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-gateway
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
# Allow internet (for kubectl image pull, etc)
|
# Allow internet (for kubectl image pull, etc)
|
||||||
- to:
|
- to:
|
||||||
- ipBlock:
|
- ipBlock:
|
||||||
|
|||||||
@@ -47,6 +47,8 @@ data:
|
|||||||
FlowerCore__AI__Skills__Library__LibraryApiUrl: "http://library-web.fc-library.svc.cluster.local"
|
FlowerCore__AI__Skills__Library__LibraryApiUrl: "http://library-web.fc-library.svc.cluster.local"
|
||||||
FlowerCore__AI__Skills__Retail__RetailApiUrl: "http://retail-web.fc-retail.svc.cluster.local"
|
FlowerCore__AI__Skills__Retail__RetailApiUrl: "http://retail-web.fc-retail.svc.cluster.local"
|
||||||
FlowerCore__AI__Skills__Intranet__IntranetBaseUrl: "http://intranet-web.intranet.svc.cluster.local"
|
FlowerCore__AI__Skills__Intranet__IntranetBaseUrl: "http://intranet-web.intranet.svc.cluster.local"
|
||||||
|
FlowerCore__AI__Skills__Intranet__SearchBaseUrl: "https://intranet.iamworkin.lan"
|
||||||
|
FlowerCore__AI__Skills__Intranet__PublicBaseUrl: "https://intranet.iamworkin.lan"
|
||||||
FlowerCore__AI__Skills__Print__PrintMcpBaseUrl: "http://10.0.57.16:5200"
|
FlowerCore__AI__Skills__Print__PrintMcpBaseUrl: "http://10.0.57.16:5200"
|
||||||
FlowerCore__AI__Helpdesk__SentimentEscalation__Enabled: "true"
|
FlowerCore__AI__Helpdesk__SentimentEscalation__Enabled: "true"
|
||||||
FlowerCore__AI__IrcBridge__Enabled: "true"
|
FlowerCore__AI__IrcBridge__Enabled: "true"
|
||||||
@@ -123,7 +125,7 @@ spec:
|
|||||||
fsGroupChangePolicy: OnRootMismatch
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
containers:
|
containers:
|
||||||
- name: chat-web
|
- name: chat-web
|
||||||
image: localhost/fc-chat-web:v20260614-regroup-ch3-0479a31
|
image: localhost/fc-chat-web:v20260616-circuit-mood-5711f2d
|
||||||
imagePullPolicy: Never
|
imagePullPolicy: Never
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
|
|||||||
@@ -26,6 +26,17 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
itemPath: "vaults/IAmWorkin/items/dns-oidc-client"
|
itemPath: "vaults/IAmWorkin/items/dns-oidc-client"
|
||||||
---
|
---
|
||||||
|
# Service X-Api-Key for the cert-manager ACME webhook -> dns-web call path.
|
||||||
|
# The 1Password operator resolves this item into Secret/dns-api-keys; field
|
||||||
|
# `api_key` becomes Secret key `api_key`.
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: dns-api-keys
|
||||||
|
namespace: fc-dns
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore DNS API Keys"
|
||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
@@ -48,7 +59,7 @@ data:
|
|||||||
{
|
{
|
||||||
"FlowerCore": {
|
"FlowerCore": {
|
||||||
"Auth": {
|
"Auth": {
|
||||||
"Enabled": false,
|
"Enabled": true,
|
||||||
"Oidc": {
|
"Oidc": {
|
||||||
"Enabled": true,
|
"Enabled": true,
|
||||||
"Audience": "dns",
|
"Audience": "dns",
|
||||||
@@ -63,7 +74,7 @@ data:
|
|||||||
},
|
},
|
||||||
"Tenant": {
|
"Tenant": {
|
||||||
"DefaultTenantId": "default",
|
"DefaultTenantId": "default",
|
||||||
"JwtClaimsEnabled": false,
|
"JwtClaimsEnabled": true,
|
||||||
"DefaultTenantHosts": [
|
"DefaultTenantHosts": [
|
||||||
"dns.iamworkin.lan"
|
"dns.iamworkin.lan"
|
||||||
]
|
]
|
||||||
@@ -74,6 +85,13 @@ data:
|
|||||||
"Distribution": "Warn"
|
"Distribution": "Warn"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"Dns": {
|
||||||
|
"RateLimits": {
|
||||||
|
"PermitLimit": 60,
|
||||||
|
"WindowSeconds": 60,
|
||||||
|
"QueueLimit": 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -111,7 +129,7 @@ spec:
|
|||||||
fsGroup: 1654
|
fsGroup: 1654
|
||||||
containers:
|
containers:
|
||||||
- name: dns-web
|
- name: dns-web
|
||||||
image: localhost/fc-dns-web:v20260614-wave5-isolation-6124856
|
image: localhost/fc-dns-web:v20260616-dn-current-3626f04
|
||||||
imagePullPolicy: Never
|
imagePullPolicy: Never
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
@@ -148,8 +166,22 @@ spec:
|
|||||||
name: dns-oidc-client
|
name: dns-oidc-client
|
||||||
key: client_secret
|
key: client_secret
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: FlowerCore__Auth__ApiKey
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: dns-api-keys
|
||||||
|
key: api_key
|
||||||
|
optional: true
|
||||||
|
- name: FlowerCore__Mcp__ApiKey__Key
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: dns-api-keys
|
||||||
|
key: api_key
|
||||||
|
optional: true
|
||||||
|
- name: FlowerCore__Mcp__ServiceName
|
||||||
|
value: flowercore.dns
|
||||||
- name: FlowerCore__Auth__Enabled
|
- name: FlowerCore__Auth__Enabled
|
||||||
value: "false"
|
value: "true"
|
||||||
- name: FlowerCore__Auth__Oidc__Enabled
|
- name: FlowerCore__Auth__Oidc__Enabled
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: FlowerCore__Auth__Oidc__Audience
|
- name: FlowerCore__Auth__Oidc__Audience
|
||||||
@@ -209,6 +241,42 @@ spec:
|
|||||||
targetPort: 5320
|
targetPort: 5320
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
---
|
---
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: NetworkPolicy
|
||||||
|
metadata:
|
||||||
|
name: dns-web-ingress-isolation
|
||||||
|
namespace: fc-dns
|
||||||
|
spec:
|
||||||
|
podSelector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: dns-web
|
||||||
|
policyTypes:
|
||||||
|
- Ingress
|
||||||
|
ingress:
|
||||||
|
- from:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: traefik-system
|
||||||
|
podSelector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: traefik
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-dns
|
||||||
|
- ipBlock:
|
||||||
|
cidr: 10.42.0.0/16
|
||||||
|
- ipBlock:
|
||||||
|
cidr: 10.0.56.0/24
|
||||||
|
- ipBlock:
|
||||||
|
cidr: 10.0.57.0/24
|
||||||
|
- ipBlock:
|
||||||
|
cidr: 10.0.58.0/24
|
||||||
|
- ipBlock:
|
||||||
|
cidr: 10.0.68.0/27
|
||||||
|
ports:
|
||||||
|
- port: 5320
|
||||||
|
protocol: TCP
|
||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
metadata:
|
metadata:
|
||||||
@@ -303,7 +371,7 @@ spec:
|
|||||||
fsGroup: 1654
|
fsGroup: 1654
|
||||||
containers:
|
containers:
|
||||||
- name: dns-acme-webhook
|
- name: dns-acme-webhook
|
||||||
image: localhost/fc-dns-acme-webhook:v20260614-wave5-isolation-6124856
|
image: localhost/fc-dns-acme-webhook:v20260616-dn-current-3626f04
|
||||||
imagePullPolicy: Never
|
imagePullPolicy: Never
|
||||||
securityContext:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
@@ -322,6 +390,12 @@ spec:
|
|||||||
value: /tls/tls.key
|
value: /tls/tls.key
|
||||||
- name: FlowerCore__Dns__AcmeWebhook__ServiceBaseUrl
|
- name: FlowerCore__Dns__AcmeWebhook__ServiceBaseUrl
|
||||||
value: http://dns-web:5320
|
value: http://dns-web:5320
|
||||||
|
- name: FlowerCore__Dns__AcmeWebhook__ApiKey
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: dns-api-keys
|
||||||
|
key: api_key
|
||||||
|
optional: true
|
||||||
- name: FlowerCore__Dns__AcmeWebhook__GroupName
|
- name: FlowerCore__Dns__AcmeWebhook__GroupName
|
||||||
value: acme.flowercore.io
|
value: acme.flowercore.io
|
||||||
- name: FlowerCore__Dns__AcmeWebhook__SolverName
|
- name: FlowerCore__Dns__AcmeWebhook__SolverName
|
||||||
|
|||||||
345
apps/fc-gateway/fc-gateway.yaml
Normal file
345
apps/fc-gateway/fc-gateway.yaml
Normal file
@@ -0,0 +1,345 @@
|
|||||||
|
# FlowerCore.Mcp.Gateway — Agent Zero MCP tool-router.
|
||||||
|
# Exposes one AZ-facing MCP endpoint with three meta-tools:
|
||||||
|
# list_capabilities, search_tools, invoke_tool.
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/part-of: flowercore
|
||||||
|
---
|
||||||
|
# Inbound key Agent Zero sends to the gateway as X-Api-Key.
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: gateway-mcp-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore Gateway MCP Keys"
|
||||||
|
---
|
||||||
|
# Embedding API key for fc:embedding via fc-llm-bridge. Optional at runtime:
|
||||||
|
# the gateway falls back to deterministic keyword ranking if embeddings are down.
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: fc-llm-bridge-api-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FC LLM Bridge API Keys"
|
||||||
|
---
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: mysql-mcp-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore MySQL MCP Keys"
|
||||||
|
---
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: telephony-mcp-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/Twilio IVR MCP Token (Agent Zero)"
|
||||||
|
---
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: chat-mcp-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore Chat MCP Keys"
|
||||||
|
---
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: dms-mcp-keys
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore DMS MCP Keys"
|
||||||
|
---
|
||||||
|
apiVersion: onepassword.com/v1
|
||||||
|
kind: OnePasswordItem
|
||||||
|
metadata:
|
||||||
|
name: knowledge-mcp-tokens
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/FlowerCore Knowledge MCP Tokens"
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway
|
||||||
|
namespace: fc-gateway
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: fc-gateway
|
||||||
|
app.kubernetes.io/part-of: flowercore
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
revisionHistoryLimit: 3
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: fc-gateway
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: fc-gateway
|
||||||
|
app.kubernetes.io/part-of: flowercore
|
||||||
|
annotations:
|
||||||
|
fc.flowercore.io/healthz-anon: "true"
|
||||||
|
fc.flowercore.io/probe-path: "/healthz"
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
prometheus.io/port: "8080"
|
||||||
|
prometheus.io/path: "/metrics/prometheus"
|
||||||
|
spec:
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
fsGroup: 1654
|
||||||
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
|
containers:
|
||||||
|
- name: web
|
||||||
|
image: localhost/fc-gateway:v20260617-az-gateway
|
||||||
|
imagePullPolicy: Never
|
||||||
|
ports:
|
||||||
|
- containerPort: 8080
|
||||||
|
name: http
|
||||||
|
env:
|
||||||
|
- name: ASPNETCORE_URLS
|
||||||
|
value: "http://+:8080"
|
||||||
|
- name: ASPNETCORE_ENVIRONMENT
|
||||||
|
value: "Production"
|
||||||
|
- name: DOTNET_SYSTEM_GLOBALIZATION_INVARIANT
|
||||||
|
value: "false"
|
||||||
|
- name: FlowerCore__Mcp__ApiKey__Key
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: gateway-mcp-keys
|
||||||
|
key: credential
|
||||||
|
- name: FlowerCore__Mcp__Gateway__Embedding__BaseUrl
|
||||||
|
value: "http://fc-llm-bridge.fc-llm-bridge.svc:8080/v1"
|
||||||
|
- name: FlowerCore__Mcp__Gateway__Embedding__Model
|
||||||
|
value: "fc:embedding"
|
||||||
|
- name: FlowerCore__Mcp__Gateway__Embedding__Mode
|
||||||
|
value: "openai"
|
||||||
|
- name: FlowerCore__Mcp__Gateway__Embedding__ApiKey
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: fc-llm-bridge-api-keys
|
||||||
|
key: agent-zero-k8s
|
||||||
|
optional: true
|
||||||
|
- name: GW_BACKEND_fc_mysql_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: mysql-mcp-keys
|
||||||
|
key: credential
|
||||||
|
optional: true
|
||||||
|
- name: GW_BACKEND_fc_telephony_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: telephony-mcp-keys
|
||||||
|
key: credential
|
||||||
|
optional: true
|
||||||
|
- name: GW_BACKEND_fc_chat_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: chat-mcp-keys
|
||||||
|
key: credential
|
||||||
|
optional: true
|
||||||
|
- name: GW_BACKEND_fc_dms_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: dms-mcp-keys
|
||||||
|
key: credential
|
||||||
|
optional: true
|
||||||
|
- name: GW_BACKEND_fc_knowledge_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: knowledge-mcp-tokens
|
||||||
|
key: password
|
||||||
|
optional: true
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 50m
|
||||||
|
memory: 128Mi
|
||||||
|
limits:
|
||||||
|
cpu: 500m
|
||||||
|
memory: 384Mi
|
||||||
|
volumeMounts:
|
||||||
|
- name: tmp
|
||||||
|
mountPath: /tmp
|
||||||
|
- name: logs
|
||||||
|
mountPath: /home/app/logs
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 1654
|
||||||
|
runAsGroup: 1654
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
capabilities:
|
||||||
|
drop: [ALL]
|
||||||
|
startupProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8080
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 5
|
||||||
|
failureThreshold: 30
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8080
|
||||||
|
periodSeconds: 10
|
||||||
|
livenessProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: 8080
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 30
|
||||||
|
volumes:
|
||||||
|
- name: tmp
|
||||||
|
emptyDir: {}
|
||||||
|
- name: logs
|
||||||
|
emptyDir: {}
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: fc-gateway
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 80
|
||||||
|
targetPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
---
|
||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: Certificate
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway-tls
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
secretName: fc-gateway-tls
|
||||||
|
issuerRef:
|
||||||
|
name: step-ca-acme
|
||||||
|
kind: ClusterIssuer
|
||||||
|
dnsNames:
|
||||||
|
- gateway.iamworkin.lan
|
||||||
|
duration: 720h
|
||||||
|
renewBefore: 240h
|
||||||
|
---
|
||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- websecure
|
||||||
|
routes:
|
||||||
|
- match: Host(`gateway.iamworkin.lan`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: fc-gateway
|
||||||
|
port: 80
|
||||||
|
tls:
|
||||||
|
secretName: fc-gateway-tls
|
||||||
|
---
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: NetworkPolicy
|
||||||
|
metadata:
|
||||||
|
name: fc-gateway-netpol
|
||||||
|
namespace: fc-gateway
|
||||||
|
spec:
|
||||||
|
podSelector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: fc-gateway
|
||||||
|
policyTypes:
|
||||||
|
- Ingress
|
||||||
|
- Egress
|
||||||
|
ingress:
|
||||||
|
- from:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: agent-zero
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- from:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: traefik-system
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- from:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: monitoring
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
egress:
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: kube-system
|
||||||
|
ports:
|
||||||
|
- port: 53
|
||||||
|
protocol: UDP
|
||||||
|
- port: 53
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-llm-bridge
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-mysql
|
||||||
|
ports:
|
||||||
|
- port: 5300
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: telephony
|
||||||
|
ports:
|
||||||
|
- port: 5100
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-chat
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-dms
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
|
- to:
|
||||||
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: knowledge
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
- port: 8080
|
||||||
|
protocol: TCP
|
||||||
@@ -60,7 +60,7 @@ spec:
|
|||||||
- envFrom:
|
- envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: library-web-config
|
name: library-web-config
|
||||||
image: localhost/fc-library-web:v20260614-regroup-f20adc1
|
image: localhost/fc-library-web:v20260615-rl5-fineaction-80981c3
|
||||||
imagePullPolicy: Never
|
imagePullPolicy: Never
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
|
|||||||
@@ -535,7 +535,7 @@ spec:
|
|||||||
fsGroupChangePolicy: OnRootMismatch
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
containers:
|
containers:
|
||||||
- name: web
|
- name: web
|
||||||
image: localhost/fc-ttsreader-web:v20260614-wave5-help-2f096e3
|
image: localhost/fc-ttsreader-web:v20260616-tt3-plane-3fe50f0
|
||||||
imagePullPolicy: Never
|
imagePullPolicy: Never
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 5217
|
- containerPort: 5217
|
||||||
|
|||||||
@@ -1698,7 +1698,12 @@ metadata:
|
|||||||
flowercore.io/runner-repo: tts-reader
|
flowercore.io/runner-repo: tts-reader
|
||||||
flowercore.io/github-repo: FlowerCore.TtsReader
|
flowercore.io/github-repo: FlowerCore.TtsReader
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
# Scaled to 0 2026-06-16: this runner was crash-looping (329 restarts) and
|
||||||
|
# consuming memory on the over-pressured old cluster (agent1 ~81%), which was
|
||||||
|
# contributing to Blazor circuit drops on ttsreader/chat. It provides no
|
||||||
|
# working CI in this state. Restore to 1 once the runner is fixed (or the repo
|
||||||
|
# CI moves to the GX10 / a working runner).
|
||||||
|
replicas: 0
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app.kubernetes.io/name: github-runner-tts-reader
|
app.kubernetes.io/name: github-runner-tts-reader
|
||||||
|
|||||||
@@ -25,17 +25,25 @@ data:
|
|||||||
---
|
---
|
||||||
# 1Password → K8s Secret sync for Twilio credentials
|
# 1Password → K8s Secret sync for Twilio credentials
|
||||||
# Creates secret "twilio-credentials" with fields: AccountSid, AuthToken, DefaultFromNumber
|
# Creates secret "twilio-credentials" with fields: AccountSid, AuthToken, DefaultFromNumber
|
||||||
apiVersion: onepassword.com/v1
|
apiVersion: onepassword.com/v1
|
||||||
kind: OnePasswordItem
|
kind: OnePasswordItem
|
||||||
metadata:
|
metadata:
|
||||||
name: twilio-credentials
|
name: twilio-credentials
|
||||||
namespace: telephony
|
namespace: telephony
|
||||||
spec:
|
spec:
|
||||||
itemPath: "vaults/IAmWorkin/items/Twilio Account"
|
itemPath: "vaults/IAmWorkin/items/Twilio Account"
|
||||||
---
|
---
|
||||||
# Application configuration overlay
|
apiVersion: onepassword.com/v1
|
||||||
apiVersion: v1
|
kind: OnePasswordItem
|
||||||
kind: ConfigMap
|
metadata:
|
||||||
|
name: telephony-mcp-keys
|
||||||
|
namespace: telephony
|
||||||
|
spec:
|
||||||
|
itemPath: "vaults/IAmWorkin/items/Twilio IVR MCP Token (Agent Zero)"
|
||||||
|
---
|
||||||
|
# Application configuration overlay
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: telephony-config
|
name: telephony-config
|
||||||
namespace: telephony
|
namespace: telephony
|
||||||
@@ -180,14 +188,20 @@ spec:
|
|||||||
name: twilio-credentials
|
name: twilio-credentials
|
||||||
key: AuthToken
|
key: AuthToken
|
||||||
optional: true
|
optional: true
|
||||||
- name: Telephony__Twilio__DefaultFromNumber
|
- name: Telephony__Twilio__DefaultFromNumber
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: twilio-credentials
|
name: twilio-credentials
|
||||||
key: DefaultFromNumber
|
key: DefaultFromNumber
|
||||||
optional: true
|
optional: true
|
||||||
# Env vars OVERRIDE appsettings.Production.json in ASP.NET Core config.
|
- name: FlowerCore__Mcp__ApiKey__Key
|
||||||
# These were previously applied live-only (kubectl) and drifted from git;
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: telephony-mcp-keys
|
||||||
|
key: credential
|
||||||
|
optional: true
|
||||||
|
# Env vars OVERRIDE appsettings.Production.json in ASP.NET Core config.
|
||||||
|
# These were previously applied live-only (kubectl) and drifted from git;
|
||||||
# codified here so git is the source of truth. Tts__PiperUrl is the real
|
# codified here so git is the source of truth. Tts__PiperUrl is the real
|
||||||
# TTS cutover lever (the configmap "Tts" block is shadowed by this env).
|
# TTS cutover lever (the configmap "Tts" block is shadowed by this env).
|
||||||
- name: Tts__PiperUrl
|
- name: Tts__PiperUrl
|
||||||
@@ -301,17 +315,25 @@ spec:
|
|||||||
- namespaceSelector:
|
- namespaceSelector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
kubernetes.io/metadata.name: traefik-system
|
kubernetes.io/metadata.name: traefik-system
|
||||||
# Allow Selenium Grid for automated UI testing
|
# Allow Selenium Grid for automated UI testing
|
||||||
- from:
|
- from:
|
||||||
- namespaceSelector:
|
- namespaceSelector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
kubernetes.io/metadata.name: selenium
|
kubernetes.io/metadata.name: selenium
|
||||||
ports:
|
ports:
|
||||||
- port: 5100
|
- port: 5100
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
# Allow SIP/RTP from external sources (Yealink phones, Twilio SIP trunk)
|
# Allow FlowerCore.Mcp.Gateway to reach Telephony /mcp on the destination pod port.
|
||||||
- from:
|
- from:
|
||||||
- ipBlock:
|
- namespaceSelector:
|
||||||
|
matchLabels:
|
||||||
|
kubernetes.io/metadata.name: fc-gateway
|
||||||
|
ports:
|
||||||
|
- port: 5100
|
||||||
|
protocol: TCP
|
||||||
|
# Allow SIP/RTP from external sources (Yealink phones, Twilio SIP trunk)
|
||||||
|
- from:
|
||||||
|
- ipBlock:
|
||||||
cidr: 0.0.0.0/0
|
cidr: 0.0.0.0/0
|
||||||
ports:
|
ports:
|
||||||
- port: 5060
|
- port: 5060
|
||||||
|
|||||||
15
gx10/platform/README.md
Normal file
15
gx10/platform/README.md
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# GX10 cluster platform layer (NOT old-cluster ArgoCD)
|
||||||
|
|
||||||
|
These manifests bootstrap the GX10 RKE2 cluster's platform layer for the NUC→GX10
|
||||||
|
migration. They are **direct-applied** to the GX10 (its own kubectl) during
|
||||||
|
bootstrap, and live under `gx10/` (NOT `apps/`) so the OLD cluster's bluejay-infra
|
||||||
|
ApplicationSet (whose `apps/*` generator targets the OLD cluster) does NOT
|
||||||
|
auto-deploy them there. Once ArgoCD is stood up on the GX10, a GX10-only
|
||||||
|
ApplicationSet (`apps-gx10/*`) will own these.
|
||||||
|
|
||||||
|
- `step-ca-acme.yaml` — cert-manager ClusterIssuer (ACME → noc1 step-ca, in-spec caBundle). APPLIED + Ready.
|
||||||
|
- `traefik-helmchart.yaml` — Traefik v3.6.10 (chart 39.0.5) via the RKE2 HelmChart CRD, LoadBalancer VIP 10.0.57.202 (prod-pool; temp parallel-run VIP — canonical .200 reclaimed at cutover). APPLIED.
|
||||||
|
|
||||||
|
cert-manager v1.17.2 was installed separately (upstream static manifest). See
|
||||||
|
`docs/ai-agents/gx10-migration-continuation-2026-06-14.md` + memory
|
||||||
|
`project_gx10_ai_node_2026_06_13`.
|
||||||
14
gx10/platform/step-ca-acme.yaml
Normal file
14
gx10/platform/step-ca-acme.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: step-ca-acme
|
||||||
|
spec:
|
||||||
|
acme:
|
||||||
|
server: https://10.0.56.10:9443/acme/acme/directory
|
||||||
|
caBundle: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJ4RENDQVdxZ0F3SUJBZ0lSQVBZMzU3RzZvdzZ6TUFMNSs0YlMya2t3Q2dZSUtvWkl6ajBFQXdJd1FERWEKTUJnR0ExVUVDaE1SU1VGdFYyOXlhMmx1SUVGRFRVVWdRMEV4SWpBZ0JnTlZCQU1UR1VsQmJWZHZjbXRwYmlCQgpRMDFGSUVOQklGSnZiM1FnUTBFd0hoY05Nall3TXpBNE1UZ3dOekV4V2hjTk16WXdNekExTVRnd056RXhXakJBCk1Sb3dHQVlEVlFRS0V4RkpRVzFYYjNKcmFXNGdRVU5OUlNCRFFURWlNQ0FHQTFVRUF4TVpTVUZ0VjI5eWEybHUKSUVGRFRVVWdRMEVnVW05dmRDQkRRVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUFCSjJuMDRYMQpKWm81WmRxL2kxSWR2OCtmcXdaeUF6Qmg3d2hicWowU1dzSkw4VVdSYWJDTXFZQ3M3K2RYTzB4UlN6cWt3RkRMCngrdm9vT2FpOFJnUk5oYWpSVEJETUE0R0ExVWREd0VCL3dRRUF3SUJCakFTQmdOVkhSTUJBZjhFQ0RBR0FRSC8KQWdFQk1CMEdBMVVkRGdRV0JCUm51UFBRUjZpTS9INnZPbHVpVTNTeWdheXo4akFLQmdncWhrak9QUVFEQWdOSQpBREJGQWlFQXJRSzlkWVBHbUFac2RZbmp6aXVGVlZFNU5LWlVjY2VZdkdmR0MrdExYVXNDSUF1ZEYyekpyQ1JxCjNtSzUwWlpFVC9md1RrSndpRUY0ODI0bWpQOHAxQ0tNCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K
|
||||||
|
privateKeySecretRef:
|
||||||
|
name: step-ca-acme-account-key
|
||||||
|
solvers:
|
||||||
|
- http01:
|
||||||
|
ingress:
|
||||||
|
ingressClassName: traefik
|
||||||
81
gx10/platform/traefik-helmchart.yaml
Normal file
81
gx10/platform/traefik-helmchart.yaml
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
apiVersion: helm.cattle.io/v1
|
||||||
|
kind: HelmChart
|
||||||
|
metadata:
|
||||||
|
name: traefik
|
||||||
|
namespace: kube-system
|
||||||
|
spec:
|
||||||
|
chart: traefik
|
||||||
|
repo: https://traefik.github.io/charts
|
||||||
|
version: "39.0.5"
|
||||||
|
targetNamespace: traefik-system
|
||||||
|
createNamespace: true
|
||||||
|
valuesContent: |
|
||||||
|
deployment:
|
||||||
|
replicas: 1
|
||||||
|
additionalArguments:
|
||||||
|
- "--api.dashboard=true"
|
||||||
|
- "--log.level=INFO"
|
||||||
|
- "--providers.kubernetescrd"
|
||||||
|
- "--providers.kubernetesingress"
|
||||||
|
- "--providers.kubernetescrd.allowEmptyServices=true"
|
||||||
|
- "--providers.kubernetesingress.allowEmptyServices=true"
|
||||||
|
- "--providers.kubernetesingress.ingressendpoint.publishedservice=traefik-system/traefik"
|
||||||
|
ingressRoute:
|
||||||
|
dashboard:
|
||||||
|
enabled: false
|
||||||
|
rbac:
|
||||||
|
enabled: true
|
||||||
|
service:
|
||||||
|
type: LoadBalancer
|
||||||
|
annotations:
|
||||||
|
metallb.io/loadBalancerIPs: "10.0.57.202"
|
||||||
|
metallb.io/address-pool: "prod-pool"
|
||||||
|
ports:
|
||||||
|
web:
|
||||||
|
port: 8000
|
||||||
|
exposedPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
websecure:
|
||||||
|
port: 8443
|
||||||
|
exposedPort: 443
|
||||||
|
protocol: TCP
|
||||||
|
tls:
|
||||||
|
enabled: true
|
||||||
|
irc:
|
||||||
|
port: 6667
|
||||||
|
exposedPort: 6667
|
||||||
|
protocol: TCP
|
||||||
|
expose:
|
||||||
|
default: true
|
||||||
|
irctls:
|
||||||
|
port: 6697
|
||||||
|
exposedPort: 6697
|
||||||
|
protocol: TCP
|
||||||
|
expose:
|
||||||
|
default: true
|
||||||
|
traefik:
|
||||||
|
port: 8080
|
||||||
|
exposedPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
expose:
|
||||||
|
default: false
|
||||||
|
metrics:
|
||||||
|
port: 9100
|
||||||
|
exposedPort: 9100
|
||||||
|
protocol: TCP
|
||||||
|
expose:
|
||||||
|
default: false
|
||||||
|
metrics:
|
||||||
|
prometheus:
|
||||||
|
entryPoint: metrics
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: "100m"
|
||||||
|
memory: "128Mi"
|
||||||
|
limits:
|
||||||
|
cpu: "500m"
|
||||||
|
memory: "256Mi"
|
||||||
|
tolerations:
|
||||||
|
- key: "node-role.kubernetes.io/control-plane"
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
@@ -867,7 +867,7 @@ public sealed class FleetManifestLintTests
|
|||||||
{
|
{
|
||||||
var deployments = new[]
|
var deployments = new[]
|
||||||
{
|
{
|
||||||
(App: "fc-dns", Name: "dns-web", Slug: "dns", Secret: "dns-oidc-client", AuthEnabled: "false"),
|
(App: "fc-dns", Name: "dns-web", Slug: "dns", Secret: "dns-oidc-client", AuthEnabled: "true"),
|
||||||
(App: "fc-media", Name: "fc-media-web", Slug: "media", Secret: "media-oidc-client", AuthEnabled: "true"),
|
(App: "fc-media", Name: "fc-media-web", Slug: "media", Secret: "media-oidc-client", AuthEnabled: "true"),
|
||||||
(App: "fc-distribution", Name: "fc-distribution", Slug: "distribution", Secret: "distribution-oidc-client", AuthEnabled: "true"),
|
(App: "fc-distribution", Name: "fc-distribution", Slug: "distribution", Secret: "distribution-oidc-client", AuthEnabled: "true"),
|
||||||
};
|
};
|
||||||
@@ -918,6 +918,37 @@ public sealed class FleetManifestLintTests
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void DnsPhase0_UsesOnePasswordBackedAcmeApiKey()
|
||||||
|
{
|
||||||
|
var item = AppDocuments("fc-dns")
|
||||||
|
.Single(document => document.Kind == "OnePasswordItem" && document.Name == "dns-api-keys");
|
||||||
|
item.Scalar("spec", "itemPath").Should().Be("vaults/IAmWorkin/items/FlowerCore DNS API Keys");
|
||||||
|
|
||||||
|
var dnsWeb = AppDocuments("fc-dns")
|
||||||
|
.Single(document => document.Kind == "Deployment" && document.Name == "dns-web")
|
||||||
|
.MainContainerMappings()
|
||||||
|
.Should()
|
||||||
|
.ContainSingle()
|
||||||
|
.Subject;
|
||||||
|
EnvSecretName(dnsWeb, "FlowerCore__Auth__ApiKey").Should().Be("dns-api-keys");
|
||||||
|
EnvSecretKey(dnsWeb, "FlowerCore__Auth__ApiKey").Should().Be("api_key");
|
||||||
|
EnvSecretOptional(dnsWeb, "FlowerCore__Auth__ApiKey").Should().Be("true");
|
||||||
|
EnvSecretName(dnsWeb, "FlowerCore__Mcp__ApiKey__Key").Should().Be("dns-api-keys");
|
||||||
|
EnvSecretKey(dnsWeb, "FlowerCore__Mcp__ApiKey__Key").Should().Be("api_key");
|
||||||
|
EnvSecretOptional(dnsWeb, "FlowerCore__Mcp__ApiKey__Key").Should().Be("true");
|
||||||
|
|
||||||
|
var webhook = AppDocuments("fc-dns")
|
||||||
|
.Single(document => document.Kind == "Deployment" && document.Name == "dns-acme-webhook")
|
||||||
|
.MainContainerMappings()
|
||||||
|
.Should()
|
||||||
|
.ContainSingle()
|
||||||
|
.Subject;
|
||||||
|
EnvSecretName(webhook, "FlowerCore__Dns__AcmeWebhook__ApiKey").Should().Be("dns-api-keys");
|
||||||
|
EnvSecretKey(webhook, "FlowerCore__Dns__AcmeWebhook__ApiKey").Should().Be("api_key");
|
||||||
|
EnvSecretOptional(webhook, "FlowerCore__Dns__AcmeWebhook__ApiKey").Should().Be("true");
|
||||||
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public void DnsAndMediaGitOpsAdoption_PreservesLiveStorageAndImageShape()
|
public void DnsAndMediaGitOpsAdoption_PreservesLiveStorageAndImageShape()
|
||||||
{
|
{
|
||||||
@@ -927,7 +958,7 @@ public sealed class FleetManifestLintTests
|
|||||||
var dnsPvc = AppDocuments("fc-dns")
|
var dnsPvc = AppDocuments("fc-dns")
|
||||||
.Single(document => document.Kind == "PersistentVolumeClaim" && document.Name == "dns-web-data");
|
.Single(document => document.Kind == "PersistentVolumeClaim" && document.Name == "dns-web-data");
|
||||||
|
|
||||||
ManifestNodeExtensions.Scalar(dnsContainer, "image").Should().Be("localhost/fc-dns-web:v20260613-g5-quota-aa99bd1");
|
ManifestNodeExtensions.Scalar(dnsContainer, "image").Should().Be("localhost/fc-dns-web:v20260616-dn-current-3626f04");
|
||||||
dnsPvc.Scalar("spec", "storageClassName").Should().Be("longhorn");
|
dnsPvc.Scalar("spec", "storageClassName").Should().Be("longhorn");
|
||||||
dnsPvc.Scalar("spec", "resources", "requests", "storage").Should().Be("1Gi");
|
dnsPvc.Scalar("spec", "resources", "requests", "storage").Should().Be("1Gi");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user