Thomas Anderson
Thomas Anderson
If there are no comments/notes, we are ready to merge.
Yes, I would postpone writing docs. I've updated [TODO list](https://github.com/woodpecker-ci/woodpecker/issues/3582#issuecomment-2096736572).
Added targets and keys. ```yaml apiVersion: v1 kind: Secret metadata: name: test-secret data: AWS_ACCESS_KEY_ID: N0lrZHNzb0xleGFtcGxlNkpJVnZDRXE= AWS_SECRET_ACCESS_KEY: TXk0WE5BYXNleGFtcGxldXRKRHNUWHc= type: Opaque ``` ```yaml apiVersion: v1 kind: Secret metadata: name: test-file-secret data: tls.crt:...
Woodpecker 2.1.1, Kubernetes. - cancel pending pipeline: removed from queue, released resources, `killed` pipeline status, `skipped` step status [Screenshot 2024-01-08 1](https://github.com/woodpecker-ci/woodpecker/assets/127358482/b094237d-4bca-4361-bcbe-de631b2d466d) - cancel running pipeline: removed from queue, released resources,...
https://github.com/woodpecker-ci/woodpecker/issues/2253#issuecomment-2076542998
1. Use [POSIX](https://stackoverflow.com/questions/11588583/is-the-shells-source-posix-standard) `. envvars`; 2. Or wait for #3269; 3. Or try to wrap in script: ```yaml - name: debug commands: - cicd/debug.sh image: debian ``` ```sh #!/bin/bash source...
> I tried to set a new header and try to get it into spoe app parameter without success If you use [event on-frontend-http-request](https://github.com/corazawaf/coraza-spoa/blob/6a0d9a3ba67379892eafa105c636d85016f8ef21/docker/haproxy/coraza.cfg#L15), then [works as intended](https://www.haproxy.com/blog/extending-haproxy-with-the-stream-processing-offload-engine#spoe-configuration): > Triggered...
Now processing error returns immediately as SPOA error instead of [SPOE/SPOP timeout error](https://github.com/haproxy/haproxy/blob/49ddd87d41b62797d50d7c59e843d0c0b0236eb5/doc/SPOE.txt#L318). [log.txt](https://github.com/corazawaf/coraza-spoa/files/12061365/log.txt)
1. As I said before, we need application logger to log stuff not related to request/response processing (transaction, coraza). Related stuff I log via transaction logger (coraza). 2. It good...
> How about we just log out the first line Fixed. > not return in [internal/spoa](https://github.com/corazawaf/coraza-spoa/blob/main/internal/spoa.go#L188) but rather continue HAProxy doesn't run if there is error in config, doesn't matter...