Skip to content

Commit 98ee742

Browse files
committed
Preparing release 1.18
1 parent 4b231de commit 98ee742

25 files changed

+261
-348
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ Among many reasons, there are [5 main ones why we recommend Kubegres](https://ww
3333

3434
If you would like to install Kubegres, please read the page [Getting started](http://www.kubegres.io/doc/getting-started.html).
3535

36+
**Sponsor**
37+
38+
Kubegres is sponsored by [Etikbee](https://www.etikbee.com)
39+
which is using Kubegres in production with over 25 microservices each using a cluster of Postgres.
40+
Etikbee is a UK based marketplace which promotes reuse by allowing merchants
41+
to list their products for rent, for sale and advertise services such as product repair.
42+
3643
**Contribute**
3744

3845
If you would like to contribute to Kubegres, please read the page [How to contribute](http://www.kubegres.io/contribute/).
@@ -53,11 +60,6 @@ new features requested by organisations paying supports as long the new features
5360
We start working on the implementation of new features within 24h of the request from organisations paying supports.
5461
More details in the [support page](https://www.kubegres.io/support/).
5562

56-
**Sponsor**
57-
58-
If you would like to help this project by sponsoring it, we can display your company's logo on this GitHub page
59-
and on [https://www.kubegres.io](https://www.kubegres.io). More details in the [sponsor page](https://www.kubegres.io/sponsor/).
60-
6163
**Interesting links**
6264
* A webinar about Kubegres was hosted by PostgresConf on 25 May 2021. [Watch the recorded video.](https://postgresconf.org/conferences/2021_Postgres_Conference_Webinars/program/proposals/creating-a-resilient-postgresql-cluster-with-kubegres)
6365
* The availability of Kubegres was published on [PostgreSql's official website](https://www.postgresql.org/about/news/kubegres-is-available-as-open-source-2197/).

api/v1/zz_generated.deepcopy.go

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/kubegres.reactive-tech.io_kubegres.yaml

Lines changed: 54 additions & 313 deletions
Large diffs are not rendered by default.

config/localresource/custom-namespace/kubegres.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77

88
replicas: 3
9-
image: postgres:16.1
9+
image: postgres:16.2
1010
port: 5432
1111

1212
#imagePullSecrets:

config/localresource/default-namespace/kubegres.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77

88
replicas: 3
9-
image: postgres:16.1
9+
image: postgres:16.2
1010
#port: 5432
1111

1212
database:
@@ -100,8 +100,7 @@ spec:
100100
# sizeLimit: "600Mi"
101101
#
102102
# volumeClaimTemplates:
103-
# - metadata:
104-
# name: anyMount
103+
# - name: anyMount
105104
# spec:
106105
# accessModes: [ "ReadWriteOnce" ]
107106
# storageClassName: standard

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: reactivetechio/kubegres
8-
newTag: "1.17"
8+
newTag: "1.18"

internal/test/custom_namespace_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var _ = Describe("Creating Kubegres with a custom namespace", func() {
4040
var test = CustomNamespaceTest{}
4141

4242
BeforeEach(func() {
43-
Skip("Temporarily skipping test")
43+
//Skip("Temporarily skipping test")
4444

4545
namespace := customNamespace
4646
test.resourceRetriever = util2.CreateTestResourceRetriever(k8sClientTest, namespace)

internal/test/data_is_replicated_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var _ = Describe("Checking changes in Primary DB is replicated in Replica DBs",
3737
var test = DataIsReplicatedTest{}
3838

3939
BeforeEach(func() {
40-
Skip("Temporarily skipping test")
40+
//Skip("Temporarily skipping test")
4141

4242
namespace := resourceConfigs2.DefaultNamespace
4343
test.resourceRetriever = util2.CreateTestResourceRetriever(k8sClientTest, namespace)

internal/test/postgres_conf_wal_level_logical_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var _ = Describe("We set the wal-level to 'logical' and simulate when Primary in
3737
var test = PostgresConfWalLevelLogicalTest{}
3838

3939
BeforeEach(func() {
40-
Skip("Temporarily skipping test")
40+
//Skip("Temporarily skipping test")
4141

4242
namespace := resourceConfigs2.DefaultNamespace
4343
test.resourceRetriever = util2.CreateTestResourceRetriever(k8sClientTest, namespace)

internal/test/primary_failure_and_recovery_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var _ = Describe("Primary instances is not available, checking recovery works",
3737
var test = PrimaryFailureAndRecoveryTest{}
3838

3939
BeforeEach(func() {
40-
Skip("Temporarily skipping test")
40+
//Skip("Temporarily skipping test")
4141

4242
namespace := resourceConfigs2.DefaultNamespace
4343
test.resourceRetriever = util2.CreateTestResourceRetriever(k8sClientTest, namespace)

0 commit comments

Comments
 (0)