Brad Rydzewski
Brad Rydzewski
> however this will significantly increase complexity in the scm service We need to add complexity somewhere (delegate, scm service, scm library). There are two options for how this could...
:wave: hey @MarckK, thanks for the invite. I am glad to see there is interest in what we are doing. Would you mind providing some more context around the invite...
documenting a similar request received via chat to use fedramp compliant ciphers: ``` cfg := &tls.Config{ MinVersion: tls.VersionTLS12, CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256}, PreferServerCipherSuites: true, CipherSuites: []uint16{ tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, tls.TLS_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_RSA_WITH_AES_256_CBC_SHA,...
Thanks for the reply. I should probably clarify that plugins aren't going away and volume caching would not be default. When installing drone you would have the option to setup...
Perhaps another, more generic, way of solving this problem would be supporting the [extends](https://docs.docker.com/compose/extends/) keyword in docker compose. It could be use to apply default configurations. ``` pipeline: restore: extends:...
Also as a side note, we should look into using this for the S3 cache plugin :) https://aws.amazon.com/about-aws/whats-new/2011/12/27/amazon-s3-announces-object-expiration/
@jhasse caching files and folders outside the workspace will work once we support the compose volume system. It would look something like this: ```diff pipeline: build: image: maven2 commands: -...
@kakkoyun wondering if you could chime in. The goal would be to have cache syntax built-into the yaml but under the covers use caching plugins. I want to make sure...
@kakkoyun sorry for the delay in my response. I am interested in your previous example and was wondering how you decide whether or not to rebuild vs restore. Can you...
I wanted to provide an update. I have been working to design a caching system that will work with container-based pipelines and non-container-based pipelines (e.g. exec pipelines). These are just...