You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/trusted-cluster-gen.go
+17-13Lines changed: 17 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,14 @@ import (
22
22
)
23
23
24
24
typeArgsstruct {
25
-
outputDirstring
26
-
imagestring
27
-
namespacestring
28
-
trusteeImagestring
29
-
pcrsComputeImagestring
30
-
registerServerImagestring
31
-
approvedImagestring
25
+
outputDirstring
26
+
imagestring
27
+
namespacestring
28
+
trusteeImagestring
29
+
pcrsComputeImagestring
30
+
registerServerImagestring
31
+
attestationKeyRegisterImagestring
32
+
approvedImagestring
32
33
}
33
34
34
35
funcmain() {
@@ -39,6 +40,7 @@ func main() {
39
40
flag.StringVar(&args.trusteeImage, "trustee-image", "operators", "Container image with all-in-one Trustee")
40
41
flag.StringVar(&args.pcrsComputeImage, "pcrs-compute-image", "quay.io/trusted-execution-clusters/compute-pcrs:latest", "Container image with the Trusted Execution Clusters compute-pcrs binary")
41
42
flag.StringVar(&args.registerServerImage, "register-server-image", "quay.io/trusted-execution-clusters/register-server:latest", "Register server image to use in the deployment")
43
+
flag.StringVar(&args.attestationKeyRegisterImage, "attestation-key-register-image", "quay.io/trusted-execution-clusters/attestation-key-register:latest", "Attestation key register image to use in the deployment")
42
44
flag.StringVar(&args.approvedImage, "approved-image", "", "When set, defines an initial approved image. Must be a bootable container image with SHA reference.")
0 commit comments