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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.17"
".": "0.1.18"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.1.18](https://github.com/paperclipinc/hermes-operator/compare/v0.1.17...v0.1.18) (2026-06-19)


### Features

* **runtime:** run agents on the upstream s6 image — instance reaches Ready (gateway API + /health) ([#90](https://github.com/paperclipinc/hermes-operator/issues/90)) ([12dccb4](https://github.com/paperclipinc/hermes-operator/commit/12dccb40a00f66a34b80267932cda2e3c3898220))


### Bug Fixes

* **agent-image:** ship pyproject.toml + uv.lock at /opt/venv-template/ ([#68](https://github.com/paperclipinc/hermes-operator/issues/68)) ([#85](https://github.com/paperclipinc/hermes-operator/issues/85)) ([39ef52c](https://github.com/paperclipinc/hermes-operator/commit/39ef52c09efa10becf02a2238f8637be1c6bfc0a))
* **agent-image:** ship the uv binary in the runtime stage ([#68](https://github.com/paperclipinc/hermes-operator/issues/68)) ([#88](https://github.com/paperclipinc/hermes-operator/issues/88)) ([13fb1e5](https://github.com/paperclipinc/hermes-operator/commit/13fb1e512cfea258359aa9744750e51299baf25e))
* **backup:** bound the on-delete finalizer so a failing snapshot can't make an instance undeletable ([#94](https://github.com/paperclipinc/hermes-operator/issues/94)) ([40d6099](https://github.com/paperclipinc/hermes-operator/commit/40d609947b0659dfb747e8cc57686584ae9d94cb))

## [0.1.17](https://github.com/paperclipinc/hermes-operator/compare/v0.1.16...v0.1.17) (2026-06-16)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ spec:

- Kubernetes 1.28+
maturity: alpha
version: 0.1.17
version: 0.1.18
minKubeVersion: 1.28.0
keywords:
- ai
Expand Down
6 changes: 3 additions & 3 deletions charts/hermes-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ description: >-
A Kubernetes operator for deploying and managing Nous Research Hermes AI agent
instances
type: application
version: 0.1.17
appVersion: 0.1.17
version: 0.1.18
appVersion: 0.1.18
kubeVersion: '>=1.28.0-0'
keywords:
- kubernetes
Expand Down Expand Up @@ -69,7 +69,7 @@ annotations:
size: 10Gi
artifacthub.io/images: |
- name: hermes-operator
image: ghcr.io/paperclipinc/hermes-operator:0.1.17 # x-release-please-version
image: ghcr.io/paperclipinc/hermes-operator:0.1.18 # x-release-please-version
artifacthub.io/changes: |
- kind: added
description: World-class Artifact Hub metadata (logo, keywords, CRDs, images)
Expand Down
2 changes: 1 addition & 1 deletion charts/hermes-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: ghcr.io/paperclipinc/hermes-operator
tag: 0.1.17
tag: 0.1.18
pullPolicy: IfNotPresent
logLevel: info
createRBAC: true
Expand Down
Loading