Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindnswamy committed Feb 8, 2024
1 parent fc6bc2b commit 497c991
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
action: sync
appName: ${{ secrets.ARGOCD_APP_NAME }}
image: latest
disableTlsVerification: "true"
disableTlsVerification: "false"
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ jobs:
token: ${{ secrets.ARGOCD_TOKEN }}
action: sync
appName: "my-example-app"
disableTlsVerification: "false" # Default is false. Only enable this if ArgoCD doesn't have TLS / has self signed certificate / you see any sort of x509 errors
```
### Inputs
| Input | Description |
|-----------|----------------------------------------|
| `address` | ArgoCD server address. |
| `token` | ArgoCD Token. |
| `action` | ArgoCD Action i.e. sync. |
| `appName` | Application name to execute action on. |
| Input | Description |
|--------------------------|----------------------------------------|
| `address` | ArgoCD server address. |
| `token` | ArgoCD Token. |
| `action` | ArgoCD Action i.e. sync. |
| `appName` | Application name to execute action on. |
| `disableTlsVerification` | Skip TLS validation. |

## Examples

Expand All @@ -57,4 +59,5 @@ jobs:
token: ${{ secrets.ARGOCD_TOKEN }}
action: sync
appName: "my-example-app"
disableTlsVerification: "false" # Default is false. Only enable this if ArgoCD doesn't have TLS / has self signed certificate / you see any sort of x509 errors
```

0 comments on commit 497c991

Please sign in to comment.