Bump pipelock image from 0.3.2 to 1.5.0 (#1238)

* Bump pipelock image from 0.3.2 to 1.5.0

* Releasing via `alpha`

---------

Co-authored-by: Juan José Mata <jjmata@jjmata.com>
This commit is contained in:
LPW
2026-03-21 07:32:07 -07:00
committed by GitHub
parent 62a5255e02
commit e43a8f295d
5 changed files with 6 additions and 5 deletions

View File

@@ -5,9 +5,10 @@ All notable changes to the Sure Helm chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.6.9-alpha] - 2026-03-02
## [0.6.9-alpha] - 2026-03-21
### Added
- **Bumped** `pipelock.image.tag` from `0.3.2` to `1.5.0`
- **Pipelock security proxy** (`pipelock.enabled=true`): Separate Deployment + Service that provides two scanning layers
- **Forward proxy** (port 8888): Scans outbound HTTPS from Faraday-based clients (e.g. ruby-openai). Auto-injects `HTTPS_PROXY`/`HTTP_PROXY`/`NO_PROXY` env vars into app pods
- **MCP reverse proxy** (port 8889): Scans inbound MCP traffic for DLP, prompt injection, and tool poisoning. Auto-computes upstream URL via `sure.pipelockUpstream` helper

View File

@@ -651,7 +651,7 @@ Pipelock is an optional sidecar that scans AI agent traffic for secret exfiltrat
pipelock:
enabled: true
image:
tag: "0.3.2"
tag: "1.5.0"
mode: balanced # strict, balanced, or audit
```

View File

@@ -488,7 +488,7 @@ pipelock:
enabled: false
image:
repository: ghcr.io/luckypipewrench/pipelock
tag: "0.3.2"
tag: "1.5.0"
pullPolicy: IfNotPresent
imagePullSecrets: []
replicas: 1

View File

@@ -88,7 +88,7 @@ x-rails-env: &rails_env
services:
pipelock:
image: ghcr.io/luckypipewrench/pipelock:latest # pin to a specific version (e.g., :0.2.7) for production
image: ghcr.io/luckypipewrench/pipelock:1.5.0
container_name: pipelock
hostname: pipelock
restart: unless-stopped

View File

@@ -77,7 +77,7 @@ Enable Pipelock in your Helm values:
pipelock:
enabled: true
image:
tag: "0.3.2"
tag: "1.5.0"
mode: balanced
```