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
2. Once the AKS cluster is created, create a curl.yaml file with the following content. It defines a job that runs a curl container to fetch AMD collateral from the THIM endpoint. For more information about Kubernetes Jobs, please visit HERE.
| Metadata | Boolean | Setting to True to allow for collateral to be returned |
156
+
3. Run the job by applying the curl.yaml
157
+
```bash
158
+
kubectl apply -f curl.yaml
159
+
```
160
+
4. Check and waitfor the pod to complete its job.
161
+
```bash
162
+
kubectl get pods
163
+
```
164
+
| Name | Ready | Status | Restarts | Age |
165
+
|--|--|--|--|--|
166
+
| Curl-w7nt8 | 0/1 | Completed | 0 | 72s |
167
+
5. Run the following command to get the job logs and validate if it is working. A successful output should include vcekCert, tcbm and certificateChain.
168
+
```bash
169
+
kubectl logs job/curl
170
+
```
171
+
89
172
## Next steps
90
173
91
174
- Learn more about [Azure Attestation documentation](../../attestation/overview.md)
0 commit comments