Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.0.23 #508

Merged
merged 1 commit into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## v0.0.23

### Added

- [#388](https://github.com/spegel-org/spegel/pull/388) Add support for deploying the Grafana dashboard with the Helm chart.

### Changed
Expand All @@ -26,10 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#498](https://github.com/spegel-org/spegel/pull/498) Update to Go 1.22.
- [#499](https://github.com/spegel-org/spegel/pull/499) Add paralleltest linter and set all unit tests to run in parallel.
- [#501](https://github.com/spegel-org/spegel/pull/501) Rename mock router to memory router and add tests.

### Deprecated

### Removed
- [#507](https://github.com/spegel-org/spegel/pull/507) Change default resolve timeout to 20ms.

### Fixed

Expand All @@ -39,8 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#491](https://github.com/spegel-org/spegel/pull/491) Fix so that resolve timeout does not cancel mirroring attempts.
- [#496](https://github.com/spegel-org/spegel/pull/496) Fix p2p bootstrap to run on failed readiness check.

### Security

## v0.0.22

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This has the benefit of reducing workload startup times and egress traffic as im
Before installing Spegel check the [compatibility guide](./docs/COMPATIBILITY.md) to make sure that it will work with your specific Kubernetes flavor. If everything checks out, the easiest method to deploy Spegel is with Helm.

```shell
helm upgrade --create-namespace --namespace spegel --install --version v0.0.22 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
helm upgrade --create-namespace --namespace spegel --install --version v0.0.23 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
```

Refer to the [Helm Chart](./charts/spegel) for detailed configuration documentation.
Expand Down
6 changes: 3 additions & 3 deletions charts/spegel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Make sure that you have read the [compatibility guide](../../docs/COMPATIBILITY.
Delpoy Spegel with the Helm CLI.

```sh
helm upgrade --create-namespace --namespace spegel --install --version v0.0.22 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
helm upgrade --create-namespace --namespace spegel --install --version v0.0.23 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
```

### Flux
Expand Down Expand Up @@ -44,7 +44,7 @@ spec:
chart:
spec:
chart: spegel
version: "v0.0.22"
version: "v0.0.23"
interval: 5m
sourceRef:
kind: HelmRepository
Expand Down Expand Up @@ -102,4 +102,4 @@ spec:
| spegel.resolveLatestTag | bool | `true` | When true latest tags will be resolved to digests. |
| spegel.resolveTags | bool | `true` | When true Spegel will resolve tags to digests. |
| tolerations | list | `[{"key":"CriticalAddonsOnly","operator":"Exists"},{"effect":"NoExecute","operator":"Exists"},{"effect":"NoSchedule","operator":"Exists"}]` | Tolerations for pod assignment. |
| updateStrategy | object | `{}` | An update strategy to replace existing pods with new pods. |
| updateStrategy | object | `{}` | An update strategy to replace existing pods with new pods. |
6 changes: 3 additions & 3 deletions charts/spegel/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Make sure that you have read the [compatibility guide](../../docs/COMPATIBILITY.
Delpoy Spegel with the Helm CLI.

```sh
helm upgrade --create-namespace --namespace spegel --install --version v0.0.22 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
helm upgrade --create-namespace --namespace spegel --install --version v0.0.23 spegel oci://ghcr.io/spegel-org/helm-charts/spegel
```

### Flux
Expand Down Expand Up @@ -45,11 +45,11 @@ spec:
chart:
spec:
chart: spegel
version: "v0.0.22"
version: "v0.0.23"
interval: 5m
sourceRef:
kind: HelmRepository
name: spegel
```

{{ template "chart.valuesSection" . }}
{{ template "chart.valuesSection" . }}
Loading