Files
infrastructure/clusters/cl01tl/manifests/rybbit/Deployment-rybbit-clickhouse.yaml
gitea-bot 39c9566df3 Automated Manifest Update (#5209)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow.

### Details
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `c0e4aba` (on `c0e4aba7e10c286e3c4f8f63d94e4c8769ac22de`)
- **Charts Updated**: `homepage`

### Update Details (2026-03-28 01:22 UTC)
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `a728820` (on `a7288202e962aca91c117ed7c3a6517251ea885e`)
- **Charts Updated**: `whodb`

### Update Details (2026-03-28 01:23 UTC)
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `bf6e08f` (on `bf6e08f418b887f559ccf17150827984f019d3e3`)
- **Charts Updated**: `movie-roulette`

### Update Details (2026-03-28 01:25 UTC)
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `93f403d` (on `93f403d8d38652fa1cc078eab164486845746498`)
- **Charts Updated**: `rybbit`

### Update Details (2026-03-28 01:38 UTC)
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `53e3754` (on `53e37544f9367204a7effca7c6152a3be10922a1`)
- **Charts Updated**: `cert-manager`

### Update Details (2026-03-28 02:11 UTC)
- **Trigger**: `workflow_dispatch` by `@alexlebens`
- **Commit**: `d156c5b` (on `main`)
- **Charts Updated**: `argocd,houndarr,immich,kube-prometheus-stack,ntfy,ollama,postiz`

Reviewed-on: #5209
Co-authored-by: gitea-bot <gitea-bot@alexlebens.net>
Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
2026-03-28 02:11:55 +00:00

89 lines
2.8 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: rybbit-clickhouse
labels:
app.kubernetes.io/controller: clickhouse
app.kubernetes.io/instance: rybbit
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: rybbit
helm.sh/chart: rybbit-4.6.2
namespace: rybbit
spec:
revisionHistoryLimit: 3
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/controller: clickhouse
app.kubernetes.io/name: rybbit
app.kubernetes.io/instance: rybbit
template:
metadata:
annotations:
checksum/configMaps: 26a783f1bf2cd5bcd4f724d505a909d6e3bb7b3715f1dfa01a98609864d4ab3e
labels:
app.kubernetes.io/controller: clickhouse
app.kubernetes.io/instance: rybbit
app.kubernetes.io/name: rybbit
spec:
enableServiceLinks: false
serviceAccountName: default
automountServiceAccountToken: true
hostIPC: false
hostNetwork: false
hostPID: false
dnsPolicy: ClusterFirst
containers:
- env:
- name: CLICKHOUSE_DB
value: analytics
- name: CLICKHOUSE_USER
valueFrom:
secretKeyRef:
key: clickhouse-user
name: rybbit-config-secret
- name: CLICKHOUSE_PASSWORD
valueFrom:
secretKeyRef:
key: clickhouse-password
name: rybbit-config-secret
image: clickhouse/clickhouse-server:26.3.2
imagePullPolicy: IfNotPresent
name: main
resources:
requests:
cpu: 10m
memory: 256Mi
volumeMounts:
- mountPath: /var/lib/clickhouse
name: clickhouse
- mountPath: /etc/clickhouse-server/config.d/network.xml
mountPropagation: None
name: clickhouse-config
readOnly: true
subPath: network.xml
- mountPath: /etc/clickhouse-server/config.d/enable_json.xml
mountPropagation: None
name: clickhouse-config
readOnly: true
subPath: enable_json.xml
- mountPath: /etc/clickhouse-server/config.d/logging_rules.xml
mountPropagation: None
name: clickhouse-config
readOnly: true
subPath: logging_rules.xml
- mountPath: /etc/clickhouse-server/config.d/user_logging.xml
mountPropagation: None
name: clickhouse-config
readOnly: true
subPath: user_logging.xml
volumes:
- name: clickhouse
persistentVolumeClaim:
claimName: clickhouse-data
- configMap:
name: clickhouse-config
name: clickhouse-config