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
feat: Docker image for installer and installation script improvements (#2)
* Added requirement for md5sum, and fixed check for existance having errors exit the script
* Dockerfile for installer with AZ cli and prerequisites
* Added uninstall script
* Added instructions to use Docker image to install and uninstall
Copy file name to clipboardExpand all lines: README.md
+35-3Lines changed: 35 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,42 @@ This repository contains an installation/uninstallation script, instructions and
6
6
7
7
## Installation
8
8
9
+
You can execute the automatic installation steps using a docker image that has all requirements, or directly using Bash if you already have the requirements in your system.
10
+
11
+
You need to know the AKS Cluster Name and the Resource Group Name that you used to create your [Azure AKS Cluster](https://docs.microsoft.com/en-us/azure/aks/kubernetes-walkthrough).
12
+
13
+
### A. Using Docker image installer
14
+
15
+
To execute the installer using a Docker image and sharing your Azure credentials with it, execute:
16
+
17
+
```bash
18
+
docker run -it -v $HOME/.azure:/root/.azure sysdiglabs/aks-audit-log-installer:1 \
docker run sysdiglabs/aks-audit-log-installer:1 --help
26
+
```
27
+
28
+
### B. Using the Bash script
29
+
9
30
The installation script has some command line tool requirements:
10
31
*[Azure-cli](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest) (already logged into your account)
11
32
* envsubst (shipped with gettext package)
12
33
* kubectl
13
34
* curl, tr, grep
14
35
15
-
You need to know the AKS Cluster Name and the Resource Group Name that you used to create your [Azure AKS Cluster](https://docs.microsoft.com/en-us/azure/aks/kubernetes-walkthrough).
0 commit comments