Add Clickhouse ingress

This commit is contained in:
Paul-Henry PERRIN 2026-03-19 14:12:17 +01:00
parent b3b32e04c0
commit d995bec747
3 changed files with 31 additions and 0 deletions

View File

@ -11,6 +11,7 @@ spec:
# to allow access outside from kubernetes
admin/networks/ip:
- 0.0.0.0/0
default/password: Transcity123
zookeeper:
nodes:
- host: chk-keeper-chk-0-0

View File

@ -0,0 +1,29 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: clickhouse-ui
annotations:
cert-manager.io/cluster-issuer: admin
cert-manager.io/common-name: clickhouse.demo.aws.myseamlesstravel.com
cert-manager.io/private-key-algorithm: ECDSA
forecastle.stakater.com/appName: Clickhouse
forecastle.stakater.com/expose: 'true'
forecastle.stakater.com/group: Reports
forecastle.stakater.com/instance: admin
spec:
ingressClassName: admin
rules:
- host: clickhouse.demo.aws.myseamlesstravel.com
http:
paths:
- backend:
service:
name: clickhouse-clickhouse
port:
name: http
path: /
pathType: Prefix
tls:
- hosts:
- clickhouse.demo.aws.myseamlesstravel.com
secretName: clickhouse-ui-tls

View File

@ -4,3 +4,4 @@ resources:
- namespace.yaml
- keeper.yaml
- clickhouse.yaml
- ingress.yaml