Skip to content

Commit

Permalink
Add title's for scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
keremnalbant authored Jul 8, 2023
1 parent 6915ad5 commit aea8ff9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ jobs:
`KUBE_CONFIG_DATA` – **required**: A base64-encoded kubeconfig file with credentials for Kubernetes to access the cluster. You can get it by running the following command:

### Bash
```bash
cat $HOME/.kube/config | base64
```

### PowerShell
```PowerShell
$base64Data = [Convert]::ToBase64String([IO.File]::ReadAllBytes("$env:USERPROFILE\.kube\config"))
Write-Output $base64Data
Expand Down

0 comments on commit aea8ff9

Please sign in to comment.