Skip to content

Commit 057b03c

Browse files
committed
Updated release script to properly change versions
1 parent 7c54fe6 commit 057b03c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs-website/docs/getting-started/deployment/helm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ helm install geopulse ./helm/geopulse -f oidc-values.yaml
190190
| Parameter | Description | Default |
191191
|-----------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
192192
| `backend.image.repository` | Backend image repository | `tess1o/geopulse-backend` |
193-
| `backend.image.tag` | Backend image tag. Use `1.8.1-native` for optimized builds (modern CPUs). Use `1.8.1-native-compat` for older CPUs (x86-64-v2) or Raspberry Pi 3/4. See CPU Compatibility section below for troubleshooting. | `1.8.1-native` |
193+
| `backend.image.tag` | Backend image tag. Use `1.9.0-native` for optimized builds (modern CPUs). Use `1.9.0-native-compat` for older CPUs (x86-64-v2) or Raspberry Pi 3/4. See CPU Compatibility section below for troubleshooting. | `1.9.0-native` |
194194
| `backend.replicaCount` | Number of backend replicas | `1` |
195195
| `backend.service.type` | Backend service type | `ClusterIP` |
196196
| `backend.service.port` | Backend service port | `8080` |
@@ -202,7 +202,7 @@ helm install geopulse ./helm/geopulse -f oidc-values.yaml
202202
| Parameter | Description | Default |
203203
|-----------------------------|-----------------------------|----------------------|
204204
| `frontend.image.repository` | Frontend image repository | `tess1o/geopulse-ui` |
205-
| `frontend.image.tag` | Frontend image tag | `1.8.1` |
205+
| `frontend.image.tag` | Frontend image tag | `1.9.0` |
206206
| `frontend.replicaCount` | Number of frontend replicas | `1` |
207207
| `frontend.service.type` | Frontend service type | `ClusterIP` |
208208
| `frontend.service.port` | Frontend service port | `80` |
@@ -366,7 +366,7 @@ kubectl logs -l app.kubernetes.io/component=backend
366366
# values-compat.yaml
367367
backend:
368368
image:
369-
tag: "1.8.1-native-compat" # Use compatible image for old CPUs
369+
tag: "1.9.0-native-compat" # Use compatible image for old CPUs
370370
```
371371
372372
Then upgrade your deployment:

update_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ for file in "${files_to_update[@]}"; do
6161
-e "s|(version )$CURRENT_VERSION|\\1$NEW_VERSION|g" \
6262
-e "s|(\`)$CURRENT_VERSION|\1$NEW_VERSION|g" \
6363
-e "s|$CURRENT_VERSION(\`)|$NEW_VERSION\\1|g" \
64-
-e "s|(\| )$CURRENT_VERSION( \|)|\\1$NEW_VERSION\\2|g" \
64+
-e "s/(\\| )$CURRENT_VERSION( \\|)/\\1$NEW_VERSION\\2/g" \
6565
-e "s|$CURRENT_VERSION(-native)|$NEW_VERSION\\1|g" \
6666
"$file"
6767
;;

0 commit comments

Comments
 (0)