-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add initial support for reconcile mode and update metrics
- Loading branch information
1 parent
2ba7ab6
commit 83fd682
Showing
7 changed files
with
378 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package v1alpha1 | ||
|
||
const ( | ||
|
||
// ReconcileModeAnnotation is the annotation key for the reconcile mode | ||
// ReconcileMode is the mode of the reconciliation it could be Normal, WatchOnly, EnsureExists, Disable, DryRun (to be implemented) | ||
ReconcileModeAnnotation = "proxmox.alperen.cloud/reconcile-mode" | ||
ReconcileModeNormal = "Normal" | ||
ReconcileModeWatchOnly = "WatchOnly" | ||
ReconcileModeEnsureExists = "EnsureExists" | ||
ReconcileModeDisable = "Disable" | ||
ReconcileModeDryRun = "DryRun" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.