Alex Simkin

Results 29 comments of Alex Simkin

Also, I see that tests are failing because of reasons not connected to my code. I can fix those, but tell me preferred way where I need to push them....

Getting the same behavior on EKS, and it seems like this is how `fsGroup` is designed to work in k8s. I think that `fsGroup` should be removed from the default...

I just found out that deleting `fsGroup` from the template will mount the directory as root, which doesn't let traefik's process write to the mounted directory. It seems like the...

Somehow this does the trick entirely, and file is created with `0600` and later mounted with `0600`: ``` persistence: enabled: true accessMode: ReadWriteOnce size: 128Mi # storageClass: "" path: /data...

What I actually been doing is: 1. apply the chart with the following ``` persistence: enabled: true accessMode: ReadWriteOnce size: 128Mi # storageClass: "" path: /data annotations: { "pv.beta.kubernetes.io/gid": "65532"...

The `netperf.bufferbloat.net` is returning 503 and doesn't seem to work right now. I'm getting the same output as in the first post. I'm gonna go setting up private server for...

Looking at source, the mime type of your image is not one of: ``` acceptable_mime = ["image/bmp", "image/png", "image/tiff", "image/jpeg", "image/jpg", "video/JPEG", "video/jpeg2000"] ``` Also, it should print you actual...

Not sure if this is still relevant for you, but usually if you want to run nginx under a supervisor process you would do something like https://stackoverflow.com/a/28099946 . With this...

I was bashing my head against the wall trying to understand why `logpath` in yaml was ignored for me. Correcting the case fixed it, thank you!