mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 07:03: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
|
||||
# Copyright (c) 2024 Matter Labs
|
||||
{ teepot
|
||||
, nixsgxLib
|
||||
, pkgs
|
||||
, container-name ? "teepot-self-attestation-test-sgx-azure"
|
||||
, tag ? null
|
||||
, isAzure ? true
|
||||
}:
|
||||
nixsgxLib.mkSGXContainer {
|
||||
pkgs.lib.tee.sgxGramineContainer {
|
||||
name = container-name;
|
||||
inherit tag;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
# Copyright (c) 2024 Matter Labs
|
||||
{ teepot
|
||||
, nixsgxLib
|
||||
, pkgs
|
||||
, container-name ? "teepot-vault-admin-sgx-azure"
|
||||
, tag ? null
|
||||
, isAzure ? null
|
||||
}:
|
||||
nixsgxLib.mkSGXContainer {
|
||||
pkgs.lib.tee.sgxGramineContainer {
|
||||
name = container-name;
|
||||
inherit tag;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
# Copyright (c) 2024 Matter Labs
|
||||
{ teepot
|
||||
, nixsgxLib
|
||||
, pkgs
|
||||
, vat
|
||||
, vault
|
||||
, container-name ? "teepot-vault-sgx-azure"
|
||||
|
@ -12,7 +12,7 @@ let
|
|||
entrypoint = "${teepot.teepot.tee_ratls_preexec}/bin/tee-ratls-preexec";
|
||||
appDir = "/opt/vault";
|
||||
in
|
||||
nixsgxLib.mkSGXContainer {
|
||||
pkgs.lib.tee.sgxGramineContainer {
|
||||
name = container-name;
|
||||
inherit tag;
|
||||
inherit appDir;
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
# Copyright (c) 2024 Matter Labs
|
||||
{ teepot
|
||||
, nixsgxLib
|
||||
, pkgs
|
||||
, vat
|
||||
, container-name ? "teepot-vault-unseal-sgx-azure"
|
||||
, tag ? null
|
||||
, isAzure ? true
|
||||
}:
|
||||
nixsgxLib.mkSGXContainer {
|
||||
pkgs.lib.tee.sgxGramineContainer {
|
||||
name = container-name;
|
||||
inherit tag isAzure;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue