37 lines
688 B
YAML
37 lines
688 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: xlog-lb
|
|
namespace: crossbell
|
|
annotations:
|
|
service.beta.kubernetes.io/alibaba-cloud-loadbalancer-name: "xlog-dev"
|
|
service.beta.kubernetes.io/alibaba-cloud-loadbalancer-spec: "slb.s1.small"
|
|
spec:
|
|
type: LoadBalancer
|
|
selector:
|
|
app: xlog-caddy
|
|
ports:
|
|
- name: http
|
|
protocol: TCP
|
|
port: 80
|
|
targetPort: 80
|
|
- name: https
|
|
protocol: TCP
|
|
port: 443
|
|
targetPort: 443
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: xlog-internal
|
|
namespace: crossbell
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: xlog
|
|
ports:
|
|
- name: http
|
|
protocol: TCP
|
|
port: 3000
|
|
targetPort: 3000
|