Piotr Sobieszczański

Results 17 comments of Piotr Sobieszczański

Same problem but @erikseifert blog solution works! Incrice inotify max user watches ``` bash # Check current maximum $ cat /proc/sys/fs/inotify/max_user_watches 8192 # Increase the maximum $ echo 100000|sudo tee...

.... my god. Fortunately I've spent only 2h to read this information :).

Create git alias to make pseudo-command `git crypt-users` Add this.. ``` [alias] crypt-users = ! git log .git-crypt/keys/*/*/*.gpg | egrep '\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}\\b' ``` to your `~/.gitconfig` UPDATE: new version ``` [alias]...

I think you should use `pathexpand("~/.ssh/id_rsa")` buildin fucntion, which expand to `/home/username/.ssh/id_rsa` Docs: https://www.terraform.io/docs/language/functions/pathexpand.html

I'm working on Linux as web developer from almost 10 years and CLI is my best friend, but I need to say @Relequestual has 100% sure in his arguments. I...

http://apigenerator.org/ looks good for me, in case there's no Sami 3.0 why not use it?

@teamterraform Can we please have a look at it. This will save hours of work for many of us. Thanks! :heart:

I found myself in similar situation. For those who really need to fix this I found this hacky way. Edit deployment for source-controller `kubectl edit -n flux-system deployments.apps source-controller` and...