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>
26 lines
352 B
YAML
26 lines
352 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: proxysql
|
|
spec:
|
|
ports:
|
|
- name: mysql
|
|
port: 3306
|
|
targetPort: 6033
|
|
- 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
|