diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a55c4d2dddef23b6ed100fdb7d80472f7941d9a..b19657037996c097dda86a09b33dcac6d027dd53 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,7 @@
 
 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.65.0-bb.2] - 2024-06-26
+## [0.65.0-bb.3] - 2024-07-01
 
 ### Fixed
 
@@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 - Moved the authorization policies
 - Updated the istio hardened doc
 
+## [0.65.0-bb.2] - 2024-06-21
+### Fixed
+- Removed duplicate istio.hardened entry in chart/values.yaml
+
 ## [0.65.0-bb.1] - 2024-06-20
 ### Fixed
 - Updated authorizationPolicy to properly reflect matchLabel selector and port for metrics
diff --git a/README.md b/README.md
index cce95b2f4d9618b52771440d235795f21090d817..9ea89c3c612701d463d0f7310489275aff8322fd 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # gitlab-runner
 
-![Version: 0.65.0-bb.2](https://img.shields.io/badge/Version-0.65.0--bb.2-informational?style=flat-square) ![AppVersion: 17.0.0](https://img.shields.io/badge/AppVersion-17.0.0-informational?style=flat-square)
+![Version: 0.65.0-bb.3](https://img.shields.io/badge/Version-0.65.0--bb.3-informational?style=flat-square) ![AppVersion: 17.0.0](https://img.shields.io/badge/AppVersion-17.0.0-informational?style=flat-square)
 
 GitLab Runner
 
@@ -109,11 +109,10 @@ helm install gitlab-runner chart/
 | volumes | list | `[]` |  |
 | extraObjects | list | `[]` |  |
 | istio.enabled | bool | `false` |  |
+| istio.injection | string | `"disabled"` |  |
 | istio.hardened.enabled | bool | `false` |  |
 | istio.hardened.outboundTrafficPolicyMode | string | `"REGISTRY_ONLY"` |  |
 | istio.hardened.customServiceEntries | list | `[]` |  |
-| istio.injection | string | `"disabled"` |  |
-| istio.hardened.enabled | bool | `false` |  |
 | istio.hardened.customAuthorizationPolicies | list | `[]` |  |
 | istio.hardened.gitlab.enabled | bool | `true` |  |
 | istio.hardened.gitlab.namespaces[0] | string | `"gitlab"` |  |
diff --git a/chart/Chart.yaml b/chart/Chart.yaml
index 95ed3f43611e547ca92fedf739b05d11d9f9cecf..1bfdfa9f0d982c4c054b3f2fa538c1286a857284 100644
--- a/chart/Chart.yaml
+++ b/chart/Chart.yaml
@@ -1,6 +1,6 @@
 apiVersion: v2
 name: gitlab-runner
-version: 0.65.0-bb.2
+version: 0.65.0-bb.3
 appVersion: 17.0.0
 description: GitLab Runner
 keywords:
diff --git a/chart/values.yaml b/chart/values.yaml
index aef09b1af5438bc6ad68f7cc799588c9fa3b9370..83a5594d7008317749ac7defafa895b9335cc756 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -810,6 +810,7 @@ extraObjects: []
 istio:
   # Toggle istio integration
   enabled: false
+  injection: disabled
   hardened:
     enabled: false
     outboundTrafficPolicyMode: "REGISTRY_ONLY"
@@ -827,9 +828,6 @@ istio:
       #         protocol: TLS
       #         name: https
       #     resolution: DNS
-  injection: disabled
-  hardened:
-    enabled: false
     customAuthorizationPolicies: []
     # - name: "allow-nothing"
     #   enabled: true
diff --git a/renovate.json b/renovate.json
index c2ea44bfd0957a7cd80da05552c527a020912120..a8aa96cbd7992bff56ed0f44bb6bbcec1a284830 100644
--- a/renovate.json
+++ b/renovate.json
@@ -2,7 +2,6 @@
   "baseBranches": ["main"],
   "configWarningReuseIssue": false,
   "dependencyDashboard": "true",
-  "dependencyDashboardHeader": "- [ ] Sync upstream helm chart version with updated dependencies.",
   "dependencyDashboardTitle": "Renovate: Upgrade Gitlab Runner Package Dependencies",
   "draftPR": true,
   "enabledManagers": ["regex", "helmv3"],