-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #738 from fluxcd/new-reconciler
Rework `HelmRelease` reconciliation logic
- Loading branch information
Showing
160 changed files
with
30,566 additions
and
2,301 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,98 @@ | ||
/* | ||
Copyright 2022 The Flux authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v2beta2 | ||
|
||
const ( | ||
// ReleasedCondition represents the status of the last release attempt | ||
// (install/upgrade/test) against the latest desired state. | ||
ReleasedCondition string = "Released" | ||
|
||
// TestSuccessCondition represents the status of the last test attempt against | ||
// the latest desired state. | ||
TestSuccessCondition string = "TestSuccess" | ||
|
||
// RemediatedCondition represents the status of the last remediation attempt | ||
// (uninstall/rollback) due to a failure of the last release attempt against the | ||
// latest desired state. | ||
RemediatedCondition string = "Remediated" | ||
) | ||
|
||
const ( | ||
// InstallSucceededReason represents the fact that the Helm install for the | ||
// HelmRelease succeeded. | ||
InstallSucceededReason string = "InstallSucceeded" | ||
|
||
// InstallFailedReason represents the fact that the Helm install for the | ||
// HelmRelease failed. | ||
InstallFailedReason string = "InstallFailed" | ||
|
||
// UpgradeSucceededReason represents the fact that the Helm upgrade for the | ||
// HelmRelease succeeded. | ||
UpgradeSucceededReason string = "UpgradeSucceeded" | ||
|
||
// UpgradeFailedReason represents the fact that the Helm upgrade for the | ||
// HelmRelease failed. | ||
UpgradeFailedReason string = "UpgradeFailed" | ||
|
||
// TestSucceededReason represents the fact that the Helm tests for the | ||
// HelmRelease succeeded. | ||
TestSucceededReason string = "TestSucceeded" | ||
|
||
// TestFailedReason represents the fact that the Helm tests for the HelmRelease | ||
// failed. | ||
TestFailedReason string = "TestFailed" | ||
|
||
// RollbackSucceededReason represents the fact that the Helm rollback for the | ||
// HelmRelease succeeded. | ||
RollbackSucceededReason string = "RollbackSucceeded" | ||
|
||
// RollbackFailedReason represents the fact that the Helm test for the | ||
// HelmRelease failed. | ||
RollbackFailedReason string = "RollbackFailed" | ||
|
||
// UninstallSucceededReason represents the fact that the Helm uninstall for the | ||
// HelmRelease succeeded. | ||
UninstallSucceededReason string = "UninstallSucceeded" | ||
|
||
// UninstallFailedReason represents the fact that the Helm uninstall for the | ||
// HelmRelease failed. | ||
UninstallFailedReason string = "UninstallFailed" | ||
|
||
// ArtifactFailedReason represents the fact that the artifact download for the | ||
// HelmRelease failed. | ||
ArtifactFailedReason string = "ArtifactFailed" | ||
|
||
// InitFailedReason represents the fact that the initialization of the Helm | ||
// configuration failed. | ||
InitFailedReason string = "InitFailed" | ||
|
||
// GetLastReleaseFailedReason represents the fact that observing the last | ||
// release failed. | ||
GetLastReleaseFailedReason string = "GetLastReleaseFailed" | ||
|
||
// DependencyNotReadyReason represents the fact that | ||
// one of the dependencies is not ready. | ||
DependencyNotReadyReason string = "DependencyNotReady" | ||
|
||
// ReconciliationSucceededReason represents the fact that | ||
// the reconciliation succeeded. | ||
ReconciliationSucceededReason string = "ReconciliationSucceeded" | ||
|
||
// ReconciliationFailedReason represents the fact that | ||
// the reconciliation failed. | ||
ReconciliationFailedReason string = "ReconciliationFailed" | ||
) |
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,20 @@ | ||
/* | ||
Copyright 2022 The Flux authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// Package v2beta2 contains API Schema definitions for the helm v2beta2 API group | ||
// +kubebuilder:object:generate=true | ||
// +groupName=helm.toolkit.fluxcd.io | ||
package v2beta2 |
Oops, something went wrong.