Skip to content

Commit 21379e0

Browse files
authored
Merge branch 'main' into 2025/fix/tempoRemoteWriterRecieverIssue
2 parents 46ef0cf + 6ceff6e commit 21379e0

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,10 @@ repos:
122122
always_run: true
123123
language: script
124124
files: '^(.*\/Makefile.*)|(.*\.deploy_everything_locally.bash)|(.*\/services/.*\/.*\.((sh)|(bash)))$'
125+
- id: helm-update-dependencies
126+
name: Helm Dependency Update
127+
description: Make sure all Chart.lock files are up-to-date
128+
entry: bash -c 'find . -name Chart.yaml -exec dirname {} \; | xargs -t -I% helm dependency update %'
129+
language: system
130+
files: ^charts/
131+
pass_filenames: false
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: common-helpers
33
repository: file://../common-helpers
4-
version: 0.0.1
5-
digest: sha256:5dad45e33a2acd921f5f907f9cabb434bb60f14bb799df95897661e95b302a26
6-
generated: "2024-08-29T11:15:50.206549321+02:00"
4+
version: 0.0.2
5+
digest: sha256:d6893dfacee6738bea269ee1ef0cec150d742d229541cde753b35f45fc1fa48a
6+
generated: "2025-07-21T13:47:47.456513024+02:00"

charts/topolvm/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ Source: https://github.com/topolvm/topolvm/blob/topolvm-chart-v15.5.5/docs/getti
1616

1717
## Deleting PV(C)s with `retain` reclaim policy
1818
1. Delete release (e.g. helm uninstall -n test test)
19-
2. Find LogicalVolume CR (`kubectl get logicalvolumes.topolvm.io`
19+
2. Find LogicalVolume CR (`kubectl get logicalvolumes.topolvm.io`)
2020
3. Delete LogicalVolume CR (`kubectl delete logicalvolumes.topolvm.io <lv-name>`)
2121
4. Delete PV (`kubectl delete PV <pv-name>`)
22+
5. Remove PV's finalizers (`kubectl patch pv <pv-name> -p '{"metadata":{"finalizers":null}}'`)
2223

2324
## Backup / Snapshotting
2425
1. Only possible while using thin provisioning

0 commit comments

Comments
 (0)