forked from farhoodlabs/skills
ad8b82449a
Adds a new skill that provisions ephemeral Playwright MCP browser sessions as Kubernetes Jobs for E2E testing. Includes provision and teardown scripts, K8s Job/Service YAML templates, and agent-facing SKILL.md documentation. Co-Authored-By: Paperclip <noreply@paperclip.ing>
17 lines
298 B
YAML
17 lines
298 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: "{{SESSION_NAME}}"
|
|
namespace: "{{NAMESPACE}}"
|
|
labels:
|
|
app: playwright-mcp
|
|
session: "{{SESSION_NAME}}"
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
session: "{{SESSION_NAME}}"
|
|
ports:
|
|
- port: 8931
|
|
targetPort: 8931
|
|
protocol: TCP
|