Skip to content

Commit fe9846b

Browse files
authored
fix(rel): update image tags from insiders (#592)
Update image tags from insiders to a know version. `sg ops` will not pickup insiders and misses the tag in our release workflow. ### Checklist - [x] Follow the [manual testing process](https://github.com/sourcegraph/deploy-sourcegraph-helm/blob/main/TEST.md) - [x] Update [changelog](https://github.com/sourcegraph/deploy-sourcegraph-helm/blob/main/charts/sourcegraph/CHANGELOG.md) - [x] Update [Kubernetes update doc](https://docs.sourcegraph.com/admin/updates/kubernetes) ### Test plan CI - manual test
1 parent 22129c6 commit fe9846b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

charts/sourcegraph/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In addition to the documented values, all services also support the following va
6161
| codeInsightsDB.enabled | bool | `true` | Enable `codeinsights-db` PostgreSQL server |
6262
| codeInsightsDB.env | object | `{}` | Environment variables for the `codeinsights-db` container |
6363
| codeInsightsDB.existingConfig | string | `""` | Name of existing ConfigMap for `codeinsights-db`. It must contain a `postgresql.conf` key. |
64-
| codeInsightsDB.image.defaultTag | string | `"insiders"` | Docker image tag for the `codeinsights-db` image |
64+
| codeInsightsDB.image.defaultTag | string | `"5.10.1164"` | Docker image tag for the `codeinsights-db` image |
6565
| codeInsightsDB.image.name | string | `"postgresql-16-codeinsights"` | Docker image name for the `codeinsights-db` image |
6666
| codeInsightsDB.init.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":70,"runAsUser":70}` | Security context for the `alpine` initContainer, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
6767
| codeInsightsDB.name | string | `"codeinsights-db"` | Name used by resources. Does not affect service names or PVCs. |
@@ -81,7 +81,7 @@ In addition to the documented values, all services also support the following va
8181
| codeIntelDB.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":999,"runAsUser":999}` | Security context for the `codeintel-db` 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
| codeIntelDB.enabled | bool | `true` | Enable `codeintel-db` PostgreSQL server |
8383
| codeIntelDB.existingConfig | string | `""` | Name of existing ConfigMap for `codeintel-db`. It must contain a `postgresql.conf` key |
84-
| codeIntelDB.image.defaultTag | string | `"insiders"` | Docker image tag for the `codeintel-db` image |
84+
| codeIntelDB.image.defaultTag | string | `"5.10.1164"` | Docker image tag for the `codeintel-db` image |
8585
| codeIntelDB.image.name | string | `"postgresql-16"` | Docker image name for the `codeintel-db` image |
8686
| codeIntelDB.name | string | `"codeintel-db"` | Name used by resources. Does not affect service names or PVCs. |
8787
| codeIntelDB.podSecurityContext | object | `{"fsGroup":999,"fsGroupChangePolicy":"OnRootMismatch","runAsUser":999}` | Security context for the `codeintel-db` pod, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) |
@@ -223,7 +223,7 @@ In addition to the documented values, all services also support the following va
223223
| pgsql.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"runAsGroup":999,"runAsUser":999}` | Security context for the `pgsql` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) |
224224
| pgsql.enabled | bool | `true` | Enable `pgsql` PostgreSQL server |
225225
| pgsql.existingConfig | string | `""` | Name of existing ConfigMap for `pgsql`. It must contain a `postgresql.conf` key |
226-
| pgsql.image.defaultTag | string | `"insiders"` | Docker image tag for the `pgsql` image |
226+
| pgsql.image.defaultTag | string | `"5.10.1164"` | Docker image tag for the `pgsql` image |
227227
| pgsql.image.name | string | `"postgresql-16"` | Docker image name for the `pgsql` image |
228228
| pgsql.name | string | `"pgsql"` | Name used by resources. Does not affect service names or PVCs. |
229229
| pgsql.podSecurityContext | object | `{"fsGroup":999,"fsGroupChangePolicy":"OnRootMismatch","runAsGroup":999,"runAsUser":999}` | Security context for the `pgsql` pod, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) |

charts/sourcegraph/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ codeInsightsDB:
174174
additionalConfig: ""
175175
image:
176176
# -- Docker image tag for the `codeinsights-db` image
177-
defaultTag: insiders
177+
defaultTag: 5.10.1164
178178
# -- Docker image name for the `codeinsights-db` image
179179
name: "postgresql-16-codeinsights"
180180
# -- Security context for the `codeinsights-db` container,
@@ -245,7 +245,7 @@ codeIntelDB:
245245
additionalConfig: ""
246246
image:
247247
# -- Docker image tag for the `codeintel-db` image
248-
defaultTag: insiders
248+
defaultTag: 5.10.1164
249249
# -- Docker image name for the `codeintel-db` image
250250
name: "postgresql-16"
251251
# -- Security context for the `codeintel-db` container,
@@ -729,7 +729,7 @@ pgsql:
729729
additionalConfig: ""
730730
image:
731731
# -- Docker image tag for the `pgsql` image
732-
defaultTag: insiders
732+
defaultTag: 5.10.1164
733733
# -- Docker image name for the `pgsql` image
734734
name: "postgresql-16"
735735
# -- Security context for the `pgsql` container,

0 commit comments

Comments
 (0)