21 lines
452 B
YAML
21 lines
452 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/kustomization.json
|
|
|
|
kind: Kustomization
|
|
replicas:
|
|
- name: playwright-mcp
|
|
count: 1
|
|
resources:
|
|
- deployment.yaml
|
|
- pvc.yaml
|
|
- service.yaml
|
|
namespace: mcp
|
|
images:
|
|
- name: image
|
|
newName: mcr.microsoft.com/playwright/mcp
|
|
newTag: v0.0.75
|
|
configMapGenerator:
|
|
- name: playwright-mcp
|
|
files:
|
|
- config/PLAYWRIGHT_MCP_PORT
|
|
- config/PLAYWRIGHT_MCP_HOST
|
|
- config/PLAYWRIGHT_MCP_ALLOWED_HOSTS |