From ea687a342c8cda9679c75dff52e88d42853014f1 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Mon, 16 Mar 2026 19:01:26 +0100 Subject: [PATCH] deploy: remove obsolete ClickHouse K8s manifest --- deploy/clickhouse.yaml | 107 ----------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 deploy/clickhouse.yaml diff --git a/deploy/clickhouse.yaml b/deploy/clickhouse.yaml deleted file mode 100644 index 2fe911d1..00000000 --- a/deploy/clickhouse.yaml +++ /dev/null @@ -1,107 +0,0 @@ -apiVersion: apps/v1 -kind: StatefulSet -metadata: - name: clickhouse - namespace: cameleer -spec: - serviceName: clickhouse - replicas: 1 - selector: - matchLabels: - app: clickhouse - template: - metadata: - labels: - app: clickhouse - spec: - containers: - - name: clickhouse - image: clickhouse/clickhouse-server:25.3 - ports: - - containerPort: 8123 - name: http - - containerPort: 9000 - name: native - env: - - name: CLICKHOUSE_USER - valueFrom: - secretKeyRef: - name: clickhouse-credentials - key: CLICKHOUSE_USER - - name: CLICKHOUSE_PASSWORD - valueFrom: - secretKeyRef: - name: clickhouse-credentials - key: CLICKHOUSE_PASSWORD - - name: CLICKHOUSE_DB - value: cameleer3 - volumeMounts: - - name: data - mountPath: /var/lib/clickhouse - resources: - requests: - memory: "1Gi" - cpu: "200m" - limits: - memory: "4Gi" - cpu: "1000m" - livenessProbe: - httpGet: - path: /ping - port: 8123 - initialDelaySeconds: 15 - periodSeconds: 10 - timeoutSeconds: 3 - failureThreshold: 3 - readinessProbe: - httpGet: - path: /ping - port: 8123 - initialDelaySeconds: 5 - periodSeconds: 5 - timeoutSeconds: 3 - failureThreshold: 3 - volumeClaimTemplates: - - metadata: - name: data - spec: - accessModes: ["ReadWriteOnce"] - resources: - requests: - storage: 2Gi ---- -apiVersion: v1 -kind: Service -metadata: - name: clickhouse - namespace: cameleer -spec: - clusterIP: None - selector: - app: clickhouse - ports: - - port: 8123 - targetPort: 8123 - name: http - - port: 9000 - targetPort: 9000 - name: native ---- -apiVersion: v1 -kind: Service -metadata: - name: clickhouse-external - namespace: cameleer -spec: - type: NodePort - selector: - app: clickhouse - ports: - - port: 8123 - targetPort: 8123 - nodePort: 30123 - name: http - - port: 9000 - targetPort: 9000 - nodePort: 30900 - name: native