-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathinfraenv_types.go
246 lines (206 loc) · 9.95 KB
/
infraenv_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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
Copyright 2021.
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 v1beta1
import (
"github.com/openshift/assisted-service/api/hiveextension/v1beta1"
"github.com/openshift/assisted-service/models"
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
const (
ImageCreatedReason = "ImageCreated"
ImageStateCreated = "Image has been created"
ImageCreationErrorReason = "ImageCreationError"
ImageStateFailedToCreate = "Failed to create image"
InfraEnvNameLabel = "infraenvs.agent-install.openshift.io"
)
// ClusterReference represents a Cluster Reference. It has enough information to retrieve cluster
// in any namespace
type ClusterReference struct {
// Name is unique within a namespace to reference a cluster resource.
// +optional
Name string `json:"name,omitempty"`
// Namespace defines the space within which the cluster name must be unique.
// +optional
Namespace string `json:"namespace,omitempty"`
}
const (
ImageCreatedCondition conditionsv1.ConditionType = "ImageCreated"
)
type InfraEnvSpec struct {
// Proxy defines the proxy settings for agents and clusters that use the InfraEnv. If
// unset, the agents and clusters will not be configured to use a proxy.
// +optional
Proxy *Proxy `json:"proxy,omitempty"`
// AdditionalNTPSources is a list of NTP sources (hostname or IP) to be added to all cluster
// hosts. They are added to any NTP sources that were configured through other means.
// +optional
AdditionalNTPSources []string `json:"additionalNTPSources,omitempty"`
// SSHAuthorizedKey is a SSH public keys that will be added to all agents for use in debugging.
// +optional
SSHAuthorizedKey string `json:"sshAuthorizedKey,omitempty"`
// PullSecretRef is the reference to the secret to use when pulling images.
PullSecretRef *corev1.LocalObjectReference `json:"pullSecretRef"`
// AgentLabels lists labels to apply to Agents that are associated with this InfraEnv upon
// the creation of the Agents.
// +optional
AgentLabels map[string]string `json:"agentLabels,omitempty"`
// NmstateConfigLabelSelector associates NMStateConfigs for hosts that are considered part
// of this installation environment.
// +optional
NMStateConfigLabelSelector metav1.LabelSelector `json:"nmStateConfigLabelSelector,omitempty"`
// ClusterRef is the reference to the single ClusterDeployment that will be installed from
// this InfraEnv.
// Future versions will allow for multiple ClusterDeployments and this reference will be
// removed.
// +optional
ClusterRef *ClusterReference `json:"clusterRef,omitempty"`
// Json formatted string containing the user overrides for the initial ignition config
// +optional
IgnitionConfigOverride string `json:"ignitionConfigOverride,omitempty"`
// CpuArchitecture specifies the target CPU architecture. Default is x86_64
// +kubebuilder:default=x86_64
// +optional
CpuArchitecture string `json:"cpuArchitecture,omitempty"`
// IPXEScriptType the script type that should be served (DiscoveryImageAlways/BootOrderControl)
// DiscoveryImageAlways: Boot unconditionaly from the network discovery image
// BootOrderControl: Boot from discovery ISO depending on the host's state.
// When the value is BootOrderControl, the service will look for an Agent record that matches the host's MAC address;
// if found, and if that Agent is in a state where it is provisioned and attached to a cluster, then host will boot the host disk.
// Otherwise it will boot the discovery ISO using the same script as the DiscoveryImageAlways option.
// +kubebuilder:default=DiscoveryImageAlways
// +optional
IPXEScriptType IPXEScriptType `json:"ipxeScriptType"`
// KernelArguments is the additional kernel arguments to be passed during boot time of the discovery image.
// Applicable for both iPXE, and ISO streaming from Image Service.
// +optional
KernelArguments []KernelArgument `json:"kernelArguments,omitempty"`
// PEM-encoded X.509 certificate bundle. Hosts discovered by this
// infra-env will trust the certificates in this bundle. Clusters formed
// from the hosts discovered by this infra-env will also trust the
// certificates in this bundle.
// +optional
AdditionalTrustBundle string `json:"additionalTrustBundle,omitempty"`
// OSImageVersion is the version of OS image to use when generating the InfraEnv.
// The version should refer to an OSImage specified in the AgentServiceConfig
// (i.e. OSImageVersion should equal to an OpenshiftVersion in OSImages list).
// Note: OSImageVersion can't be specified along with ClusterRef.
// +optional
OSImageVersion string `json:"osImageVersion,omitempty"`
// MirrorRegistryRef is a reference to a given MirrorRegistry ConfigMap that holds the registries toml data
// +optional
MirrorRegistryRef *v1beta1.MirrorRegistryConfigMapReference `json:"mirrorRegistryRef,omitempty"`
// ImageType specifies the type of discovery ISO to be generated by the Assisted Installer.
// Supported values include:
// - full-iso: A complete Red Hat CoreOS (RHCOS) ISO, customized with a specific ignition file.
// - minimal-iso: A lightweight ISO that retrieves the remainder of the RHCOS root file system (rootfs) dynamically from the Internet
// +optional
ImageType models.ImageType `json:"imageType,omitempty"`
}
type KernelArgument struct {
// Operation is the operation to apply on the kernel argument.
// +kubebuilder:validation:Enum=append;replace;delete
Operation string `json:"operation,omitempty"`
// Value can have the form <parameter> or <parameter>=<value>. The following examples should be supported:
// rd.net.timeout.carrier=60
// isolcpus=1,2,10-20,100-2000:2/25
// quiet
// +kubebuilder:validation:Pattern=`^(?:(?:[^ \t\n\r"]+)|(?:"[^"]*"))+$`
Value string `json:"value,omitempty"`
}
// Proxy defines the proxy settings for agents and clusters that use the InfraEnv.
// At least one of HTTPProxy or HTTPSProxy is required.
type Proxy struct {
// HTTPProxy is the URL of the proxy for HTTP requests.
// +optional
HTTPProxy string `json:"httpProxy,omitempty"`
// HTTPSProxy is the URL of the proxy for HTTPS requests.
// +optional
HTTPSProxy string `json:"httpsProxy,omitempty"`
// NoProxy is a comma-separated list of domains and CIDRs for which the proxy should not be
// used.
// +optional
NoProxy string `json:"noProxy,omitempty"`
}
type InfraEnvStatus struct {
// ISODownloadURL specifies an HTTP/S URL that contains a discovery ISO containing the
// configuration from this InfraEnv.
ISODownloadURL string `json:"isoDownloadURL,omitempty"`
CreatedTime *metav1.Time `json:"createdTime,omitempty"`
Conditions []conditionsv1.Condition `json:"conditions,omitempty"`
// AgentLabelSelector specifies the label that will be applied to Agents that boot from the
// installation media of this InfraEnv. This is how a user would identify which agents are
// associated with a particular InfraEnv.
// +optional
AgentLabelSelector metav1.LabelSelector `json:"agentLabelSelector,omitempty"`
// InfraEnvDebugInfo includes information for debugging the installation process.
// +optional
InfraEnvDebugInfo InfraEnvDebugInfo `json:"debugInfo"`
// BootArtifacts specifies the URLs for each boot artifact
// +optional
BootArtifacts BootArtifacts `json:"bootArtifacts"`
}
type InfraEnvDebugInfo struct {
// EventsURL specifies an HTTP/S URL that contains InfraEnv events
// +optional
EventsURL string `json:"eventsURL"`
// StaticNetworkDownloadURL specifies an HTTP/S URL that contains the static network config
StaticNetworkDownloadURL string `json:"staticNetworkDownloadURL,omitempty"`
}
type BootArtifacts struct {
// InitrdURL specifies an HTTP/S URL that contains the initrd
// +optional
InitrdURL string `json:"initrd"`
// RootfsURL specifies an HTTP/S URL that contains the rootfs
// +optional
RootfsURL string `json:"rootfs"`
// KernelURL specifies an HTTP/S URL that contains the kernel
// +optional
KernelURL string `json:"kernel"`
// IpxeScriptURL specifies an HTTP/S URL that contains the iPXE script
// +optional
IpxeScriptURL string `json:"ipxeScript"`
// DiscoveryIgnitionURL specifies an HTTP/S URL that contains the discovery ignition
// +optional
DiscoveryIgnitionURL string `json:"discoveryIgnitionURL"`
}
// +kubebuilder:object:root=true
// +kubebuilder:subresource:status
// +kubebuilder:printcolumn:name="ISO Created At",type="string",JSONPath=".status.createdTime",description="The Discovery ISO creation time"
// +kubebuilder:printcolumn:name="ISO URL",type="string",JSONPath=".status.isoDownloadURL",description="The Discovery ISO download URL",priority=1
type InfraEnv struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec InfraEnvSpec `json:"spec,omitempty"`
Status InfraEnvStatus `json:"status,omitempty"`
}
// +kubebuilder:object:root=true
// InfraEnvList contains a list of InfraEnvs
type InfraEnvList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []InfraEnv `json:"items"`
}
// IPXEScriptType is the script type that should be served (BootOrderControl/DiscoveryImageAlways)
// +kubebuilder:validation:Enum="";DiscoveryImageAlways;BootOrderControl
type IPXEScriptType string
const (
// DiscoveryImageAlways - Boot from network
DiscoveryImageAlways IPXEScriptType = "DiscoveryImageAlways"
// BootOrderControl - Boot with mac identification redirect script
BootOrderControl IPXEScriptType = "BootOrderControl"
)
func init() {
SchemeBuilder.Register(&InfraEnv{}, &InfraEnvList{})
}