Skip to content

Commit 53f1c99

Browse files
chore: pass BUILD_INFO via deployments
1 parent 8afbd79 commit 53f1c99

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

nix/cardano-services/deployments.nix

+36
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ in {
2121
{
2222
name = "backend";
2323
image = cell.oci-images.cardano-services.image.name;
24+
env = dmerge.append [
25+
{
26+
name = "BUILD_INFO";
27+
value = cell.oci-images.cardano-services.meta.buildInfo;
28+
}
29+
];
2430
}
2531
];
2632
};
@@ -29,6 +35,12 @@ in {
2935
{
3036
name = "handle-provider";
3137
image = cell.oci-images.cardano-services.image.name;
38+
env = dmerge.append [
39+
{
40+
name = "BUILD_INFO";
41+
value = cell.oci-images.cardano-services.meta.buildInfo;
42+
}
43+
];
3244
}
3345
];
3446
};
@@ -37,6 +49,12 @@ in {
3749
{
3850
name = "handle-projector";
3951
image = cell.oci-images.cardano-services.image.name;
52+
env = dmerge.append [
53+
{
54+
name = "BUILD_INFO";
55+
value = cell.oci-images.cardano-services.meta.buildInfo;
56+
}
57+
];
4058
}
4159
];
4260
};
@@ -45,6 +63,12 @@ in {
4563
{
4664
name = "pg-boss-worker";
4765
image = cell.oci-images.cardano-services.image.name;
66+
env = dmerge.append [
67+
{
68+
name = "BUILD_INFO";
69+
value = cell.oci-images.cardano-services.meta.buildInfo;
70+
}
71+
];
4872
}
4973
];
5074
};
@@ -53,6 +77,12 @@ in {
5377
{
5478
name = "stake-pool-projector";
5579
image = cell.oci-images.cardano-services.image.name;
80+
env = dmerge.append [
81+
{
82+
name = "BUILD_INFO";
83+
value = cell.oci-images.cardano-services.meta.buildInfo;
84+
}
85+
];
5686
}
5787
];
5888
};
@@ -61,6 +91,12 @@ in {
6191
{
6292
name = "stake-pool-provider";
6393
image = cell.oci-images.cardano-services.image.name;
94+
env = dmerge.append [
95+
{
96+
name = "BUILD_INFO";
97+
value = cell.oci-images.cardano-services.meta.buildInfo;
98+
}
99+
];
64100
}
65101
];
66102
};

nix/cardano-services/oci-images.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ let
22
inherit (inputs) std self;
33

44
# TODO: express this as OCI labels (what they are for)
5-
BUILD_INFO = builtins.toJSON {
5+
buildInfo = builtins.toJSON {
66
inherit (self) lastModified lastModifiedDate rev;
77
shortRev = self.shortRev or "no rev";
88
extra = {
@@ -15,10 +15,8 @@ in {
1515
cardano-services = std.lib.ops.mkStandardOCI {
1616
name = "926093910549.dkr.ecr.us-east-1.amazonaws.com/cardano-services";
1717
operable = cell.operables.cardano-services;
18-
config.Env = [
19-
"BUILD_INFO=${BUILD_INFO}"
20-
];
2118
meta.description = "Minimal Cardano Services OCI Image";
2219
meta.versions = builtins.fromJSON (builtins.readFile (self + /packages/cardano-services-client/version.json));
20+
meta.buildInfo = buildInfo;
2321
};
2422
}

0 commit comments

Comments
 (0)