Skip to content

Commit 5546b64

Browse files
committed
promote-release: v7.0.2852
{"version":"v7.0.2852","inputs":"server=7.0.2852","type":"patch"}
1 parent a2ba456 commit 5546b64

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

charts/sourcegraph-executor/dind/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ In addition to the documented values, the `executor` and `private-docker-registr
7171
| sourcegraph.affinity | object | `{}` | Affinity, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) |
7272
| sourcegraph.image.defaultTag | string | `"{{ .Chart.AppVersion }}"` | Global docker image tag |
7373
| sourcegraph.image.pullPolicy | string | `"IfNotPresent"` | Global docker image pull policy |
74-
| sourcegraph.image.repository | string | `"us-docker.pkg.dev/sourcegraph-images/internal"` | Global docker image registry or prefix |
74+
| sourcegraph.image.repository | string | `"index.docker.io/sourcegraph"` | Global docker image registry or prefix |
7575
| sourcegraph.image.useGlobalTagAsDefault | bool | `false` | When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags |
7676
| sourcegraph.imagePullSecrets | list | `[]` | Mount named secrets containing docker credentials |
7777
| sourcegraph.labels | object | `{}` | Add a global label to all resources |

charts/sourcegraph-executor/dind/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sourcegraph:
88
# -- Global docker image pull policy
99
pullPolicy: IfNotPresent
1010
# -- Global docker image registry or prefix
11-
repository: us-docker.pkg.dev/sourcegraph-images/internal
11+
repository: index.docker.io/sourcegraph
1212
# -- When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags
1313
useGlobalTagAsDefault: false
1414
# -- Mount named secrets containing docker credentials

charts/sourcegraph-executor/k8s/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ In addition to the documented values, the `executor` and `private-docker-registr
6262
| executor.frontendExistingSecret | string | `""` | Name of existing k8s Secret to use for frontend password The name of the secret must match `executor.name`, i.e., the name of the helm release used to deploy the helm chart. The k8s Secret must contain the key `EXECUTOR_FRONTEND_PASSWORD` matching the site config `executors.accessToken` value. `executor.frontendPassword` is ignored if this is enabled. |
6363
| executor.frontendPassword | string | `""` | The shared secret configured in the Sourcegraph instance site config under executors.accessToken. Required if `executor.frontendExistingSecret`` is not configured. |
6464
| executor.frontendUrl | string | `""` | The external URL of the Sourcegraph instance. Required. **Recommended:** set to the internal service endpoint (e.g. `http://sourcegraph-frontend.sourcegraph.svc.cluster.local:30080` if Sourcegraph is deployed in the `sourcegraph` namespace). This will avoid unnecessary network charges as traffic will stay within the local network. |
65-
| executor.image.defaultTag | string | `"6.0.0@sha256:6dc771a0c281a41ef676213f2f84a63d99045cf2e58d43022554a8022070ed65"` | |
65+
| executor.image.defaultTag | string | `"7.0.2852@sha256:49173d99833d30892fd034917c4816909086c66610ca053b64ce595f3bfd745f"` | |
6666
| executor.image.name | string | `"executor-kubernetes"` | |
6767
| executor.kubeconfigPath | string | `""` | The path to the kubeconfig file. If not specified, the in-cluster config is used. |
6868
| executor.kubernetesJob.deadline | string | `"1200"` | The number of seconds after which a Kubernetes job will be terminated. |

charts/sourcegraph-executor/k8s/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ executor:
6161
configureRbac: true
6262
replicas: 1
6363
image:
64-
defaultTag: 6.0.0@sha256:6dc771a0c281a41ef676213f2f84a63d99045cf2e58d43022554a8022070ed65
64+
defaultTag: 7.0.2852@sha256:49173d99833d30892fd034917c4816909086c66610ca053b64ce595f3bfd745f
6565
name: "executor-kubernetes"
6666
resources:
6767
limits:

charts/sourcegraph-migrator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ In addition to the documented values, the `migrator` service also supports the f
8888
| sourcegraph.affinity | object | `{}` | Affinity, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) |
8989
| sourcegraph.image.defaultTag | string | `"{{ .Chart.AppVersion }}"` | Global docker image tag |
9090
| sourcegraph.image.pullPolicy | string | `"IfNotPresent"` | Global docker image pull policy |
91-
| sourcegraph.image.repository | string | `"us-docker.pkg.dev/sourcegraph-images/internal"` | Global docker image registry or prefix |
91+
| sourcegraph.image.repository | string | `"index.docker.io/sourcegraph"` | Global docker image registry or prefix |
9292
| sourcegraph.image.useGlobalTagAsDefault | bool | `false` | When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags |
9393
| sourcegraph.imagePullSecrets | list | `[]` | Mount named secrets containing docker credentials |
9494
| sourcegraph.labels | object | `{}` | Add a global label to all resources |

charts/sourcegraph-migrator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sourcegraph:
88
# -- Global docker image pull policy
99
pullPolicy: IfNotPresent
1010
# -- Global docker image registry or prefix
11-
repository: us-docker.pkg.dev/sourcegraph-images/internal
11+
repository: index.docker.io/sourcegraph
1212
# -- When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags
1313
useGlobalTagAsDefault: false
1414
# -- Mount named secrets containing docker credentials

charts/sourcegraph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ In addition to the documented values, all services also support the following va
308308
| sourcegraph.disableKubernetesSecrets | bool | `false` | Disable the creation of Kubernetes secrets objects |
309309
| sourcegraph.image.defaultTag | string | `"{{ .Chart.AppVersion }}"` | Global docker image tag |
310310
| sourcegraph.image.pullPolicy | string | `"IfNotPresent"` | Global docker image pull policy |
311-
| sourcegraph.image.repository | string | `"us-docker.pkg.dev/sourcegraph-images/internal"` | Global docker image registry or prefix |
311+
| sourcegraph.image.repository | string | `"index.docker.io/sourcegraph"` | Global docker image registry or prefix |
312312
| sourcegraph.image.useGlobalTagAsDefault | bool | `false` | When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags |
313313
| sourcegraph.imagePullSecrets | list | `[]` | Mount named secrets containing docker credentials |
314314
| sourcegraph.labels | object | `{}` | Add extra labels to all resources |

charts/sourcegraph/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sourcegraph:
99
# -- Global docker image pull policy
1010
pullPolicy: IfNotPresent
1111
# -- Global docker image registry or prefix
12-
repository: us-docker.pkg.dev/sourcegraph-images/internal
12+
repository: index.docker.io/sourcegraph
1313
# -- When set to true, sourcegraph.image.defaultTag is used as the default defaultTag for all services, instead of service-specific default defaultTags
1414
useGlobalTagAsDefault: false
1515
# -- Mount named secrets containing docker credentials

0 commit comments

Comments
 (0)