Skip to content

Commit 67028cf

Browse files
Update changelog for 3.41 (#142)
* release: [email protected]\n\nTest Plan: n/a (#141)
1 parent 11cb1e5 commit 67028cf

File tree

8 files changed

+74
-60
lines changed

8 files changed

+74
-60
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### Checklist
22

33
- [ ] Follow the [manual testing process](https://github.com/sourcegraph/deploy-sourcegraph-helm/blob/main/TEST.md)
4+
- [ ] Update [changelog](https://github.com/sourcegraph/deploy-sourcegraph-helm/blob/main/charts/sourcegraph/CHANGELOG.md)
45

56
### Test plan
67

charts/sourcegraph-migrator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Chart for running Sourcegraph migrator
55
type: application
66

77
# Chart version, separate from Sourcegraph
8-
version: "3.40.1"
8+
version: "3.41.0"
99

1010
# Version of Sourcegraph release
11-
appVersion: "3.40.1"
11+
appVersion: "3.41.0"

charts/sourcegraph-migrator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You should consult the list of available [migrator commands]. Below is some exam
4242
- Perform initial migrations against external PostgreSQL databases prior to the Sourcegraph deployment
4343

4444
```sh
45-
helm upgrade --install -f <your-override-file.yaml> --version 3.40.1 sg-migrator sourcegraph/sourcegraph-migrator
45+
helm upgrade --install -f <your-override-file.yaml> --version 3.41.0 sg-migrator sourcegraph/sourcegraph-migrator
4646
```
4747

4848
### Add a migration log entry
@@ -52,7 +52,7 @@ helm upgrade --install -f <your-override-file.yaml> --version 3.40.1 sg-migrator
5252
Add an entry to the migration log after a site administrator has explicitly applied the contents of a migration file, learn more about troubleshooting a [dirty database].
5353

5454
```sh
55-
helm upgrade --install -f <your-override-file.yaml> --set "migrator.args={add-log,-db=frontend,-version=1528395834}" --version 3.40.1 sg-migrator sourcegraph/sourcegraph-migrator
55+
helm upgrade --install -f <your-override-file.yaml> --set "migrator.args={add-log,-db=frontend,-version=1528395834}" --version 3.41.0 sg-migrator sourcegraph/sourcegraph-migrator
5656
```
5757

5858
## Rendering manifests for kubectl deployment
@@ -80,7 +80,7 @@ In addition to the documented values, the `migrator` service also supports the f
8080
| migrator.args | list | `["up","-db=all"]` | Override default `migrator` container args Available commands can be found at https://docs.sourcegraph.com/admin/how-to/manual_database_migrations |
8181
| migrator.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":101,"runAsUser":100}` | Security context for the `migrator` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
8282
| migrator.env | object | `{}` | Environment variables for the `migrator` container |
83-
| migrator.image.defaultTag | string | `"3.40.1@sha256:84ecc67b0874a3b3125c33b5548f6193126436d3bf10e3ab448a9fdeac1a21c7"` | Docker image tag for the `migrator` image |
83+
| migrator.image.defaultTag | string | `"3.41.0@sha256:96542d49ff2063fdce00f36d78abbeea6f0397d62064b6deaf29426c0e988a17"` | Docker image tag for the `migrator` image |
8484
| migrator.image.name | string | `"migrator"` | Docker image name for the `migrator` image |
8585
| migrator.resources | object | `{"limits":{"cpu":"500m","memory":"100M"},"requests":{"cpu":"100m","memory":"50M"}}` | Resource requests & limits for the `migrator` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) |
8686
| pgsql.auth.existingSecret | string | `""` | Name of existing secret to use for pgsql credentials This should match the setting in the sourcegraph chart values |

charts/sourcegraph-migrator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pgsql:
102102
migrator:
103103
image:
104104
# -- Docker image tag for the `migrator` image
105-
defaultTag: 3.40.1@sha256:84ecc67b0874a3b3125c33b5548f6193126436d3bf10e3ab448a9fdeac1a21c7
105+
defaultTag: 3.41.0@sha256:96542d49ff2063fdce00f36d78abbeea6f0397d62064b6deaf29426c0e988a17
106106
# -- Docker image name for the `migrator` image
107107
name: "migrator"
108108
# -- Environment variables for the `migrator` container

charts/sourcegraph/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,21 @@ Use `**BREAKING**:` to denote a breaking change
44

55
# Changelog
66

7+
## Unreleased
8+
79
<!-- START CHANGELOG -->
10+
11+
## 3.41.0
12+
13+
Sourcegraph 3.41.0 is now available!
14+
15+
- [Changelog](https://sourcegraph.com/github.com/sourcegraph/sourcegraph/-/blob/CHANGELOG.md#3-41-0)
16+
- [Update](https://docs.sourcegraph.com/admin/updates)
17+
- [Release post](https://about.sourcegraph.com/blog/release/3.41)
18+
819
- Fixed mountPath and permissions used by codeinsights-db initContainer [#138](https://github.com/sourcegraph/deploy-sourcegraph-helm/pull/138)
20+
- Add mount path for a tmp dir to symbols deployment [#132](https://github.com/sourcegraph/deploy-sourcegraph-helm/pull/132)
21+
- Add startup probes to codeintel-db and pgsql deployments [#133](https://github.com/sourcegraph/deploy-sourcegraph-helm/pull/133)
922

1023
## 3.40.2-rev.1
1124

charts/sourcegraph/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Chart for installing Sourcegraph
55
type: application
66

77
# Chart version, separate from Sourcegraph
8-
version: "3.40.1"
8+
version: "3.41.0"
99

1010
# Version of Sourcegraph release
11-
appVersion: "3.40.1"
11+
appVersion: "3.41.0"

0 commit comments

Comments
 (0)