19 lines
398 B
YAML
19 lines
398 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: trading-data-service
|
||
|
|
namespace: customer1
|
||
|
|
annotations:
|
||
|
|
tailscale.com/expose: "true"
|
||
|
|
tailscale.com/hostname: "trading-data-service"
|
||
|
|
tailscale.com/tags: "tag:k8s-operator"
|
||
|
|
tailscale.com/ports: "http:80"
|
||
|
|
spec:
|
||
|
|
selector:
|
||
|
|
app: trading-data-service
|
||
|
|
ports:
|
||
|
|
- port: 80
|
||
|
|
targetPort: 8001
|
||
|
|
name: http
|
||
|
|
type: ClusterIP
|