Skip to content

Commit fa458b7

Browse files
gbartoliniNiccoloFei
authored andcommitted
chore: initial review
Signed-off-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com>
1 parent e6347ae commit fa458b7

File tree

11 files changed

+31
-16
lines changed

11 files changed

+31
-16
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ CloudNativePG actively maintains the following third-party extensions, provided
3232
they are maintained by their respective authors, and PostgreSQL Debian Group
3333
(PGDG) packages are available.
3434

35-
| Extension | Description | Project URL |
36-
| :--- | :--- | :--- |
37-
| **[pgAudit](pgaudit)** | PostgreSQL audit extension | [https://github.com/pgaudit/pgaudit](https://github.com/pgaudit/pgaudit) |
38-
| **[pgvector](pgvector)** | Vector similarity search for PostgreSQL | [https://github.com/pgvector/pgvector](https://github.com/pgvector/pgvector) |
39-
| **[PostGIS](postgis)** | Geospatial database extension for PostgreSQL | [https://postgis.net/](https://postgis.net/) |
40-
| **[Timescaledb](timescaledb)** | Time-series database for PostgreSQL | [https://github.com/timescale/timescaledb/](https://github.com/timescale/timescaledb/) |
35+
| Extension | Description | Project URL | Maintained by |
36+
| :--- | :--- | :--- | :--- |
37+
| **[pgAudit](pgaudit)** | PostgreSQL audit extension | [https://github.com/pgaudit/pgaudit](https://github.com/pgaudit/pgaudit) | CNPG maintainers |
38+
| **[pgvector](pgvector)** | Vector similarity search for PostgreSQL | [https://github.com/pgvector/pgvector](https://github.com/pgvector/pgvector) | CNPG maintainers |
39+
| **[PostGIS](postgis)** | Geospatial database extension for PostgreSQL | [https://postgis.net/](https://postgis.net/) | CNPG maintainers |
40+
| **[TimescaleDB Apache-2 Edition](timescaledb-oss)** | Time-series database for PostgreSQL (open source version).| [https://github.com/timescale/timescaledb/](https://github.com/timescale/timescaledb/) | @shusaan |
4141

4242

4343
Extensions are provided only for the OS versions already built by the
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ COPY --from=builder /usr/share/doc/timescaledb-2-oss-postgresql-${PG_MAJOR}/copy
2929
# Libraries — .so and bitcode for TimescaleDB
3030
COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/lib/timescaledb* /lib/
3131
COPY --from=builder /usr/lib/postgresql/${PG_MAJOR}/lib/timescaledb-2* /lib/
32-
32+
3333
# Extension SQL + control files
3434
COPY --from=builder /usr/share/postgresql/${PG_MAJOR}/extension/timescaledb* /share/extension/
3535

36-
USER 65532:65532
36+
USER 65532:65532
Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# TimescaleDB (Apache 2.0 Edition)
22

3-
[TimescaleDB](https://github.com/timescale/timescaledb) is an open-source time-series database built on PostgreSQL. It enables fast analytics, efficient storage, and powerful querying for time-series workloads.
3+
[TimescaleDB](https://github.com/timescale/timescaledb) is an open-source
4+
time-series database built on PostgreSQL. It enables fast analytics, efficient
5+
storage, and powerful querying for time-series workloads.
46

5-
**Note**: This image contains only the Apache 2.0 licensed components of TimescaleDB to ensure CNCF licensing compliance. Advanced features requiring the Timescale License (TSL) are not included.
7+
> [!NOTE]
8+
> This image contains only the Apache 2.0 licensed components of TimescaleDB
9+
> (known as "TimescaleDB Apache-2 Edition") to ensure CNCF licensing
10+
> compliance. Advanced features requiring the Timescale License (TSL) are not
11+
> included.
612
7-
This image provides a convenient way to deploy and manage the open-source core of `TimescaleDB` with
8-
[CloudNativePG](https://cloudnative-pg.io/).
13+
This image provides a convenient way to deploy and manage the open-source core
14+
of TimescaleDB with [CloudNativePG](https://cloudnative-pg.io/).
915

1016
## Usage
1117

@@ -36,7 +42,7 @@ spec:
3642
extensions:
3743
- name: timescaledb
3844
image:
39-
reference: ghcr.io/cloudnative-pg/timescaledb:2.24.0-18-trixie
45+
reference: ghcr.io/cloudnative-pg/timescaledb-oss:2.24.0-18-trixie
4046
```
4147
4248
### 2. Enable the extension in a database
@@ -89,11 +95,17 @@ SELECT create_hypertable('sensor_data', 'time');
8995
INSERT INTO sensor_data VALUES (NOW(), 1, 21.5, 45.0);
9096
```
9197

98+
## Maintainers
99+
100+
This container image is maintained by @shuusan.
101+
92102
## License
93103

94-
This image contains only the Apache 2.0 licensed components of TimescaleDB. Features requiring the Timescale License (TSL) are not included to ensure compliance with CNCF licensing requirements.
104+
This image contains only the Apache 2.0 licensed components of TimescaleDB.
105+
Features requiring the Timescale License (TSL) are not included to ensure
106+
compliance with CNCF licensing requirements.
95107

96-
All relevant license and copyright information for the `timescaledb` extension
108+
All relevant license and copyright information for the `timescaledb-oss` extension
97109
and its dependencies are bundled within the image at:
98110

99111
```text
@@ -102,3 +114,6 @@ and its dependencies are bundled within the image at:
102114

103115
By using this image, you agree to comply with the terms of the licenses
104116
contained therein.
117+
118+
For further information, refer to
119+
[Software Licensing: Timescale License (TSL)](https://www.tigerdata.com/legal/licenses).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: Copyright © contributors to CloudNativePG, established as CloudNativePG a Series of LF Projects, LLC.
22
# SPDX-License-Identifier: Apache-2.0
33
metadata = {
4-
name = "timescaledb"
4+
name = "timescaledb-oss"
55
sql_name = "timescaledb"
66
image_name = "timescaledb"
77
shared_preload_libraries = ["timescaledb"]
File renamed without changes.

0 commit comments

Comments
 (0)