Skip to content

Commit fd0c77f

Browse files
fitzthummythi
authored andcommitted
format: fix codeblocks without language
After updating the builder container for our website, we have some formatting issues when we use a codeblock that doesn't explicitly specify a language. Update some of these blocks to fix. Signed-off-by: Tobin Feldman-Fitzthum <tfeldmanfitz@nvidia.com>
1 parent 3f27b27 commit fd0c77f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

content/en/docs/contributing/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Every PR in every subproject is required to include a DCO.
100100
This is strictly enforced by the CI.
101101
Fortunately, it's easy to comply with this requirement.
102102
At the end of the commit message for each of your commits add something like
103-
```
103+
```bash
104104
Signed-off-by: Alex Ample <al@example.com>
105105
```
106106
You can add additional tags to credit other developers who worked on a commit
@@ -143,7 +143,7 @@ what it does.
143143
This helps reviewers and future developers.
144144

145145
The title of the commit should start with a subsystem. For example,
146-
```
146+
```bash
147147
docs: update contributor guide
148148
```
149149
The "subsystem" describes the area of the code that the change applies to.

content/en/docs/features/get-attestation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ agent.guest_components_rest_api=all
2525
```
2626

2727
As usual, command line configurations can be added with annotations.
28-
```
28+
```yaml
2929
apiVersion: apps/v1
3030
kind: Deployment
3131
metadata:

content/en/docs/troubleshooting/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Sometimes this will give you a useful message pointing to a failed attestation
2828
or some sort of missing environment setup. Most of the time you will see a
2929
generic message such as the following:
3030

31-
```
31+
```bash
3232
Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create containerd task: failed to create shim: Failed to Check if grpc server is working: rpc error: code = DeadlineExceeded desc = timed out connecting to vsock 637456061:1024: unknown
3333
```
3434
@@ -111,7 +111,7 @@ or hope that Kubernetes restarts your existing pod. Note that enabling debug opt
111111
config file can change the attestation evidence of a confidential guest.
112112
113113
Now you should be able to view logs from containerd with the following:
114-
```
114+
```bash
115115
sudo journalctl -xeu containerd
116116
```
117117
@@ -179,7 +179,7 @@ you want to access. Do this via `ps -ef | grep qemu` or equivalent.
179179
The id is the long id that shows up in many different arguments.
180180
It should look like `1a9ab65be63b8b03dfd0c75036d27f0ed09eab38abb45337fea83acd3cd7bacd`.
181181
Once you have the id, you can use it to access the debug console.
182-
```
182+
```bash
183183
sudo /opt/confidential-containers/bin/kata-runtime exec <id>
184184
```
185185
You might need to symlink the appropriate Kata configuration file for your runtime
@@ -238,7 +238,7 @@ If your CoCo Pod gets an error like the one shown below, then it is likely the i
238238
239239
Therefore, you must ensure that the image pull policy is set to **Always** for any CoCo pod. This way the images are always handled entirely by the agent inside the VM. It is worth mentioning we recognize that this behavior is sub-optimal, so the community provides solutions to avoid constant image downloads for each workload.
240240
241-
```
241+
```bash
242242
Events:
243243
Type Reason Age From Message
244244
---- ------ ---- ---- -------

0 commit comments

Comments
 (0)