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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.1.0",
"charts/sonarr-operator": "0.1.0"
".": "0.2.0",
"charts/sonarr-operator": "0.2.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.2.0](https://github.com/devopsarr/k8s-operator-sonarr/compare/v0.1.0...v0.2.0) (2026-07-30)


### Features

* bootstrap Sonarr Kubernetes operator ([a4fe677](https://github.com/devopsarr/k8s-operator-sonarr/commit/a4fe67763fdfeb9352a4b9bfe0f2e1b8ab3ecba2))
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sonarr-operator"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
authors = ["DevOpsArr"]
description = "Kubernetes Operator for Sonarr written in Rust using kube-rs"
Expand Down
8 changes: 8 additions & 0 deletions charts/sonarr-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.2.0](https://github.com/devopsarr/k8s-operator-sonarr/compare/sonarr-operator-chart-v0.1.0...sonarr-operator-chart-v0.2.0) (2026-07-30)


### Features

* bootstrap Sonarr Kubernetes operator ([a4fe677](https://github.com/devopsarr/k8s-operator-sonarr/commit/a4fe67763fdfeb9352a4b9bfe0f2e1b8ab3ecba2))
17 changes: 8 additions & 9 deletions charts/sonarr-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
apiVersion: v2
name: sonarr-operator
description: A Kubernetes operator for managing Sonarr instances and their
configuration via Custom Resources
description: >-
A Kubernetes operator for managing Sonarr instances and their configuration
via Custom Resources
type: application
# Chart version is bumped lockstep with the operator binary by release-please
# (linked-versions plugin). `appVersion` tracks the operator's crate version.
version: 0.1.0
appVersion: "0.1.0" # x-release-please-version
kubeVersion: ">=1.28.0-0"
version: 0.2.0
appVersion: 0.1.0
kubeVersion: '>=1.28.0-0'
home: https://github.com/devopsarr/k8s-operator-sonarr
sources:
- https://github.com/devopsarr/k8s-operator-sonarr
Expand All @@ -24,6 +23,6 @@ keywords:
annotations:
artifacthub.io/category: integration-delivery
artifacthub.io/license: GPL-3.0
artifacthub.io/operator: "true"
artifacthub.io/operator: 'true'
artifacthub.io/operatorCapabilities: Basic Install
artifacthub.io/prerelease: "true"
artifacthub.io/prerelease: 'true'
2 changes: 1 addition & 1 deletion deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: sonarr-operator
containers:
- name: operator
image: ghcr.io/devopsarr/k8s-operator-sonarr:v0.1.0 # x-release-please-version
image: ghcr.io/devopsarr/k8s-operator-sonarr:v0.2.0 # x-release-please-version
imagePullPolicy: IfNotPresent
env:
- name: RUST_LOG
Expand Down
Loading