miskr-instructure

Results 13 comments of miskr-instructure

> This could use docker create and docker cp which would be much more efficient: - docker cp requires `tar` to be installed in the image which makes that solution...

^ You may be able to solve those by readonly-mounting `cp` and `tar` from somewhere outside, but those have the dynamic library dependencies (unless they are busybox-based) which you'd also...

@marcusdacoregio Did you guys forget to add the auto configuration? Or was that intentionally skipped? See https://github.com/spring-projects/spring-session/blob/3.4.0-M2/spring-session-core/src/main/java/org/springframework/session/config/annotation/web/http/SpringHttpSessionConfiguration.java#L180 I'd have expected that setting `partitioned: 'true'` in `application.yaml` would work ```yaml server:...

^ Hopefully will work with config after https://github.com/spring-projects/spring-boot/pull/42316

+1 to this. Hundreds of thousands of useless log messages per day. I think in production it should be possible to set it to only log warnings and errors. The...

Bonus note: we should be able to mute rate limit warnings too, or they should be logged much less frequently. Even though they are warnings, if they happen once they'll...

Hi, 2 questions: * I did not check the code, but is the operator bursting the API (eg.: 50 secret crds with 120 retrySeconds -> 50 requests in quick burst,...

Hey, is there any chance someone can resurrect this PR?

In case it helps someone, you can accomplish HSTS/preload by basically reimplementing it in the `Ingress` object's annotation: ```yaml nginx.ingress.kubernetes.io/server-snippet: |- more_set_headers "Strict-Transport-Security: max-age=31536000; includeSubdomains; preload"; if ($scheme = "https")...

There is a more severe problem with this - **apps must not expect the Mac user to know their "login" keychain password**. The MacOS API allows apps to add entries...