Skip to content
This repository was archived by the owner on Dec 5, 2023. It is now read-only.

Commit 4571097

Browse files
authored
update dw image, add dw coredb manifest (#387)
* update dw image, add dw coredb manifest * Update sample-dw.yaml * Update data_warehouse.yaml
1 parent d02f887 commit 4571097

File tree

3 files changed

+84
-2
lines changed

3 files changed

+84
-2
lines changed

tembo-operator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "controller"
33
description = "Tembo Operator for Postgres"
4-
version = "0.20.1"
4+
version = "0.20.2"
55
edition = "2021"
66
default-run = "controller"
77
license = "Apache-2.0"

tembo-operator/src/stacks/templates/data_warehouse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: DataWarehouse
22
description: A Postgres instance equipped with configuration and extensions building a data warehouse on Postgres.
3-
image: "quay.io/tembo/standard-cnpg:15.3.0-1-1096aeb"
3+
image: "quay.io/tembo/dw-cnpg:15.3.0-1-0baf38f"
44
stack_version: 0.1.0
55
compute_templates:
66
- cpu: 2

tembo-operator/yaml/sample-dw.yaml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
apiVersion: coredb.io/v1alpha1
2+
kind: CoreDB
3+
metadata:
4+
name: tembo-dw
5+
spec:
6+
image: quay.io/tembo/dw-cnpg:15.3.0-1-0baf38f
7+
stack:
8+
name: DataWarehouse
9+
runtime_config:
10+
- name: autovacuum_vacuum_scale_factor
11+
value: "0.05"
12+
- name: autovacuum_vacuum_insert_scale_factor
13+
value: "0.05"
14+
- name: checkpoint_completion_target
15+
value: "0.95"
16+
- name: checkpoint_timeout
17+
value: 30min
18+
- name: cron.host
19+
value: /controller/run
20+
- name: pg_stat_statements.track
21+
value: top
22+
- name: shared_preload_libraries
23+
value: pg_stat_statements,pg_cron
24+
- name: track_io_timing
25+
value: 'on'
26+
- name: wal_level
27+
value: logical
28+
trunk_installs:
29+
- name: pg_stat_statements
30+
version: 1.10.0
31+
- name: hydra_columnar
32+
version: 1.0.0
33+
- name: pg_partman
34+
version: 4.7.3
35+
- name: pg_cron
36+
version: 1.5.2
37+
- name: postgres_fdw
38+
version: 1.1.0
39+
- name: redis_fdw
40+
version: 1.0.0
41+
- name: wrappers
42+
version: 0.1.15
43+
extensions:
44+
- name: pg_stat_statements
45+
locations:
46+
- database: postgres
47+
enabled: true
48+
version: 1.10.0
49+
- name: columnar
50+
locations:
51+
- database: postgres
52+
enabled: true
53+
version: '11.1-7'
54+
- name: pg_partman
55+
locations:
56+
- database: postgres
57+
enabled: true
58+
version: 4.7.3
59+
- name: pg_cron
60+
description: pg_cron
61+
locations:
62+
- database: postgres
63+
enabled: true
64+
version: 1.5.2
65+
- name: postgres_fdw
66+
description: postgres_fdw
67+
locations:
68+
- database: postgres
69+
enabled: true
70+
version: '1.1'
71+
- name: redis_fdw
72+
description: redis_fdw
73+
locations:
74+
- database: postgres
75+
enabled: true
76+
version: 1.0.0
77+
- name: wrappers
78+
description: wrappers
79+
locations:
80+
- database: postgres
81+
enabled: true
82+
version: 0.1.15

0 commit comments

Comments
 (0)