Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/aws-rds-iam-live-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ on:
image_uri:
description: Signals container image (pinned tag)
required: false
default: ghcr.io/elevarq/signals:1.0.0
default: ghcr.io/elevarq/signals:1.0.1

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [1.0.1] - 2026-07-17

### Security

- Go toolchain and container builder bumped 1.26.4 -> 1.26.5 (#253): remediates GO-2026-5856
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws/LIVE-SMOKE.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fill the inputs:
| `security_group_ids` | `["sg-0123…"]` | **JSON array** string |
| `db_user` | `signals` | role granted `rds_iam` + `pg_monitor` |
| `name_prefix` | `signals-livesmoke` | prefixes the throwaway resources |
| `image_uri` | `ghcr.io/elevarq/signals:1.0.0` | pinned tag |
| `image_uri` | `ghcr.io/elevarq/signals:1.0.1` | pinned tag |

A green run means: the collector minted an RDS IAM token from its instance
role, connected `verify-full` with **no password on disk**, and produced
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws/cloudformation/signals-rds-iam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Parameters:
Default: t3.small
ImageUri:
Type: String
Default: ghcr.io/elevarq/signals:1.0.0
Default: ghcr.io/elevarq/signals:1.0.1
Description: Elevarq Signals container image (pinned tag).
Env:
Type: String
Expand Down
4 changes: 2 additions & 2 deletions deploy/aws/imagebuilder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ same posture as the container and Helm deliveries.

| Parameter | Default | Notes |
|-----------|---------|-------|
| `SignalsImage` | `ghcr.io/elevarq/signals:1.0.0` | Pinned version (no `latest`). Bump per release. |
| `SignalsImage` | `ghcr.io/elevarq/signals:1.0.1` | Pinned version (no `latest`). Bump per release. |

### Baking locally / in a pipeline

Expand All @@ -44,7 +44,7 @@ Linux 2023 base image. Register it and reference it from a recipe:
```bash
aws imagebuilder create-component \
--name signals-collector \
--semantic-version 1.0.0 \
--semantic-version 1.0.1 \
--platform Linux \
--data file://signals-collector-component.yaml
# -> ComponentArn, referenced by an image recipe + pipeline that produces the AMI.
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws/imagebuilder/signals-collector-component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ schemaVersion: 1.0
parameters:
- SignalsImage:
type: string
default: "ghcr.io/elevarq/signals:1.0.0"
default: "ghcr.io/elevarq/signals:1.0.1"
description: >-
Pinned Signals image reference to pre-pull into the AMI. MUST be a
specific version tag (no 'latest') so the AMI is reproducible (R-AMI-02).
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ variable "instance_type" {
variable "image_uri" {
type = string
description = "Elevarq Signals container image (pinned tag)."
default = "ghcr.io/elevarq/signals:1.0.0"
default = "ghcr.io/elevarq/signals:1.0.1"
}

variable "env" {
Expand Down
2 changes: 1 addition & 1 deletion deploy/azure/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ param adminUsername string = 'azureuser'
param adminSshPublicKey string

@description('Elevarq Signals container image (pinned tag).')
param imageUri string = 'ghcr.io/elevarq/signals:1.0.0'
param imageUri string = 'ghcr.io/elevarq/signals:1.0.1'

@description('URL of the CA bundle for sslmode=verify-full. Default is the DigiCert Global Root G2 that Azure Database for PostgreSQL Flexible Server chains to.')
param dbCaCertUrl string = 'https://cacerts.digicert.com/DigiCertGlobalRootG2.crt.pem'
Expand Down
2 changes: 1 addition & 1 deletion deploy/azure/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "admin_ssh_public_key" {
variable "image_uri" {
type = string
description = "Elevarq Signals container image (pinned tag)."
default = "ghcr.io/elevarq/signals:1.0.0"
default = "ghcr.io/elevarq/signals:1.0.1"
}

variable "db_ca_cert_url" {
Expand Down
2 changes: 1 addition & 1 deletion deploy/gcp/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ variable "image" {
variable "image_uri" {
type = string
description = "Elevarq Signals container image (pinned tag)."
default = "ghcr.io/elevarq/signals:1.0.0"
default = "ghcr.io/elevarq/signals:1.0.1"
}

variable "env" {
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/signals/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ type: application
# Policy: chart `version`, `appVersion`, and `image.tag` in values.yaml
# are kept in lockstep with the released container image. Bump all three
# together at release time; do not float chart version independently.
version: 1.0.0
appVersion: "1.0.0"
version: 1.0.1
appVersion: "1.0.1"
keywords:
- postgresql
- monitoring
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/signals/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

image:
repository: ghcr.io/elevarq/signals
tag: "1.0.0"
tag: "1.0.1"
pullPolicy: IfNotPresent

# PostgreSQL target configuration. Rendered into the mounted
Expand Down