Superset was running on 2247 port in dev mode and on 8000 in local mode We now make this consistent so that superset runs on 2247 in both local and dev
58 lines
957 B
Plaintext
58 lines
957 B
Plaintext
#### Cairn services
|
|
{% if CAIRN_RUN_CLICKHOUSE %}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: cairn-clickhouse
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 8123
|
|
protocol: TCP
|
|
name: "native"
|
|
- port: 9000
|
|
protocol: TCP
|
|
name: "http"
|
|
selector:
|
|
app.kubernetes.io/name: cairn-clickhouse
|
|
{% endif %}
|
|
{% if CAIRN_RUN_POSTGRESQL %}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: cairn-postgresql
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 5432
|
|
protocol: TCP
|
|
selector:
|
|
app.kubernetes.io/name: cairn-postgresql
|
|
{% endif %}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: cairn-superset
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 2247
|
|
protocol: TCP
|
|
selector:
|
|
app.kubernetes.io/name: cairn-superset
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: cairn-watchcourses
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 9282
|
|
protocol: TCP
|
|
selector:
|
|
app.kubernetes.io/name: cairn-watchcourses
|