Skip to content

Commit

Permalink
Merge branch 'main' into jt-deployment-timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Jtango18 committed Oct 29, 2024
2 parents 575876b + 8d1a914 commit 5e8ab1c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
1 change: 0 additions & 1 deletion public/docs/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ pre {

pre code {
background-color: unset;
font-size: var(--font-size-small);
}

.dark pre {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: src/layouts/Default.astro
pubDate: 2024-05-08
modDate: 2024-09-17
modDate: 2024-10-28
navTitle: General Troubleshooting
title: Troubleshooting
navSection: Troubleshooting
Expand Down Expand Up @@ -46,6 +46,19 @@ If the Agent install command fails with a timeout error, it could be that:
- (if using the NFS storage solution) The NFS CSI driver has not been installed
- (if using a custom Storage Class) the Storage Class name doesn't match

#### Setting scriptPod Service Account annotations
To add an annotation to the Service Account for the `scriptPods`, use the following syntax

```bash
--set scriptPods.serviceAccount.annotations."<Annotation name>"="<Annotation>"
```

**Note:** If the annotation name contains a `.`, you will need to JSON escape it (`\.`). Below is an example of setting the role-arn annotation for an EKS cluster where the annotation name is `eks.amazonaws.com/role-arn`.

```bash
--set scriptPods.serviceAccount.annotations."eks\.amazonaws\.com/role-arn"="arn:aws:iam::<account-id>:role/<iam-role-name>"
```

## Script Execution Issues

### `Unexpected Script Pod log line number, expected: expected-line-no, actual: actual-line-no`
Expand Down

0 comments on commit 5e8ab1c

Please sign in to comment.