[SMG][CI] Add K8s integration tests + wire into pr-test-rust (#24278)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kangyan-Zhou
2026-05-04 10:27:37 -07:00
committed by GitHub
co-authored by Claude Opus 4.7
parent e5c58eb9d6
commit c545a5b1c0
12 changed files with 1652 additions and 3 deletions
@@ -0,0 +1,29 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: smg-gateway
namespace: smg-test
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: smg-gateway
namespace: smg-test
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "watch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: smg-gateway
namespace: smg-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: smg-gateway
subjects:
- kind: ServiceAccount
name: smg-gateway
namespace: smg-test