forked from canonical/tdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup-tdx-config
55 lines (46 loc) · 2.28 KB
/
setup-tdx-config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
################################################################
# GENERAL #
################################################################
################################################################
# The TDX PPA to use
# By default, this is the release PPA
# but for development purpose, users can switch to dev PPA: tdx
################################################################
TDX_PPA=tdx-release
################################################################
# Enable the installation of DCAP packages from Canonical's
# repository. This flag is considered during host OS and guest
# OS setup.
# Set to 1 to enable
# By default, the attestation components are not installed
################################################################
TDX_SETUP_ATTESTATION=0
################################################################
# HOST #
################################################################
################################################################
# GUEST #
################################################################
################################################################
# Enable the intel optimized kernel for the guest
# Set to 1 to enable
# By default, the generic kernel is used
################################################################
TDX_SETUP_INTEL_KERNEL=0
################################################################
# Image configuration
# The base image is an Ubuntu 24.04 cloud image
# You can use a different image setting these two environment
# variables before running the setup script
################################################################
OFFICIAL_UBUNTU_IMAGE="https://cloud-images.ubuntu.com/releases/noble/release/"
CLOUD_IMG="ubuntu-24.04-server-cloudimg-amd64.img"
# Let's use ENCOS's Ubuntu-22.04
#OFFICIAL_UBUNTU_IMAGE="https://cloud-images.ubuntu.com/releases/jammy/release/"
#CLOUD_IMG="ubuntu-22.04-server-cloudimg-amd64.img"
################################################################
# Configure the guest credentials
################################################################
GUEST_USER="tdx"
GUEST_PASSWORD="123456"
GUEST_HOSTNAME="tdx-guest"