mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-14 11:37:37 +00:00
Use AT2 in template
Otherwise the template will be broken out of the box, as AT3 is impossible to build without network access: https://github.com/farcaller/nixhelm/issues/18
This commit is contained in:
parent
f5b5c9a57b
commit
7ffed36d0b
3 changed files with 9 additions and 1 deletions
7
templates/default/charts/bjw-s/app-template/default.nix
Normal file
7
templates/default/charts/bjw-s/app-template/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
# https://github.com/farcaller/nixhelm/issues/18
|
||||
{
|
||||
repo = "https://bjw-s.github.io/helm-charts/";
|
||||
chart = "app-template";
|
||||
version = "2.6.0";
|
||||
chartHash = "sha256-vKOSunnAkBn2lsUgZQ+SBMHo5qRVq31BRFc5TRDe9p8=";
|
||||
}
|
|
@ -28,7 +28,7 @@
|
|||
pname = "my-k8s-flake";
|
||||
in
|
||||
turbo.mkDerivation {
|
||||
charts = nixhelm.chartsDerivations.${system};
|
||||
charts = turbo.mkChartsWithNixhelm ./charts;
|
||||
} {
|
||||
inherit pname;
|
||||
version = "rolling";
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
builder = lib.app-template.build;
|
||||
args = {
|
||||
mainImage = "quay.io/pussthecatorg/breezewiki:latest";
|
||||
chart = charts.bjw-s.app-template;
|
||||
values = let
|
||||
port = 10416;
|
||||
in {
|
||||
|
|
Loading…
Reference in a new issue