Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions templates/kbs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ spec:
kbsResourcePolicyConfigMapName: resource-policy

# TDX specific configuration (optional)
# tdxConfigSpec:
# kbsTdxConfigMapName: tdx-config
{{- if .Values.kbs.tdx.enabled }}
tdxConfigSpec:
kbsTdxConfigMapName: tdx-config
{{- end }}

# IBM SE specific configuration (optional)
# ibmSEConfigSpec:
Expand Down
12 changes: 12 additions & 0 deletions templates/tdx-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- if .Values.kbs.tdx.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: tdx-config
namespace: trustee-operator-system
data:
sgx_default_qcnl.conf: |
{
"collateral_service": "{{ .Values.kbs.tdx.collateralService }}"
}
{{- end }}
9 changes: 9 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,12 @@ kbs:
# key: "secret/data/hub/kbsres1"
# - name: "passphrase"
# key: "secret/data/hub/passphrase"

# Intel TDX (Trust Domain Extensions) configuration
tdx:
# Enable TDX attestation support
enabled: false
# PCCS collateral service URL for quote verification
# For Azure: Use https://global.acccache.azure.net/sgx/certification/v4/
# For bare metal/Intel: Use https://api.trustedservices.intel.com/sgx/certification/v4/
collateralService: "https://api.trustedservices.intel.com/sgx/certification/v4/"