Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluxcd/flux2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c21a3f800460c4ecc53abe8be97548207019dcd
Choose a base ref
..
head repository: fluxcd/flux2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 437a94367784541695fa68deba7a52b188d97ea8
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 cmd/flux/reconcile.go
4 changes: 2 additions & 2 deletions cmd/flux/reconcile.go
Original file line number Diff line number Diff line change
@@ -179,10 +179,10 @@ func requestReconciliation(ctx context.Context, kubeClient client.Client,
// HelmRelease specific annotations to force or reset a release.
if gvk.Kind == helmv2.HelmReleaseKind {
if rhrArgs.syncForce {
annotations["reconcile.fluxcd.io/forceAt"] = ts
annotations[helmv2.ForceRequestAnnotation] = ts
}
if rhrArgs.syncReset {
annotations["reconcile.fluxcd.io/resetAt"] = ts
annotations[helmv2.ResetRequestAnnotation] = ts
}
}