From 4ece2969b35ca2480a7269a4d2a8676a8cc37369 Mon Sep 17 00:00:00 2001 From: Cheffromspace Date: Sun, 1 Jun 2025 14:08:00 -0500 Subject: [PATCH] Remove unused k8s directory (#156) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The k8s directory contained only a template Kubernetes manifest that was never actively used. The project uses Docker Compose for deployment, making these Kubernetes files unnecessary. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- k8s/secrets.yaml | 56 ------------------------------------------------ 1 file changed, 56 deletions(-) delete mode 100644 k8s/secrets.yaml diff --git a/k8s/secrets.yaml b/k8s/secrets.yaml deleted file mode 100644 index 53ea915..0000000 --- a/k8s/secrets.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: v1 -kind: Secret -metadata: - name: claude-webhook-secrets - namespace: default -type: Opaque -stringData: - github-token: "YOUR_GITHUB_TOKEN_HERE" - anthropic-api-key: "YOUR_ANTHROPIC_API_KEY_HERE" - webhook-secret: "YOUR_WEBHOOK_SECRET_HERE" ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: claude-webhook -spec: - replicas: 1 - selector: - matchLabels: - app: claude-webhook - template: - metadata: - labels: - app: claude-webhook - spec: - containers: - - name: webhook - image: claude-webhook:latest - ports: - - containerPort: 3002 - env: - - name: NODE_ENV - value: "production" - - name: PORT - value: "3002" - - name: GITHUB_TOKEN_FILE - value: "/etc/secrets/github-token" - - name: ANTHROPIC_API_KEY_FILE - value: "/etc/secrets/anthropic-api-key" - - name: GITHUB_WEBHOOK_SECRET_FILE - value: "/etc/secrets/webhook-secret" - volumeMounts: - - name: secrets-volume - mountPath: /etc/secrets - readOnly: true - volumes: - - name: secrets-volume - secret: - secretName: claude-webhook-secrets - items: - - key: github-token - path: github-token - - key: anthropic-api-key - path: anthropic-api-key - - key: webhook-secret - path: webhook-secret \ No newline at end of file