-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Acces falco UI | ||
kubectl port-forward -n falco $(kubectl get pods --selector=app.kubernetes.io/component=ui -n falco --output=jsonpath="{.items[0].metadata.name}") 2802 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# How to cut a release | ||
|
||
```bash | ||
./release.sh vX.Y.Z-rcT | ||
cd ktbx | ||
ciux tag . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Fixing Falco Pod Error: "Error: could not initialize inotify handler" | ||
|
||
This error occurs due to insufficient inotify resources. Fix it by increasing the inotify limits. | ||
|
||
## Steps | ||
|
||
1. Run the following commands: | ||
|
||
```bash | ||
echo "fs.inotify.max_user_instances=8192" | sudo tee -a /etc/sysctl.conf | ||
echo "fs.inotify.max_user_watches=1048576" | sudo tee -a /etc/sysctl.conf | ||
sudo sysctl -p | ||
``` | ||
|
||
2. Verify the new settings: | ||
|
||
```bash | ||
sysctl fs.inotify.max_user_instances | ||
sysctl fs.inotify.max_user_watches | ||
``` | ||
|
||
3. Restart the Falco pod: | ||
|
||
```bash | ||
kubectl delete pod <falco-pod-name> -n <namespace> | ||
``` | ||
|
||
This should resolve the issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters