diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af53bd7..3e08b00 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.1.0", - "charts/sonarr-operator": "0.1.0" + ".": "0.2.0", + "charts/sonarr-operator": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..112b211 --- /dev/null +++ b/CHANGELOG.md @@ -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)) diff --git a/Cargo.lock b/Cargo.lock index 70dd308..c210d52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2052,7 +2052,7 @@ dependencies = [ [[package]] name = "sonarr-operator" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert-json-diff", diff --git a/Cargo.toml b/Cargo.toml index 7b7b6fc..807b4d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/charts/sonarr-operator/CHANGELOG.md b/charts/sonarr-operator/CHANGELOG.md new file mode 100644 index 0000000..a319597 --- /dev/null +++ b/charts/sonarr-operator/CHANGELOG.md @@ -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)) diff --git a/charts/sonarr-operator/Chart.yaml b/charts/sonarr-operator/Chart.yaml index 48e68d7..c2a4c75 100644 --- a/charts/sonarr-operator/Chart.yaml +++ b/charts/sonarr-operator/Chart.yaml @@ -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 @@ -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' diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index fb72f9f..8a48e39 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -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