Skip to content

Commit afdda4a

Browse files
committed
Use lkp for kms
1 parent 13bc5e6 commit afdda4a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

kms/tapp/deploy-to-teepod.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ fi
5757

5858
$CLI compose \
5959
--docker-compose "$COMPOSE_TMP" \
60-
--name tproxy \
61-
--kms \
60+
--name kms \
61+
--local-key-provider \
6262
--public-logs \
6363
--public-sysinfo \
6464
--output .app-compose.json

teepod/src/teepod-cli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@ def main():
415415
compose_parser.add_argument('--prelaunch-script', default=None, help='Path to prelaunch script')
416416
compose_parser.add_argument('--kms', action='store_true', help='Enable KMS')
417417
compose_parser.add_argument('--tproxy', action='store_true', help='Enable TProxy')
418+
compose_parser.add_argument('--local-key-provider', action='store_true', help='Enable local key provider')
418419
compose_parser.add_argument('--public-logs', action='store_true', help='Enable public logs')
419420
compose_parser.add_argument('--public-sysinfo', action='store_true', help='Enable public sysinfo')
420421
compose_parser.add_argument('--output', required=True, help='Path to output app-compose.json file')
@@ -456,6 +457,7 @@ def main():
456457
docker_compose=args.docker_compose,
457458
kms_enabled=args.kms,
458459
tproxy_enabled=args.tproxy,
460+
local_key_provider_enabled=args.local_key_provider,
459461
public_logs=args.public_logs,
460462
public_sysinfo=args.public_sysinfo,
461463
output=args.output

0 commit comments

Comments
 (0)