Replace K8s ProxySQL with external Incus ProxySQL (192.168.9.140:6033)

Remove ProxySQL deployments, configmaps, and PVC from both anvil and
ironclad namespaces. Replace with selector-less Service + Endpoints
pointing to the Incus ProxySQL instance. Argo CD will prune the old
resources automatically.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-03-12 16:23:04 +09:00
parent 307cdab52b
commit 79c25e0759
7 changed files with 26 additions and 260 deletions

View File

@@ -3,14 +3,23 @@ kind: Service
metadata:
name: proxysql
spec:
type: NodePort
selector:
app: proxysql
ports:
- name: mysql
port: 3306
targetPort: 6033
nodePort: 31943
- name: admin
port: 6032
targetPort: 6032
---
apiVersion: v1
kind: Endpoints
metadata:
name: proxysql
subsets:
- addresses:
- ip: 192.168.9.140
ports:
- name: mysql
port: 6033
- name: admin
port: 6032