-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrelease_types.go
140 lines (108 loc) · 3.46 KB
/
release_types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
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 v1alpha1
import (
"encoding/json"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN!
// NOTE: json tags are required. Any new fields you add must have json tags for the fields to be serialized.
// ReleaseSpec defines the desired state of Release
type ReleaseSpec struct {
// +optional
DependsOn metav1.ObjectMeta `json:"dependsOn"`
// +optional
Atomic bool `json:"atomic"`
Chart string `json:"chart,required"`
// +optional
CleanupOnFail bool `json:"cleanupOnFail"`
// +optional
DisableHooks bool `json:"disableHooks"`
// +optional
DisableOpenAPIValidation bool `json:"disableOpenAPIValidation"`
// +optional
ForceUpgrade bool `json:"forceUpgrade"`
// +optional
IncludeCRDs bool `json:"includeCRDS"`
Version string `json:"version,required"`
// +optional
Wait bool `json:"wait"`
// +optional
WaitTimeout int `json:"waitTimeout"`
// +optional
DryRun bool `json:"dryRun"`
// +optional
ValuesOverride Values `json:"values"`
// +optional
MaxRetries int `json:"maxRetries"`
}
type Values struct {
V map[string]interface{} `json:"-"`
}
// DeepCopyInto is an deepcopy function, copying the receiver, writing
// into out.
func (v *Values) DeepCopyInto(out *Values) {
b, err := json.Marshal(v.V)
if err != nil {
panic(err)
}
var c map[string]interface{}
err = json.Unmarshal(b, &c)
if err != nil {
panic(err)
}
out.V = c
return
}
// MarshalJSON marshals the HelmValues data to a JSON blob.
func (v Values) MarshalJSON() ([]byte, error) {
return json.Marshal(v.V)
}
// UnmarshalJSON sets the HelmValues to a copy of data.
func (v *Values) UnmarshalJSON(data []byte) error {
var out map[string]interface{}
err := json.Unmarshal(data, &out)
if err != nil {
return err
}
v.V = out
return nil
}
// ReleaseStatus defines the observed state of Release
type ReleaseStatus struct {
FailureCount int `json:"failureCount"`
Installed bool `json:"installed"`
}
// +kubebuilder:object:root=true
// Release is the Schema for the Releases API
// +kubebuilder:printcolumn:name="release-name",type=string,JSONPath=.metadata.name
// +kubebuilder:printcolumn:name="release-namespace",type=string,JSONPath=.metadata.namespace
// +kubebuilder:printcolumn:name="chart",type=string,JSONPath=.spec.chart
// +kubebuilder:printcolumn:name="chart-version",type=string,JSONPath=.spec.version
// +kubebuilder:printcolumn:name="age",type=date,JSONPath=.metadata.creationTimestamp
// +kubebuilder:subresource:status
type Release struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec ReleaseSpec `json:"spec,omitempty"`
Status ReleaseStatus `json:"status,omitempty"`
}
// +kubebuilder:object:root=true
// ReleaseList contains a list of Release
type ReleaseList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Release `json:"items"`
}
func init() {
SchemeBuilder.Register(&Release{}, &ReleaseList{})
}