-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathtypes.go
173 lines (155 loc) · 7.05 KB
/
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// or in the "license" file accompanying this file. This file 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 (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
)
const (
// DefaultServiceAccountKey is the key to use for the default service account
// in the serviceAccounts map.
DefaultServiceAccountKey = "*"
)
// ResourceGraphDefinitionSpec defines the desired state of ResourceGraphDefinition
type ResourceGraphDefinitionSpec struct {
// The schema of the resourcegraphdefinition, which includes the
// apiVersion, kind, spec, status, types, and some validation
// rules.
//
// +kubebuilder:validation:Required
Schema *Schema `json:"schema,omitempty"`
// The resources that are part of the resourcegraphdefinition.
//
// +kubebuilder:validation:Optional
Resources []*Resource `json:"resources,omitempty"`
// ServiceAccount configuration for controller impersonation.
// Key is the namespace, value is the service account name to use.
// Special key "*" defines the default service account for any
// namespace not explicitly mapped.
//
// +kubebuilder:validation:Optional
DefaultServiceAccounts map[string]string `json:"defaultServiceAccounts,omitempty"`
// The weight used to determine priority when queuing reconciliation.
//
// +kubebuilder:default=100
// +kubebuilder:validation:Maximum=1000
// +kubebuilder:validation:Minimum=1
// +kubebuilder:validation:Optional
Weight int `json:"weight,omitempty"`
}
// Schema represents the attributes that define an instance of
// a resourcegraphdefinition.
type Schema struct {
// The kind of the resourcegraphdefinition. This is used to generate
// and create the CRD for the resourcegraphdefinition.
//
// +kubebuilder:validation:Required
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="kind is immutable"
Kind string `json:"kind,omitempty"`
// The APIVersion of the resourcegraphdefinition. This is used to generate
// and create the CRD for the resourcegraphdefinition.
//
// +kubebuilder:validation:Required
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="apiVersion is immutable"
APIVersion string `json:"apiVersion,omitempty"`
// The group of the resourcegraphdefinition. This is used to set the API group
// of the generated CRD. If omitted, it defaults to "kro.run".
//
// +kubebuilder:validation:Optional
// +kubebuilder:default="kro.run"
Group string `json:"group,omitempty"`
// The spec of the resourcegraphdefinition. Typically, this is the spec of
// the CRD that the resourcegraphdefinition is managing. This is adhering
// to the SimpleSchema spec
Spec runtime.RawExtension `json:"spec,omitempty"`
// The status of the resourcegraphdefinition. This is the status of the CRD
// that the resourcegraphdefinition is managing. This is adhering to the
// SimpleSchema spec.
Status runtime.RawExtension `json:"status,omitempty"`
// Validation is a list of validation rules that are applied to the
// resourcegraphdefinition.
// Not implemented yet.
Validation []string `json:"validation,omitempty"`
}
type Validation struct {
Expression string `json:"expression,omitempty"`
Message string `json:"message,omitempty"`
}
type Resource struct {
// +kubebuilder:validation:Required
ID string `json:"id,omitempty"`
// +kubebuilder:validation:Required
Template runtime.RawExtension `json:"template,omitempty"`
// +kubebuilder:validation:Optional
ReadyWhen []string `json:"readyWhen,omitempty"`
// +kubebuilder:validation:Optional
IncludeWhen []string `json:"includeWhen,omitempty"`
}
// ResourceGraphDefinitionState defines the state of the resource graph definition.
type ResourceGraphDefinitionState string
const (
// ResourceGraphDefinitionStateActive represents the active state of the resource definition.
ResourceGraphDefinitionStateActive ResourceGraphDefinitionState = "Active"
// ResourceGraphDefinitionStateInactive represents the inactive state of the resource graph definition
ResourceGraphDefinitionStateInactive ResourceGraphDefinitionState = "Inactive"
)
// ResourceGraphDefinitionStatus defines the observed state of ResourceGraphDefinition
type ResourceGraphDefinitionStatus struct {
// State is the state of the resourcegraphdefinition
State ResourceGraphDefinitionState `json:"state,omitempty"`
// TopologicalOrder is the topological order of the resourcegraphdefinition graph
TopologicalOrder []string `json:"topologicalOrder,omitempty"`
// Conditions represent the latest available observations of an object's state
Conditions []Condition `json:"conditions,omitempty"`
// Resources represents the resources, and their information (dependencies for now)
Resources []ResourceInformation `json:"resources,omitempty"`
}
// ResourceInformation defines the information about a resource
// in the resourcegraphdefinition
type ResourceInformation struct {
// ID represents the id of the resources we're providing information for
ID string `json:"id,omitempty"`
// Dependencies represents the resource dependencies of a resource graph definition
Dependencies []Dependency `json:"dependencies,omitempty"`
}
// Dependency defines the dependency a resource has observed
// from the resources it points to based on expressions
type Dependency struct {
// ID represents the id of the dependency resource
ID string `json:"id,omitempty"`
}
// +kubebuilder:object:root=true
// +kubebuilder:subresource:status
// +kubebuilder:printcolumn:name="APIVERSION",type=string,priority=0,JSONPath=`.spec.schema.apiVersion`
// +kubebuilder:printcolumn:name="KIND",type=string,priority=0,JSONPath=`.spec.schema.kind`
// +kubebuilder:printcolumn:name="STATE",type=string,priority=0,JSONPath=`.status.state`
// +kubebuilder:printcolumn:name="TOPOLOGICALORDER",type=string,priority=1,JSONPath=`.status.topologicalOrder`
// +kubebuilder:printcolumn:name="AGE",type="date",priority=0,JSONPath=".metadata.creationTimestamp"
// +kubebuilder:resource:shortName=rgd,scope=Cluster
// ResourceGraphDefinition is the Schema for the resourcegraphdefinitions API
type ResourceGraphDefinition struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec ResourceGraphDefinitionSpec `json:"spec,omitempty"`
Status ResourceGraphDefinitionStatus `json:"status,omitempty"`
}
//+kubebuilder:object:root=true
// ResourceGraphDefinitionList contains a list of ResourceGraphDefinition
type ResourceGraphDefinitionList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []ResourceGraphDefinition `json:"items"`
}
func init() {
SchemeBuilder.Register(&ResourceGraphDefinition{}, &ResourceGraphDefinitionList{})
}