Skip to content

Commit

Permalink
Bump all nix dependencies
Browse files Browse the repository at this point in the history
This commit bumps all nix dependencies via `nix flake update`. The primary aim
here is to bump our go version to 1.22 in order to support installing
`setup-envtest` and Kubernetes 1.30.

See kubernetes-sigs/controller-runtime@4c2442e
  • Loading branch information
chrisseto authored and RafalKorepta committed May 15, 2024
1 parent 137d44d commit fb0912f
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 26 deletions.
31 changes: 31 additions & 0 deletions .github/setup-envtest.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
pname = "setup-envtest";
version = "0.18.2";

# Don't run tests.
doCheck = false;
doInstallCheck = false;

src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "controller-runtime";
rev = "v${version}";
hash = "sha256-fQgWwndxzBIi3zsNMYvFDXjetnaQF0NNK+qW8j4Wn/M=";
};

sourceRoot = "source/tools/setup-envtest";

vendorHash = "sha256-Xr5b/CRz/DMmoc4bvrEyAZcNufLIZOY5OGQ6yw4/W9k=";

meta = with lib; {
description = "A small tool that manages binaries for envtest";
homepage = "https://github.com/kubernetes-sigs/controller-runtime/tree/main/tools/setup-envtest";
license = licenses.asl20;
mainProgram = "setup-envtest";
};
}
2 changes: 1 addition & 1 deletion charts/connectors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This page describes the official Redpanda Connectors Helm Chart. In particular,
For instructions on how to install and use the chart, including how to override and customize the chart’s values, refer to the [deployment documentation](https://docs.redpanda.com/current/deploy/deployment-option/self-hosted/kubernetes/k-deploy-connectors/).

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

## Source Code

Expand Down
2 changes: 1 addition & 1 deletion charts/console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For instructions on how to install and use the chart, refer to the [deployment d
For instructions on how to override and customize the chart’s values, see [Configure Redpanda Console](https://docs.redpanda.com/docs/manage/kubernetes/configure-helm-chart/#configure-redpanda-console).

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

## Source Code

Expand Down
2 changes: 1 addition & 1 deletion charts/kminion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: The most popular Open Source Kafka JMX to Prometheus tool by the cr
This page describes the official Redpanda KMinion Helm Chart. In particular, this page describes the contents of the chart’s [`values.yaml` file](https://github.com/redpanda-data/helm-charts/blob/main/charts/kminion/values.yaml). Each of the settings is listed and described on this page, along with any default values.

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

## Source Code

Expand Down
2 changes: 1 addition & 1 deletion charts/operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This page describes the official Redpanda Operator Helm Chart. In particular, th
For instructions on how to install and use the chart, including how to override and customize the chart’s values, refer to the [deployment documentation](https://docs.redpanda.com/docs/deploy/deployment-option/self-hosted/kubernetes/kubernetes-deploy/).

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

## Source Code

Expand Down
2 changes: 1 addition & 1 deletion charts/redpanda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This page describes the official Redpanda Helm Chart. In particular, this page d
For instructions on how to install and use the chart, including how to override and customize the chart’s values, refer to the [deployment documentation](https://docs.redpanda.com/docs/deploy/deployment-option/self-hosted/kubernetes/kubernetes-deploy/).

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)

## Source Code

Expand Down
36 changes: 15 additions & 21 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fb0912f

Please sign in to comment.