Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
65 lines
982 B
YAML
65 lines
982 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: kagent
|
|
namespace: kagent
|
|
labels:
|
|
app: kagent
|
|
managed-by: vapora
|
|
spec:
|
|
type: ClusterIP
|
|
clusterIP: None
|
|
selector:
|
|
app: kagent
|
|
ports:
|
|
- name: http
|
|
port: 8080
|
|
targetPort: http
|
|
protocol: TCP
|
|
- name: grpc
|
|
port: 50051
|
|
targetPort: grpc
|
|
protocol: TCP
|
|
- name: metrics
|
|
port: 9090
|
|
targetPort: metrics
|
|
protocol: TCP
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: kagent-api
|
|
namespace: kagent
|
|
labels:
|
|
app: kagent
|
|
managed-by: vapora
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: kagent
|
|
ports:
|
|
- name: http
|
|
port: 8080
|
|
targetPort: http
|
|
protocol: TCP
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: kagent-grpc
|
|
namespace: kagent
|
|
labels:
|
|
app: kagent
|
|
managed-by: vapora
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: kagent
|
|
ports:
|
|
- name: grpc
|
|
port: 50051
|
|
targetPort: grpc
|
|
protocol: TCP
|