mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 15:13:56 +02:00
chore: rename nixsgxLib.mkSGXContainer
to pkgs.lib.tee.sgxGramineContainer
Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
parent
15109610d8
commit
d88f79d239
4 changed files with 8 additions and 8 deletions
|
@ -1,12 +1,12 @@
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright (c) 2024 Matter Labs
|
# Copyright (c) 2024 Matter Labs
|
||||||
{ teepot
|
{ teepot
|
||||||
, nixsgxLib
|
, pkgs
|
||||||
, container-name ? "teepot-self-attestation-test-sgx-azure"
|
, container-name ? "teepot-self-attestation-test-sgx-azure"
|
||||||
, tag ? null
|
, tag ? null
|
||||||
, isAzure ? true
|
, isAzure ? true
|
||||||
}:
|
}:
|
||||||
nixsgxLib.mkSGXContainer {
|
pkgs.lib.tee.sgxGramineContainer {
|
||||||
name = container-name;
|
name = container-name;
|
||||||
inherit tag;
|
inherit tag;
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright (c) 2024 Matter Labs
|
# Copyright (c) 2024 Matter Labs
|
||||||
{ teepot
|
{ teepot
|
||||||
, nixsgxLib
|
, pkgs
|
||||||
, container-name ? "teepot-vault-admin-sgx-azure"
|
, container-name ? "teepot-vault-admin-sgx-azure"
|
||||||
, tag ? null
|
, tag ? null
|
||||||
, isAzure ? null
|
, isAzure ? null
|
||||||
}:
|
}:
|
||||||
nixsgxLib.mkSGXContainer {
|
pkgs.lib.tee.sgxGramineContainer {
|
||||||
name = container-name;
|
name = container-name;
|
||||||
inherit tag;
|
inherit tag;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright (c) 2024 Matter Labs
|
# Copyright (c) 2024 Matter Labs
|
||||||
{ teepot
|
{ teepot
|
||||||
, nixsgxLib
|
, pkgs
|
||||||
, vat
|
, vat
|
||||||
, vault
|
, vault
|
||||||
, container-name ? "teepot-vault-sgx-azure"
|
, container-name ? "teepot-vault-sgx-azure"
|
||||||
|
@ -12,7 +12,7 @@ let
|
||||||
entrypoint = "${teepot.teepot.tee_ratls_preexec}/bin/tee-ratls-preexec";
|
entrypoint = "${teepot.teepot.tee_ratls_preexec}/bin/tee-ratls-preexec";
|
||||||
appDir = "/opt/vault";
|
appDir = "/opt/vault";
|
||||||
in
|
in
|
||||||
nixsgxLib.mkSGXContainer {
|
pkgs.lib.tee.sgxGramineContainer {
|
||||||
name = container-name;
|
name = container-name;
|
||||||
inherit tag;
|
inherit tag;
|
||||||
inherit appDir;
|
inherit appDir;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
# Copyright (c) 2024 Matter Labs
|
# Copyright (c) 2024 Matter Labs
|
||||||
{ teepot
|
{ teepot
|
||||||
, nixsgxLib
|
, pkgs
|
||||||
, vat
|
, vat
|
||||||
, container-name ? "teepot-vault-unseal-sgx-azure"
|
, container-name ? "teepot-vault-unseal-sgx-azure"
|
||||||
, tag ? null
|
, tag ? null
|
||||||
, isAzure ? true
|
, isAzure ? true
|
||||||
}:
|
}:
|
||||||
nixsgxLib.mkSGXContainer {
|
pkgs.lib.tee.sgxGramineContainer {
|
||||||
name = container-name;
|
name = container-name;
|
||||||
inherit tag isAzure;
|
inherit tag isAzure;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue