Change-Id: I3bf91a177592f86b26cf96931f8e9ab58f30c658 Signed-off-by: Ruslan Aliev <raliev@mirantis.com>
332 lines
10 KiB
Go
332 lines
10 KiB
Go
/*
|
|
Copyright 2023.
|
|
|
|
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 v1
|
|
|
|
import (
|
|
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
|
|
apimeta "k8s.io/apimachinery/pkg/api/meta"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
const ArmadaChartKind = "ArmadaChart"
|
|
const ArmadaChartAPIVersion = "armada.airshipit.org/v1"
|
|
const ArmadaChartPlural = "armadacharts"
|
|
const ArmadaChartGroup = "armada.airshipit.org"
|
|
const ArmadaChartVersion = "v1"
|
|
const ArmadaChartLabel = "armada.airshipit.org/release-name"
|
|
const ArmadaChartFinalizer = "finalizers.armada.airshipit.org"
|
|
|
|
const ReadyCondition string = "Ready"
|
|
const ReconcilingCondition string = "Reconciling"
|
|
const ProgressingReason string = "Progressing"
|
|
|
|
// ArmadaChartSpec defines the specification of ArmadaChart
|
|
type ArmadaChartSpec struct {
|
|
// ChartName is name of ArmadaChart
|
|
ChartName string `json:"chart_name,omitempty"`
|
|
// Namespace is a namespace for ArmadaChart
|
|
Namespace string `json:"namespace,omitempty"`
|
|
// Release is a name of corresponding Helm Release of ArmadaChart
|
|
Release string `json:"release,omitempty"`
|
|
|
|
// Source is a source location of Helm Chart *.tgz
|
|
Source ArmadaChartSource `json:"source,omitempty"`
|
|
|
|
// Values holds the values for this Helm release.
|
|
// +optional
|
|
Values *apiextensionsv1.JSON `json:"values,omitempty"`
|
|
|
|
// Wait holds the wait options for this Helm release.
|
|
// +optional
|
|
Wait ArmadaChartWait `json:"wait,omitempty"`
|
|
|
|
// Test holds the test parameters for this Helm release.
|
|
// +optional
|
|
Test ArmadaChartTestOptions `json:"test,omitempty"`
|
|
|
|
// Upgrade holds the upgrade options for this Helm release.
|
|
// +optional
|
|
Upgrade ArmadaChartUpgrade `json:"upgrade,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartSource defines the location options of Helm Release for ArmadaChart
|
|
type ArmadaChartSource struct {
|
|
Location string `json:"location,omitempty"`
|
|
Subpath string `json:"subpath,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartWait defines the wait options of ArmadaChart
|
|
type ArmadaChartWait struct {
|
|
// Timeout is the time to wait for full reconciliation of Helm release.
|
|
// +optional
|
|
Timeout int `json:"timeout,omitempty"`
|
|
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
|
|
// +optional
|
|
ArmadaChartWaitResources []ArmadaChartWaitResource `json:"resources"`
|
|
|
|
// +optional
|
|
Native *ArmadaChartWaitNative `json:"native,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartWaitResource defines the wait options of ArmadaChart
|
|
type ArmadaChartWaitResource struct {
|
|
Type string `json:"type,omitempty"`
|
|
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
|
|
// +optional
|
|
Namespace *string `json:"namespace"`
|
|
|
|
// +optional
|
|
MinReady string `json:"min_ready,omitempty"`
|
|
|
|
// +optional
|
|
Condition string `json:"condition,omitempty"`
|
|
|
|
// +optional
|
|
Delay int `json:"delay,omitempty"`
|
|
}
|
|
|
|
type ArmadaChartUpgrade struct {
|
|
PreUpgrade ArmadaChartPreUpgrade `json:"pre,omitempty"`
|
|
}
|
|
|
|
type ArmadaChartPreUpgrade struct {
|
|
Cleanup bool `json:"cleanup,omitempty"`
|
|
Delete []ArmadaChartDeleteResource `json:"delete,omitempty"`
|
|
UpdateCRD bool `json:"update_crd,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartDeleteResource defines the delete options of ArmadaChart
|
|
type ArmadaChartDeleteResource struct {
|
|
Type string `json:"type,omitempty"`
|
|
|
|
Labels map[string]string `json:"labels,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartWaitNative defines the wait options of ArmadaChart
|
|
type ArmadaChartWaitNative struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartTestOptions defines the test options of ArmadaChart
|
|
type ArmadaChartTestOptions struct {
|
|
// Enabled is an example field of ArmadaChart. Edit armadachart_types.go to remove/update
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartStatus defines the observed state of ArmadaChart
|
|
type ArmadaChartStatus struct {
|
|
// ObservedGeneration is the last observed generation.
|
|
// +optional
|
|
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
|
|
|
|
// Conditions holds the conditions for the ArmadaChart.
|
|
// +optional
|
|
Conditions []metav1.Condition `json:"conditions,omitempty"`
|
|
|
|
// LastAppliedValuesChecksum is the SHA1 checksum of the values of the last
|
|
// reconciliation attempt.
|
|
// +optional
|
|
LastAppliedValuesChecksum string `json:"lastAttemptedValuesChecksum,omitempty"`
|
|
|
|
// LastAppliedChartSource is the URL of chart of the last reconciliation attempt
|
|
// +optional
|
|
LastAppliedChartSource string `json:"lastAttemptedChartSource,omitempty"`
|
|
|
|
// Failures is the reconciliation failure count against the latest desired
|
|
// state. It is reset after a successful reconciliation.
|
|
// +optional
|
|
Failures int64 `json:"failures,omitempty"`
|
|
|
|
// InstallFailures is the install failure count against the latest desired
|
|
// state. It is reset after a successful reconciliation.
|
|
// +optional
|
|
InstallFailures int64 `json:"installFailures,omitempty"`
|
|
|
|
// UpgradeFailures is the upgrade failure count against the latest desired
|
|
// state. It is reset after a successful reconciliation.
|
|
// +optional
|
|
UpgradeFailures int64 `json:"upgradeFailures,omitempty"`
|
|
|
|
// HelmStatus describes the status of helm release
|
|
// +optional
|
|
HelmStatus string `json:"helmStatus,omitempty"`
|
|
|
|
// Tested is the bool value whether the Helm Release was successfully
|
|
// tested or not.
|
|
// +optional
|
|
Tested bool `json:"tested,omitempty"`
|
|
|
|
// WaitCompleted is the bool value whether the Helm Release resources were
|
|
// waited for or not.
|
|
// +optional
|
|
WaitCompleted bool `json:"waitCompleted,omitempty"`
|
|
}
|
|
|
|
// ArmadaChartProgressing resets any failures and registers progress toward
|
|
// reconciling the given ArmadaChart by setting the ReadyCondition to
|
|
// 'Unknown' for ProgressingReason.
|
|
func ArmadaChartProgressing(ac ArmadaChart) ArmadaChart {
|
|
ac.Status.Conditions = []metav1.Condition{}
|
|
newCondition := metav1.Condition{
|
|
Type: ReadyCondition,
|
|
Status: metav1.ConditionUnknown,
|
|
Reason: ProgressingReason,
|
|
Message: "Reconciliation in progress",
|
|
}
|
|
apimeta.SetStatusCondition(ac.GetStatusConditions(), newCondition)
|
|
resetFailureCounts(&ac)
|
|
resetWaitCompleted(&ac)
|
|
resetTested(&ac)
|
|
ac.Status.HelmStatus = "Unknown"
|
|
return ac
|
|
}
|
|
|
|
// ArmadaChartNotReady registers a failed reconciliation of the given ArmadaChart.
|
|
func ArmadaChartNotReady(ac ArmadaChart, reason, message string) ArmadaChart {
|
|
newCondition := metav1.Condition{
|
|
Type: ReadyCondition,
|
|
Status: metav1.ConditionFalse,
|
|
Reason: reason,
|
|
Message: message,
|
|
}
|
|
apimeta.SetStatusCondition(ac.GetStatusConditions(), newCondition)
|
|
ac.Status.Failures++
|
|
resetTested(&ac)
|
|
return ac
|
|
}
|
|
|
|
// ArmadaChartReady registers a successful reconciliation of the given ArmadaChart.
|
|
func ArmadaChartReady(ac ArmadaChart) ArmadaChart {
|
|
newCondition := metav1.Condition{
|
|
Type: ReadyCondition,
|
|
Status: metav1.ConditionTrue,
|
|
Reason: "ReconciliationSucceeded",
|
|
Message: "Release reconciliation succeeded",
|
|
}
|
|
apimeta.SetStatusCondition(ac.GetStatusConditions(), newCondition)
|
|
resetFailureCounts(&ac)
|
|
setTested(&ac)
|
|
return ac
|
|
}
|
|
|
|
func resetFailureCounts(hr *ArmadaChart) {
|
|
hr.Status.Failures = 0
|
|
hr.Status.InstallFailures = 0
|
|
hr.Status.UpgradeFailures = 0
|
|
}
|
|
|
|
func resetTested(hr *ArmadaChart) {
|
|
hr.Status.Tested = false
|
|
}
|
|
|
|
func setTested(hr *ArmadaChart) {
|
|
hr.Status.Tested = true
|
|
}
|
|
|
|
func resetWaitCompleted(hr *ArmadaChart) {
|
|
hr.Status.WaitCompleted = false
|
|
}
|
|
|
|
func setWaitCompleted(hr *ArmadaChart) {
|
|
hr.Status.WaitCompleted = true
|
|
}
|
|
|
|
func NewForConfigOrDie(c *rest.Config) *rest.RESTClient {
|
|
cs, err := NewForConfig(c)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return cs
|
|
}
|
|
|
|
func NewForConfig(c *rest.Config) (*rest.RESTClient, error) {
|
|
config := *c
|
|
if err := setConfigDefaults(&config); err != nil {
|
|
return nil, err
|
|
}
|
|
client, err := rest.UnversionedRESTClientFor(&config)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return client, nil
|
|
}
|
|
|
|
func setConfigDefaults(config *rest.Config) error {
|
|
gv := schema.GroupVersion{Group: ArmadaChartGroup, Version: ArmadaChartVersion}
|
|
config.GroupVersion = &gv
|
|
config.APIPath = "/apis"
|
|
|
|
sch := runtime.NewScheme()
|
|
if err := AddToScheme(sch); err != nil {
|
|
return err
|
|
}
|
|
sch.AddUnversionedTypes(gv, &ArmadaChart{}, &ArmadaChartList{})
|
|
config.NegotiatedSerializer = serializer.NewCodecFactory(sch)
|
|
|
|
if config.UserAgent == "" {
|
|
config.UserAgent = rest.DefaultKubernetesUserAgent()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
//+kubebuilder:object:root=true
|
|
//+kubebuilder:subresource:status
|
|
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"
|
|
// +kubebuilder:printcolumn:name="Ready",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].status`
|
|
// +kubebuilder:printcolumn:name="Helm Status",type=string,JSONPath=`.status.helmStatus`
|
|
// +kubebuilder:printcolumn:name="Wait Done",type=boolean,JSONPath=`.status.waitCompleted`
|
|
// +kubebuilder:printcolumn:name="Tested",type=boolean,JSONPath=`.status.tested`
|
|
// +kubebuilder:printcolumn:name="Message",type=string,JSONPath=`.status.conditions[?(@.type=="Ready")].message`,priority=10
|
|
|
|
// ArmadaChart is the Schema for the armadacharts API
|
|
type ArmadaChart struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
|
|
|
Spec ArmadaChartSpec `json:"data,omitempty"`
|
|
Status ArmadaChartStatus `json:"status,omitempty"`
|
|
}
|
|
|
|
// GetStatusConditions returns a pointer to the Status.Conditions slice.
|
|
func (in *ArmadaChart) GetStatusConditions() *[]metav1.Condition {
|
|
return &in.Status.Conditions
|
|
}
|
|
|
|
//+kubebuilder:object:root=true
|
|
|
|
// ArmadaChartList contains a list of ArmadaChart
|
|
type ArmadaChartList struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ListMeta `json:"metadata,omitempty"`
|
|
Items []ArmadaChart `json:"items"`
|
|
}
|
|
|
|
func init() {
|
|
SchemeBuilder.Register(&ArmadaChart{}, &ArmadaChartList{})
|
|
}
|