-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphapplication_types.go
172 lines (146 loc) · 5.2 KB
/
phapplication_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
/*
Copyright 2022.
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 (
corev1 "k8s.io/api/core/v1"
networkv1 "k8s.io/api/networking/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"primehub-controller/pkg/escapism"
)
// 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.
// PhApplication Phase
const (
ApplicationStarting string = "Starting"
ApplicationReady string = "Ready"
ApplicationUpdating string = "Updating"
ApplicationStopping string = "Stopping"
ApplicationStopped string = "Stopped"
ApplicationError string = "Error"
)
// PhApplication Scope
const (
ApplicationPublicScope string = "public"
ApplicationPrimehubScope string = "primehub"
ApplicationGroupScope string = "group"
)
type PhApplicationPodTemplate struct {
Spec corev1.PodSpec `json:"spec"`
}
type PhApplicationSvcTemplate struct {
Spec corev1.ServiceSpec `json:"spec"`
}
// PhApplicationSpec defines the desired state of PhApplication
type PhApplicationSpec struct {
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
// Important: Run "make" to regenerate code after modifying this file
DisplayName string `json:"displayName"`
GroupName string `json:"groupName"`
InstanceType string `json:"instanceType"`
Scope string `json:"scope"`
Stop bool `json:"stop,omitempty"`
PodTemplate PhApplicationPodTemplate `json:"podTemplate"`
SvcTemplate PhApplicationSvcTemplate `json:"svcTemplate"`
HTTPPort *int32 `json:"httpPort,omitempty"`
Rewrite bool `json:"rewrite,omitempty"`
AppRoot string `json:"appRoot,omitempty"`
}
// PhApplicationStatus defines the observed state of PhApplication
type PhApplicationStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
Phase string `json:"phase"`
Message string `json:"message,omitempty"`
ServiceName string `json:"serviceName,omitempty"`
}
// +kubebuilder:subresource:status
// +kubebuilder:object:root=true
// +kubebuilder:printcolumn:name="Group",type="string",JSONPath=".spec.groupName"
// +kubebuilder:printcolumn:name="Status",type="string",JSONPath=".status.phase",description="Status of the deployment"
// +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.message",description="Message of the deployment"
// PhApplication is the Schema for the phapplications API
type PhApplication struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec PhApplicationSpec `json:"spec"`
Status PhApplicationStatus `json:"status,omitempty"`
}
// +kubebuilder:object:root=true
// PhApplicationList contains a list of PhApplication
type PhApplicationList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []PhApplication `json:"items"`
}
func init() {
SchemeBuilder.Register(&PhApplication{}, &PhApplicationList{})
}
func (in *PhApplication) GroupNetworkPolicyIngressRule() []networkv1.NetworkPolicyIngressRule {
var ports []networkv1.NetworkPolicyPort
for _, p := range in.Spec.SvcTemplate.Spec.Ports {
ports = append(ports, networkv1.NetworkPolicyPort{
Protocol: &p.Protocol,
Port: &p.TargetPort,
})
}
return []networkv1.NetworkPolicyIngressRule{
{
Ports: ports,
From: []networkv1.NetworkPolicyPeer{
{
PodSelector: &metav1.LabelSelector{
MatchLabels: map[string]string{"primehub.io/group": in.GroupName()},
},
},
},
},
}
}
func (in *PhApplication) ProxyNetworkPolicyIngressRule() []networkv1.NetworkPolicyIngressRule {
var ports []networkv1.NetworkPolicyPort
for _, p := range in.Spec.SvcTemplate.Spec.Ports {
ports = append(ports, networkv1.NetworkPolicyPort{
Protocol: &p.Protocol,
Port: &p.TargetPort,
})
}
return []networkv1.NetworkPolicyIngressRule{
{
Ports: ports,
From: []networkv1.NetworkPolicyPeer{
{
PodSelector: &metav1.LabelSelector{
MatchLabels: map[string]string{"app.kubernetes.io/name": "primehub-console"},
},
},
{
PodSelector: &metav1.LabelSelector{
MatchLabels: map[string]string{"app.kubernetes.io/name": "primehub-graphql"},
},
},
},
},
}
}
func (in *PhApplication) App() string {
return "primehub-app"
}
func (in *PhApplication) AppID() string {
return in.ObjectMeta.Name
}
func (in *PhApplication) AppName() string {
return "app-" + in.ObjectMeta.Name
}
func (in *PhApplication) GroupName() string {
return escapism.EscapeToPrimehubLabel(in.Spec.GroupName)
}