@@ -153,33 +153,33 @@ func getServicesForEndpoints(endpoints map[string]controllerv1alpha1.EndpointLis
153
153
}
154
154
}
155
155
156
- func getRoutesForSpec (routingSuffix string , endpoints map [string ]controllerv1alpha1.EndpointList , meta DevWorkspaceMetadata ) []routeV1.Route {
156
+ func getRoutesForSpec (routingSuffix string , endpoints map [string ]controllerv1alpha1.EndpointList , meta DevWorkspaceMetadata , annotations map [ string ] string ) []routeV1.Route {
157
157
var routes []routeV1.Route
158
158
for _ , machineEndpoints := range endpoints {
159
159
for _ , endpoint := range machineEndpoints {
160
160
if endpoint .Exposure != controllerv1alpha1 .PublicEndpointExposure {
161
161
continue
162
162
}
163
- routes = append (routes , getRouteForEndpoint (routingSuffix , endpoint , meta ))
163
+ routes = append (routes , getRouteForEndpoint (routingSuffix , endpoint , meta , annotations ))
164
164
}
165
165
}
166
166
return routes
167
167
}
168
168
169
- func getIngressesForSpec (routingSuffix string , endpoints map [string ]controllerv1alpha1.EndpointList , meta DevWorkspaceMetadata ) []networkingv1.Ingress {
169
+ func getIngressesForSpec (routingSuffix string , endpoints map [string ]controllerv1alpha1.EndpointList , meta DevWorkspaceMetadata , annotations map [ string ] string ) []networkingv1.Ingress {
170
170
var ingresses []networkingv1.Ingress
171
171
for _ , machineEndpoints := range endpoints {
172
172
for _ , endpoint := range machineEndpoints {
173
173
if endpoint .Exposure != controllerv1alpha1 .PublicEndpointExposure {
174
174
continue
175
175
}
176
- ingresses = append (ingresses , getIngressForEndpoint (routingSuffix , endpoint , meta ))
176
+ ingresses = append (ingresses , getIngressForEndpoint (routingSuffix , endpoint , meta , annotations ))
177
177
}
178
178
}
179
179
return ingresses
180
180
}
181
181
182
- func getRouteForEndpoint (routingSuffix string , endpoint controllerv1alpha1.Endpoint , meta DevWorkspaceMetadata ) routeV1.Route {
182
+ func getRouteForEndpoint (routingSuffix string , endpoint controllerv1alpha1.Endpoint , meta DevWorkspaceMetadata , annotations map [ string ] string ) routeV1.Route {
183
183
targetEndpoint := intstr .FromInt (endpoint .TargetPort )
184
184
endpointName := common .EndpointName (endpoint .Name )
185
185
return routeV1.Route {
@@ -189,7 +189,7 @@ func getRouteForEndpoint(routingSuffix string, endpoint controllerv1alpha1.Endpo
189
189
Labels : map [string ]string {
190
190
constants .DevWorkspaceIDLabel : meta .DevWorkspaceId ,
191
191
},
192
- Annotations : routeAnnotations ( endpointName ),
192
+ Annotations : createAnnotations ( endpoint . Name , annotations , routeAnnotations ),
193
193
},
194
194
Spec : routeV1.RouteSpec {
195
195
Host : common .WorkspaceHostname (routingSuffix , meta .DevWorkspaceId ),
@@ -209,7 +209,7 @@ func getRouteForEndpoint(routingSuffix string, endpoint controllerv1alpha1.Endpo
209
209
}
210
210
}
211
211
212
- func getIngressForEndpoint (routingSuffix string , endpoint controllerv1alpha1.Endpoint , meta DevWorkspaceMetadata ) networkingv1.Ingress {
212
+ func getIngressForEndpoint (routingSuffix string , endpoint controllerv1alpha1.Endpoint , meta DevWorkspaceMetadata , annotations map [ string ] string ) networkingv1.Ingress {
213
213
endpointName := common .EndpointName (endpoint .Name )
214
214
hostname := common .EndpointHostname (routingSuffix , meta .DevWorkspaceId , endpointName , endpoint .TargetPort )
215
215
ingressPathType := networkingv1 .PathTypeImplementationSpecific
@@ -220,7 +220,7 @@ func getIngressForEndpoint(routingSuffix string, endpoint controllerv1alpha1.End
220
220
Labels : map [string ]string {
221
221
constants .DevWorkspaceIDLabel : meta .DevWorkspaceId ,
222
222
},
223
- Annotations : nginxIngressAnnotations (endpoint .Name ),
223
+ Annotations : createAnnotations (endpoint .Name , annotations , nginxIngressAnnotations ),
224
224
},
225
225
Spec : networkingv1.IngressSpec {
226
226
Rules : []networkingv1.IngressRule {
0 commit comments