Skip to content

Commit 8daf6a6

Browse files
committed
version: 1.16.1
1 parent e2b6cf8 commit 8daf6a6

15 files changed

Lines changed: 142 additions & 71 deletions

File tree

.gitlab/issue_templates/Patch Release.md

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Set title to:
44
55
```
6-
Release StackGres 1.16.1
6+
Release StackGres 1.16.2
77
```
88
99
Generate template using the command:
@@ -16,29 +16,29 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
1616

1717
# Pre Checks
1818

19-
1. [ ] Make sure all tasks marked with label ~"target_version::1.16.1" are done.
19+
1. [ ] Make sure all tasks marked with label ~"target_version::1.16.2" are done.
2020

2121
# Release steps
2222

23-
1. [ ] Create local branch `release-1.16.1` from `main-1.16`:
23+
1. [ ] Create local branch `release-1.16.2` from `main-1.16`:
2424
```
25-
git checkout "main-1.16" && git pull && git checkout -b "release-1.16.1"
25+
git checkout "main-1.16" && git pull && git checkout -b "release-1.16.2"
2626
```
27-
1. [ ] Update project version to `1.16.1`:
27+
1. [ ] Update project version to `1.16.2`:
2828
```
29-
sh -x stackgres-k8s/ci/utils/update-version.sh "1.16.1"
29+
sh -x stackgres-k8s/ci/utils/update-version.sh "1.16.2"
3030
```
3131
1. [ ] Update `CHANGELOG.md` (review commit messages to populate the changelog: `git log`)
32-
1. [ ] Add 1.16.1 section in `doc/content/en/01-introduction/06-versions/_index.md` with values from `stackgres-k8s/src/common/src/main/resources/versions.properties`
32+
1. [ ] Add 1.16.2 section in `doc/content/en/01-introduction/06-versions/_index.md` with values from `stackgres-k8s/src/common/src/main/resources/versions.properties`
3333
1. [ ] Check the changes to ensure everything is correct before commit:
3434
```
3535
git diff
3636
```
37-
1. [ ] Commit changes with message `version: 1.16.1`:
37+
1. [ ] Commit changes with message `version: 1.16.2`:
3838
```
39-
git commit -S -a -m "version: 1.16.1"
39+
git commit -S -a -m "version: 1.16.2"
4040
```
41-
1. [ ] Push `release-1.16.1` branch:
41+
1. [ ] Push `release-1.16.2` branch:
4242
4343
**This step requires at least one ARM instance with docker installed and a gitlab runner registered with the StackGres project. All this setup is already built in a template. The only action we need to do is scale up the auto-scaling group `sg-army-builder` auto scaling group.**
4444
@@ -53,9 +53,9 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
5353
curl -s https://gitlab.com/snippets/1985684/raw | bash -s -- -r "$GITLAB_TOKEN" -t m6gd.4xlarge -i "$AMI" -d $((4 * 60 * 60)) -df internal -dp /dev/nvme1n1 -rn army-builder -tl 'docker-junit-extension-runner, oci-image, ongresinc, stackgres-maven-runner, stackgres-native-build-runner, stackgres-quarkus-test-runner, stackgres-runner-v2, linux-arm64, stackgres-e2e-runner'
5454
```
5555
56-
Now we can push `release-1.16.1` branch and wait for the pipeline to complete:
56+
Now we can push `release-1.16.2` branch and wait for the pipeline to complete:
5757
```
58-
git push origin "release-1.16.1" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
58+
git push origin "release-1.16.2" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
5959
```
6060
6161
1. [ ] Perform preflight for operator images (make each of them pass pass the index health check by opening each image project):
@@ -66,16 +66,16 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
6666
6767
```
6868
cd stackgres-k8s/install/operator-sdk/openshift-certification/
69-
STACKGRES_VERSION="1.16.1" IMAGE_TAG="$(git rev-parse --short=8 HEAD)" sh get-images.sh | grep -F quay.io/stackgres/ | sed 's#quay\.io/stackgres/#registry.gitlab.com/ongresinc/stackgres/stackgres/#' | xargs -I % sh preflight.sh %
69+
STACKGRES_VERSION="1.16.2" IMAGE_TAG="$(git rev-parse --short=8 HEAD)" sh get-images.sh | grep -F quay.io/stackgres/ | sed 's#quay\.io/stackgres/#registry.gitlab.com/ongresinc/stackgres/stackgres/#' | xargs -I % sh preflight.sh %
7070
```
7171
72-
1. [ ] Create tag `1.16.1`:
72+
1. [ ] Create tag `1.16.2`:
7373
```
74-
git tag "1.16.1"
74+
git tag "1.16.2"
7575
```
76-
1. [ ] Push tag `1.16.1` to the origin and wait for the pipeline to complete:
76+
1. [ ] Push tag `1.16.2` to the origin and wait for the pipeline to complete:
7777
```
78-
git push origin "1.16.1"
78+
git push origin "1.16.2"
7979
```
8080
1. [ ] After pipeline succeeded, scale down the ARM runners (or terminate the instance created with the script):
8181
```
@@ -88,7 +88,7 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
8888
8989
```
9090
cd stackgres-k8s/install/operator-sdk/openshift-certification/
91-
STACKGRES_VERSION="1.16.1" IMAGE_TAG="1.16.1" sh get-images.sh | grep -F quay.io/stackgres/ | xargs -I % sh preflight.sh %
91+
STACKGRES_VERSION="1.16.2" IMAGE_TAG="1.16.2" sh get-images.sh | grep -F quay.io/stackgres/ | xargs -I % sh preflight.sh %
9292
```
9393
1. [ ] Create PR on Red Hat Certified Operators (wait for its completion):
9494
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/redhat-marketplace-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-certified-config`
@@ -101,15 +101,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
101101
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
102102
>
103103
> ```
104-
> git checkout -b "fix-bundle-1.16.1"
104+
> git checkout -b "fix-bundle-1.16.2"
105105
> git add .
106106
> git commit -m "fix: operator bundle deployment"
107-
> git push origin "fix-bundle-1.16.1" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
107+
> git push origin "fix-bundle-1.16.2" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
108108
> ```
109109
>
110110
> Repeat the PR creation step above.
111111
>
112-
> When PR is merged create a MR to `main-1.16.1` branch.
112+
> When PR is merged create a MR to `main-1.16.2` branch.
113113
1. [ ] Create PR on Red Hat Marketplace Operators (wait for its completion):
114114
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/certified-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-certified-config`
115115
@@ -121,15 +121,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
121121
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
122122
>
123123
> ```
124-
> git checkout -b "fix-bundle-1.16.1"
124+
> git checkout -b "fix-bundle-1.16.2"
125125
> git add .
126126
> git commit -m "fix: operator bundle deployment"
127-
> git push origin "fix-bundle-1.16.1" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
127+
> git push origin "fix-bundle-1.16.2" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
128128
> ```
129129
>
130130
> Repeat the PR creation step above.
131131
>
132-
> When PR is merged create a MR to `main-1.16.1` branch.
132+
> When PR is merged create a MR to `main-1.16.2` branch.
133133
1. [ ] Create PR on Red Hat Community Operators (wait for its completion):
134134
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/redhat-openshift-ecosystem/community-operators-prod` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-red-hat-community-config`
135135
@@ -141,15 +141,15 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
141141
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
142142
>
143143
> ```
144-
> git checkout -b "fix-bundle-1.16.1"
144+
> git checkout -b "fix-bundle-1.16.2"
145145
> git add .
146146
> git commit -m "fix: operator bundle deployment"
147-
> git push origin "fix-bundle-1.16.1" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
147+
> git push origin "fix-bundle-1.16.2" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
148148
> ```
149149
>
150150
> Repeat the PR creation step above.
151151
>
152-
> When PR is merged create a MR to `main-1.16.1` branch.
152+
> When PR is merged create a MR to `main-1.16.2` branch.
153153
1. [ ] Create PR on OperatorHub (wait for its completion):
154154
> File that export environment variable `FORK_GIT_URL` with the git URL (make sure user can perform push on such URL) of the project that forks project `https://github.com/k8s-operatorhub/community-operators` must be specified in POSIX shell script with path `~/.stackgres/operator-bundle-operatorhub-config`
155155
@@ -161,37 +161,37 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
161161
> The pipeline may fail and some changes to the operator bunle may be required. Perform such changes only on path `stackgres-k8s/install/operator-sdk/stackgres-operator/` on a separate branch:
162162
>
163163
> ```
164-
> git checkout -b "fix-bundle-1.16.1"
164+
> git checkout -b "fix-bundle-1.16.2"
165165
> git add .
166166
> git commit -m "fix: operator bundle deployment"
167-
> git push origin "fix-bundle-1.16.1" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
167+
> git push origin "fix-bundle-1.16.2" -o ci.variable="DO_IMAGES=true" -o ci.variable="DO_NATIVE=true" -o ci.variable="DO_ARM=true" -o ci.variable="DO_RELEASE_IMAGE=true"
168168
> ```
169169
>
170170
> Repeat the PR creation step above.
171171
>
172-
> When PR is merged create a MR to `main-1.16.1` branch.
173-
1. [ ] Edit the [release notes of tag 1.16.1](https://gitlab.com/ongresinc/stackgres/-/releases/new?tag_name=1.16.1) by Copying and Pasting `CHANGELOG.md` section for version `1.16.1` (GitLab)
174-
1. [ ] Merge local branch `release-1.16.1` into `main-1.16`:
172+
> When PR is merged create a MR to `main-1.16.2` branch.
173+
1. [ ] Edit the [release notes of tag 1.16.2](https://gitlab.com/ongresinc/stackgres/-/releases/new?tag_name=1.16.2) by Copying and Pasting `CHANGELOG.md` section for version `1.16.2` (GitLab)
174+
1. [ ] Merge local branch `release-1.16.2` into `main-1.16`:
175175
```
176-
git checkout "main-1.16" && git pull && git merge --ff-only "release-1.16.1"
176+
git checkout "main-1.16" && git pull && git merge --ff-only "release-1.16.2"
177177
```
178-
1. [ ] Update version to be `1.16.2-SNAPSHOT`:
178+
1. [ ] Update version to be `1.16.3-SNAPSHOT`:
179179
```
180-
sh -x stackgres-k8s/ci/utils/update-version.sh "1.16.2-SNAPSHOT" "main-1.16"
181-
git commit -a -m "version: 1.16.2-SNAPSHOT"
180+
sh -x stackgres-k8s/ci/utils/update-version.sh "1.16.3-SNAPSHOT" "main-1.16"
181+
git commit -a -m "version: 1.16.3-SNAPSHOT"
182182
git push
183183
```
184-
1. [ ] Create branch `merge-1.16.1` from `main`:
184+
1. [ ] Create branch `merge-1.16.2` from `main`:
185185
```
186-
git checkout main && git pull && git checkout -b "merge-1.16.1"
186+
git checkout main && git pull && git checkout -b "merge-1.16.2"
187187
```
188-
1. [ ] Merge branch `main-1.16` into `merge-1.16.1`:
188+
1. [ ] Merge branch `main-1.16` into `merge-1.16.2`:
189189
```
190190
git merge "main-1.16"
191191
```
192-
1. [ ] Push `merge-1.16.1` to origin, create the merge request to merge it into `main` and wait for the pipeline to complete fixing any encountered issues:
192+
1. [ ] Push `merge-1.16.2` to origin, create the merge request to merge it into `main` and wait for the pipeline to complete fixing any encountered issues:
193193
```
194-
git push origin "merge-1.16.1"
194+
git push origin "merge-1.16.2"
195195
```
196196
197197
# Deploy Web
@@ -202,10 +202,10 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
202202
git checkout development && git pull
203203
```
204204
1. [ ] Edit `.gitlab-ci.yml`:
205-
* Change `STACKGRES_FULL_VERSIONS` by setting `1.16.1` as the first value.
206-
1. [ ] Commit changes with message `version: 1.16.1`:
205+
* Change `STACKGRES_FULL_VERSIONS` by setting `1.16.2` as the first value.
206+
1. [ ] Commit changes with message `version: 1.16.2`:
207207
```
208-
git commit -a -m 'version: 1.16.1'
208+
git commit -a -m 'version: 1.16.2'
209209
```
210210
1. [ ] Push development to origin:
211211
```
@@ -216,17 +216,17 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
216216
```
217217
git checkout master && git pull && git merge --ff-only development
218218
```
219-
1. [ ] Create tag `1.16.1`:
219+
1. [ ] Create tag `1.16.2`:
220220
```
221-
git tag 1.16.1
221+
git tag 1.16.2
222222
```
223223
1. [ ] Push master to origin:
224224
```
225225
git push
226226
```
227-
1. [ ] Push tag `1.16.1` to origin:
227+
1. [ ] Push tag `1.16.2` to origin:
228228
```
229-
git push origin 1.16.1
229+
git push origin 1.16.2
230230
```
231231
232232
# Post Checks
@@ -238,11 +238,11 @@ sh stackgres-k8s/ci/utils/generate-release-template.sh $VERSION
238238
# Changelog
239239
240240
~~~
241-
# :rocket: Release 1.16.1 (${DATE})
241+
# :rocket: Release 1.16.2 (${DATE})
242242
243243
## :notepad_spiral: NOTES
244244
245-
StackGres 1.16.1 is out! :confetti_ball: :champagne:
245+
StackGres 1.16.2 is out! :confetti_ball: :champagne:
246246
247247
So, what you are waiting for to try this release and have a look to the future of StackGres!
248248
@@ -273,15 +273,15 @@ To upgrade from a previous installation of the StackGres operator's helm chart y
273273
274274
To upgrade StackGres operator's (upgrade only works starting from 1.1 version or above) helm chart issue the following commands (replace namespace and release name if you used something different):
275275
276-
`helm upgrade -n "stackgres" "stackgres-operator" https://stackgres.io/downloads/stackgres-k8s/stackgres/1.16.1/helm/stackgres-operator.tgz`
276+
`helm upgrade -n "stackgres" "stackgres-operator" https://stackgres.io/downloads/stackgres-k8s/stackgres/1.16.2/helm/stackgres-operator.tgz`
277277
278278
> IMPORTANT: This release is incompatible with previous `alpha` or `beta` versions. Upgrading from those versions will require uninstalling completely StackGres including all clusters and StackGres CRDs (those in `stackgres.io` group) first.
279279
280280
Thank you for all the issues created, ideas, and code contributions by the StackGres Community!
281281
282-
## :twisted_rightwards_arrows: [FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.16.1)
282+
## :twisted_rightwards_arrows: [FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.16.2)
283283
~~~
284284
285-
/label ~StackGres ~"target_version::1.16.1" ~"team::DEV"
286-
/milestone %"StackGres 1.16.1"
285+
/label ~StackGres ~"target_version::1.16.2" ~"team::DEV"
286+
/milestone %"StackGres 1.16.2"
287287
/confidential

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
# :rocket: Release 1.16.1 (2025-04-21)
2+
3+
## :notepad_spiral: NOTES
4+
5+
StackGres 1.16.1 is out! :confetti_ball: :champagne:
6+
7+
This patch release fix a few issues encountered in version 1.16.0, please upgrade as soon as possible.
8+
9+
So, what you are waiting for to try this release and have a look to the future of StackGres!
10+
11+
## :sparkles: NEW FEATURES AND CHANGES
12+
13+
* Listen for PVC changes in order to reconcile clusters
14+
15+
## Web Console
16+
17+
Nothing new here! :eyes:
18+
19+
## :bug: FIXES
20+
21+
* SGShardedCluster fail adding Citus extensions for Postgres 17
22+
* Readiness Web client is not closed
23+
* When extension version is not set latest version is not chosen
24+
25+
## Web Console
26+
27+
* TPS not decoded for the delta encoding
28+
29+
## :construction: KNOWN ISSUES
30+
31+
* Backups may be restored with inconsistencies when performed with a Postgres instance running on a different architecture ([#1539](https://gitlab.com/ongresinc/stackgres/-/issues/1539))
32+
33+
## :up: UPGRADE
34+
35+
To upgrade from a previous installation of the StackGres operator's helm chart you will have to upgrade the helm chart release.
36+
For more detailed information please refer to [our documentation](https://stackgres.io/doc/latest/install/helm/upgrade/#upgrade-operator).
37+
38+
To upgrade StackGres operator's (upgrade only works starting from 1.1 version or above) helm chart issue the following commands (replace namespace and release name if you used something different):
39+
40+
`helm upgrade -n "stackgres" "stackgres-operator" https://stackgres.io/downloads/stackgres-k8s/stackgres/1.16.1/helm/stackgres-operator.tgz`
41+
42+
> IMPORTANT: This release is incompatible with previous `alpha` or `beta` versions. Upgrading from those versions will require uninstalling completely StackGres including all clusters and StackGres CRDs (those in `stackgres.io` group) first.
43+
44+
Thank you for all the issues created, ideas, and code contributions by the StackGres Community!
45+
46+
## :twisted_rightwards_arrows: [FULL LIST OF COMMITS](https://gitlab.com/ongresinc/stackgres/-/commits/1.16.1)
47+
148
# :rocket: Release 1.16.0 (2025-04-14)
249

350
## :notepad_spiral: NOTES

doc/content/en/01-introduction/06-versions/_index.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,30 @@ showToc: true
88

99
=======
1010

11+
## StackGres 1.16.1
12+
13+
| Component | Versions |
14+
| ------ | ----------- |
15+
| PostgreSQL 17 | 17.4, 17.2, 17.0 |
16+
| PostgreSQL 16 | 16.8, 16.6, 16.4, 16.3, 16.2, 16.1, 16.0 |
17+
| PostgreSQL 15 | 15.12, 15.10, 15.8, 15.7, 15.6, 15.5, 15.4, 15.3, 15.2, 15.1, 15.0 |
18+
| PostgreSQL 14 | 14.17, 14.15, 14.13, 14.12, 14.11, 14.10, 14.9, 14.8, 14.7, 14.6, 14.5, 14.4, ~14.2, 14.1, 14.0~ |
19+
| PostgreSQL 13 | 13.20, 13.18, 13.16 13.15, 13.14, 13.13, 13.12, 13.11, 13.10, 13.9, 13.8, 13.7, 13.6, 13.5, 13.4, 13.3, 13.2, 13.1, 13.0 |
20+
| PostgreSQL 12 | 12.22, 12.20, 12.19, 12.18, 12.17, 12.16, 12.15, 12.14, 12.13, 12.12, 12.11, 12.10, 12.9, 12.8, 12.7, 12.6, 12.5, 12.4, 12.3, 12.2 and 12.1 |
21+
| PostgreSQL for Babelfish 16 | 16.4, 16.2, 16.1 |
22+
| PostgreSQL for Babelfish 15 | 15.8, 15.5 |
23+
| PostgreSQL for Babelfish 14 | 14.11, 14.10, 14.3 |
24+
| PostgreSQL for Babelfish 13 | 13.9, 13.6 |
25+
| Patroni | 4.0.5, 4.0.4, 3.3.3, 3.3.2, 3.3.0, 3.2.2, 3.0.2, 2.1.4 |
26+
| WAL-G | 3.0.3, 3.0.2, 3.0.1, 2.0.1, 2.0.0, 1.1 |
27+
| PgBouncer | 1.24.0 |
28+
| Postgres Exporter | 0.17.1 |
29+
| Envoy | 1.33.2 |
30+
| Fluent-Bit | 4.0.0 |
31+
| Fluentd | 1.18.0 |
32+
| Babelfish Compass | 2025.04 |
33+
| OTEL Collector | 0.123.1 |
34+
1135
## StackGres 1.16.0
1236

1337
| Component | Versions |

stackgres-k8s/install/helm/stackgres-cluster/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: stackgres-cluster
3-
version: "1.16.1-SNAPSHOT"
3+
version: "1.16.1"
44
kubeVersion: "1.18.0-0 - 1.32.x-0"
55
description: StackGres Cluster
66
keywords:
@@ -18,5 +18,5 @@ maintainers:
1818
email: info@ongres.com
1919
url: https://ongres.com
2020
icon: https://gitlab.com/uploads/-/system/project/avatar/12584701/logo-stackgres.png?width=64
21-
appVersion: "1.16.1-SNAPSHOT"
21+
appVersion: "1.16.1"
2222
deprecated: false

stackgres-k8s/install/helm/stackgres-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: stackgres-operator
3-
version: "1.16.1-SNAPSHOT"
3+
version: "1.16.1"
44
kubeVersion: "1.18.0-0 - 1.32.x-O"
55
description: StackGres Operator
66
keywords:
@@ -20,5 +20,5 @@ maintainers:
2020
email: info@ongres.com
2121
url: https://ongres.com
2222
icon: https://gitlab.com/uploads/-/system/project/avatar/12584701/logo-stackgres.png?width=64
23-
appVersion: "1.16.1-SNAPSHOT"
23+
appVersion: "1.16.1"
2424
deprecated: false

0 commit comments

Comments
 (0)