mirror of
https://github.com/traefik/mesh.git
synced 2026-05-02 18:32:32 +00:00
34 lines
427 B
YAML
34 lines
427 B
YAML
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: foo
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: test
|
|
namespace: foo
|
|
spec:
|
|
clusterIP: 10.1.0.1
|
|
selector:
|
|
app: test
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: test
|
|
namespace: foo
|
|
subsets:
|
|
- addresses:
|
|
- ip: 10.0.0.1
|
|
ports:
|
|
- port: 80
|
|
- addresses:
|
|
- ip: 10.0.0.2
|
|
ports:
|
|
- port: 80
|