{{- if .Values.clickhouseOperator.enabled }} # Template Parameters: # # NAME=etc-clickhouse-operator-files # NAMESPACE=posthog # COMMENT= # apiVersion: v1 kind: ConfigMap metadata: name: etc-clickhouse-operator-files namespace: {{ .Values.clickhouseOperator.namespace | default .Release.Namespace }} labels: app: clickhouse-operator data: config.yaml: | ################################################ ## ## Watch Namespaces Section ## ################################################ # List of namespaces where clickhouse-operator watches for events. # Concurrently running operators should watch on different namespaces #watchNamespaces: ["dev", "test"] watchNamespaces: [] ################################################ ## ## Additional Configuration Files Section ## ################################################ # Path to folder where ClickHouse configuration files common for all instances within CHI are located. chCommonConfigsPath: config.d # Path to folder where ClickHouse configuration files unique for each instance (host) within CHI are located. chHostConfigsPath: conf.d # Path to folder where ClickHouse configuration files with users settings are located. # Files are common for all instances within CHI chUsersConfigsPath: users.d # Path to folder where ClickHouseInstallation .yaml manifests are located. # Manifests are applied in sorted alpha-numeric order chiTemplatesPath: templates.d ################################################ ## ## Cluster Create/Update/Delete Objects Section ## ################################################ # How many seconds to wait for created/updated StatefulSet to be Ready statefulSetUpdateTimeout: 300 # How many seconds to wait between checks for created/updated StatefulSet status statefulSetUpdatePollPeriod: 5 # What to do in case created StatefulSet is not in Ready after `statefulSetUpdateTimeout` seconds # Possible options: # 1. abort - do nothing, just break the process and wait for admin # 2. delete - delete newly created problematic StatefulSet # 3. ignore - ignore error, pretend nothing happened and move on to the next StatefulSet onStatefulSetCreateFailureAction: ignore # What to do in case updated StatefulSet is not in Ready after `statefulSetUpdateTimeout` seconds # Possible options: # 1. abort - do nothing, just break the process and wait for admin # 2. rollback - delete Pod and rollback StatefulSet to previous Generation. # Pod would be recreated by StatefulSet based on rollback-ed configuration # 3. ignore - ignore error, pretend nothing happened and move on to the next StatefulSet onStatefulSetUpdateFailureAction: rollback ################################################ ## ## ClickHouse Settings Section ## ################################################ # Default values for ClickHouse user configuration # 1. user/profile - string # 2. user/quota - string # 3. user/networks/ip - multiple strings # 4. user/password - string chConfigUserDefaultProfile: default chConfigUserDefaultQuota: default chConfigUserDefaultNetworksIP: - "::1" - "127.0.0.1" chConfigUserDefaultPassword: "default" # Default host_regexp to limit network connectivity from outside chConfigNetworksHostRegexpTemplate: "(chi-{chi}-[^.]+\\d+-\\d+|clickhouse\\-{chi})\\.{namespace}\\.svc\\.cluster\\.local$" ################################################ ## ## Access to ClickHouse instances ## ################################################ # ClickHouse credentials (username, password and port) to be used by operator to connect to ClickHouse instances # for: # 1. Metrics requests # 2. Schema maintenance # 3. DROP DNS CACHE # User with such credentials can be specified in additional ClickHouse .xml config files, # located in `chUsersConfigsPath` folder chUsername: "clickhouse_operator" chPassword: "clickhouse_operator_password" # Location of k8s Secret with username and password to be used by operator to connect to ClickHouse instances # Can be used instead of explicitly specified username and password chCredentialsSecretNamespace: "" chCredentialsSecretName: "" # Port where to connect to ClickHouse instances to chPort: 8123 ################################################ ## ## Log parameters ## ################################################ logtostderr: "true" alsologtostderr: "false" v: "1" stderrthreshold: "" vmodule: "" log_backtrace_at: "" ################################################ ## ## Runtime parameters ## ################################################ # Max number of concurrent reconciles in progress reconcileThreadsNumber: 10 reconcileWaitExclude: true reconcileWaitInclude: false ################################################ ## ## Labels management parameters ## ################################################ # When propagating labels from the chi's `metadata.labels` section to child objects' `metadata.labels`, # exclude labels from the following list: #excludeFromPropagationLabels: # - "labelA" # - "labelB" # Whether to append *Scope* labels to StatefulSet and Pod. # Full list of available *scope* labels check in labeler.go # LabelShardScopeIndex # LabelReplicaScopeIndex # LabelCHIScopeIndex # LabelCHIScopeCycleSize # LabelCHIScopeCycleIndex # LabelCHIScopeCycleOffset # LabelClusterScopeIndex # LabelClusterScopeCycleSize # LabelClusterScopeCycleIndex # LabelClusterScopeCycleOffset appendScopeLabels: "no" ################################################ ## ## Pod management parameters ## ################################################ # Grace period for Pod termination. # How many seconds to wait between sending # SIGTERM and SIGKILL during Pod termination process. # Increase this number is case of slow shutdown. terminationGracePeriod: 30 --- # Template Parameters: # # NAME=etc-clickhouse-operator-confd-files # NAMESPACE=posthog # COMMENT= # apiVersion: v1 kind: ConfigMap metadata: name: etc-clickhouse-operator-confd-files namespace: {{ .Values.clickhouseOperator.namespace | default .Release.Namespace }} labels: app: clickhouse-operator data: --- # Template Parameters: # # NAME=etc-clickhouse-operator-configd-files # NAMESPACE=posthog # COMMENT= # apiVersion: v1 kind: ConfigMap metadata: name: etc-clickhouse-operator-configd-files namespace: {{ .Values.clickhouseOperator.namespace | default .Release.Namespace }} labels: app: clickhouse-operator data: 01-clickhouse-01-listen.xml: | :: 0.0.0.0 1 01-clickhouse-02-logger.xml: | debug /var/log/clickhouse-server/clickhouse-server.log /var/log/clickhouse-server/clickhouse-server.err.log 1000M 10 1 01-clickhouse-03-query_log.xml: | system query_log
Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day 7500
01-clickhouse-04-part_log.xml: | system part_log
Engine = MergeTree PARTITION BY event_date ORDER BY event_time TTL event_date + interval 30 day 7500
--- # Template Parameters: # # NAME=etc-clickhouse-operator-templatesd-files # NAMESPACE=posthog # COMMENT= # apiVersion: v1 kind: ConfigMap metadata: name: etc-clickhouse-operator-templatesd-files namespace: {{ .Values.clickhouseOperator.namespace | default .Release.Namespace }} labels: app: clickhouse-operator data: 001-templates.json.example: | { "apiVersion": "clickhouse.altinity.com/v1", "kind": "ClickHouseInstallationTemplate", "metadata": { "name": "01-default-volumeclaimtemplate" }, "spec": { "templates": { "volumeClaimTemplates": [ { "name": "chi-default-volume-claim-template", "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "2Gi" } } } } ], "podTemplates": [ { "name": "chi-default-oneperhost-pod-template", "distribution": "OnePerHost", "spec": { "containers" : [ { "name": "clickhouse", "image": "yandex/clickhouse-server:19.3.7", "ports": [ { "name": "http", "containerPort": 8123 }, { "name": "client", "containerPort": 9000 }, { "name": "interserver", "containerPort": 9009 } ] } ] } } ] } } } default-pod-template.yaml.example: | apiVersion: "clickhouse.altinity.com/v1" kind: "ClickHouseInstallationTemplate" metadata: name: "default-oneperhost-pod-template" spec: templates: podTemplates: - name: default-oneperhost-pod-template distribution: "OnePerHost" default-storage-template.yaml.example: | apiVersion: "clickhouse.altinity.com/v1" kind: "ClickHouseInstallationTemplate" metadata: name: "default-storage-template-2Gi" spec: templates: volumeClaimTemplates: - name: default-storage-template-2Gi spec: accessModes: - ReadWriteOnce resources: requests: storage: 2Gi readme: | Templates in this folder are packaged with an operator and available via 'useTemplate' --- # Template Parameters: # # NAME=etc-clickhouse-operator-usersd-files # NAMESPACE=posthog # COMMENT= # apiVersion: v1 kind: ConfigMap metadata: name: etc-clickhouse-operator-usersd-files namespace: {{ .Values.clickhouseOperator.namespace | default .Release.Namespace }} labels: app: clickhouse-operator data: 01-clickhouse-user.xml: | 127.0.0.1 0.0.0.0/0 ::/0 716b36073a90c6fe1d445ac1af85f4777c5b7a155cea359961826a030513e448 clickhouse_operator default 0 1 10 02-clickhouse-default-profile.xml: | 1 1000 1 1 03-database-ordinary.xml: | Ordinary {{- end }}