-
Notifications
You must be signed in to change notification settings - Fork 347
/
resource_provider.go
210 lines (185 loc) · 6.61 KB
/
resource_provider.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
// Copyright Envoy Gateway Authors
// SPDX-License-Identifier: Apache-2.0
// The full text of the Apache license is available in the LICENSE file at
// the root of the repo.
package proxy
import (
"fmt"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
"k8s.io/utils/pointer"
egcfgv1a1 "github.com/envoyproxy/gateway/api/config/v1alpha1"
"github.com/envoyproxy/gateway/internal/gatewayapi"
"github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource"
"github.com/envoyproxy/gateway/internal/ir"
)
type ResourceRender struct {
infra *ir.ProxyInfra
// Namespace is the Namespace used for managed infra.
Namespace string
}
func NewResourceRender(ns string, infra *ir.ProxyInfra) *ResourceRender {
return &ResourceRender{
Namespace: ns,
infra: infra,
}
}
func (r *ResourceRender) Name() string {
return ExpectedResourceHashedName(r.infra.Name)
}
// ServiceAccount returns the expected proxy serviceAccount.
func (r *ResourceRender) ServiceAccount() (*corev1.ServiceAccount, error) {
// Set the labels based on the owning gateway name.
labels := envoyLabels(r.infra.GetProxyMetadata().Labels)
if len(labels[gatewayapi.OwningGatewayNamespaceLabel]) == 0 || len(labels[gatewayapi.OwningGatewayNameLabel]) == 0 {
return nil, fmt.Errorf("missing owning gateway labels")
}
return &corev1.ServiceAccount{
TypeMeta: metav1.TypeMeta{
Kind: "ServiceAccount",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Namespace: r.Namespace,
Name: ExpectedResourceHashedName(r.infra.Name),
Labels: labels,
},
}, nil
}
// Service returns the expected Service based on the provided infra.
func (r *ResourceRender) Service() (*corev1.Service, error) {
var ports []corev1.ServicePort
for _, listener := range r.infra.Listeners {
for _, port := range listener.Ports {
target := intstr.IntOrString{IntVal: port.ContainerPort}
protocol := corev1.ProtocolTCP
if port.Protocol == ir.UDPProtocolType {
protocol = corev1.ProtocolUDP
}
p := corev1.ServicePort{
Name: port.Name,
Protocol: protocol,
Port: port.ServicePort,
TargetPort: target,
}
ports = append(ports, p)
}
}
// Set the labels based on the owning gatewayclass name.
labels := envoyLabels(r.infra.GetProxyMetadata().Labels)
if len(labels[gatewayapi.OwningGatewayNamespaceLabel]) == 0 || len(labels[gatewayapi.OwningGatewayNameLabel]) == 0 {
return nil, fmt.Errorf("missing owning gateway labels")
}
// Get annotations
var annotations map[string]string
provider := r.infra.GetProxyConfig().GetEnvoyProxyProvider()
envoyServiceConfig := provider.GetEnvoyProxyKubeProvider().EnvoyService
if envoyServiceConfig.Annotations != nil {
annotations = envoyServiceConfig.Annotations
}
// Set the spec of gateway service
serviceSpec := resource.ExpectedServiceSpec(envoyServiceConfig.Type)
serviceSpec.Ports = ports
serviceSpec.Selector = resource.GetSelector(labels).MatchLabels
serviceSpec.ExternalIPs = r.infra.Addresses
svc := &corev1.Service{
TypeMeta: metav1.TypeMeta{
APIVersion: "v1",
Kind: "Service",
},
ObjectMeta: metav1.ObjectMeta{
Namespace: r.Namespace,
Name: ExpectedResourceHashedName(r.infra.Name),
Labels: labels,
Annotations: annotations,
},
Spec: serviceSpec,
}
return svc, nil
}
// ConfigMap returns the expected ConfigMap based on the provided infra.
func (r *ResourceRender) ConfigMap() (*corev1.ConfigMap, error) {
// Set the labels based on the owning gateway name.
labels := envoyLabels(r.infra.GetProxyMetadata().Labels)
if len(labels[gatewayapi.OwningGatewayNamespaceLabel]) == 0 || len(labels[gatewayapi.OwningGatewayNameLabel]) == 0 {
return nil, fmt.Errorf("missing owning gateway labels")
}
return &corev1.ConfigMap{
TypeMeta: metav1.TypeMeta{
Kind: "ConfigMap",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Namespace: r.Namespace,
Name: ExpectedResourceHashedName(r.infra.Name),
Labels: labels,
},
Data: map[string]string{
SdsCAFilename: SdsCAConfigMapData,
SdsCertFilename: SdsCertConfigMapData,
},
}, nil
}
// Deployment returns the expected Deployment based on the provided infra.
func (r *ResourceRender) Deployment() (*appsv1.Deployment, error) {
// Get the EnvoyProxy config to configure the deployment.
provider := r.infra.GetProxyConfig().GetEnvoyProxyProvider()
if provider.Type != egcfgv1a1.ProviderTypeKubernetes {
return nil, fmt.Errorf("invalid provider type %v for Kubernetes infra manager", provider.Type)
}
deploymentConfig := provider.GetEnvoyProxyKubeProvider().EnvoyDeployment
// Get expected bootstrap configurations rendered ProxyContainers
containers, err := expectedProxyContainers(r.infra, deploymentConfig)
if err != nil {
return nil, err
}
// Set the labels based on the owning gateway name.
labels := envoyLabels(r.infra.GetProxyMetadata().Labels)
if len(labels[gatewayapi.OwningGatewayNamespaceLabel]) == 0 || len(labels[gatewayapi.OwningGatewayNameLabel]) == 0 {
return nil, fmt.Errorf("missing owning gateway labels")
}
selector := resource.GetSelector(labels)
// Get annotations
var annotations map[string]string
if deploymentConfig.Pod.Annotations != nil {
annotations = deploymentConfig.Pod.Annotations
}
deployment := &appsv1.Deployment{
TypeMeta: metav1.TypeMeta{
Kind: "Deployment",
APIVersion: "apps/v1",
},
ObjectMeta: metav1.ObjectMeta{
Namespace: r.Namespace,
Name: ExpectedResourceHashedName(r.infra.Name),
Labels: labels,
},
Spec: appsv1.DeploymentSpec{
Replicas: deploymentConfig.Replicas,
Strategy: *deploymentConfig.Strategy,
Selector: selector,
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: selector.MatchLabels,
Annotations: annotations,
},
Spec: corev1.PodSpec{
Containers: containers,
ServiceAccountName: ExpectedResourceHashedName(r.infra.Name),
AutomountServiceAccountToken: pointer.Bool(false),
TerminationGracePeriodSeconds: pointer.Int64(int64(300)),
DNSPolicy: corev1.DNSClusterFirst,
RestartPolicy: corev1.RestartPolicyAlways,
SchedulerName: "default-scheduler",
SecurityContext: deploymentConfig.Pod.SecurityContext,
Affinity: deploymentConfig.Pod.Affinity,
Tolerations: deploymentConfig.Pod.Tolerations,
Volumes: expectedDeploymentVolumes(r.infra.Name, deploymentConfig),
},
},
},
}
return deployment, nil
}