File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 21
21
)
22
22
23
23
const (
24
- // IngressTypeNginx specifies that an ingress entry should be created.
25
- IngressTypeNginx IngressType = "ingress"
26
24
// IngressTypeOpenshiftRoute specifies that an route entry should be created.
27
25
IngressTypeRoute IngressType = "route"
28
26
)
@@ -39,12 +37,6 @@ const (
39
37
// TLSRouteTerminationTypeEdge indicates that encryption should be terminated
40
38
// at the edge router.
41
39
TLSRouteTerminationTypeEdge TLSRouteTerminationType = "edge"
42
- // TLSTerminationPassthrough indicates that the destination service is
43
- // responsible for decrypting traffic.
44
- TLSRouteTerminationTypePassthrough TLSRouteTerminationType = "passthrough"
45
- // TLSTerminationReencrypt indicates that traffic will be decrypted on the edge
46
- // and re-encrypt using a new certificate.
47
- TLSRouteTerminationTypeReencrypt TLSRouteTerminationType = "reencrypt"
48
40
)
49
41
50
42
// IngressRuleType defines how the collector receivers will be exposed in the Ingress.
@@ -56,8 +48,4 @@ const (
56
48
// IngressRuleTypePath configures Ingress to use single host with multiple paths.
57
49
// This configuration might require additional ingress setting to rewrite paths.
58
50
IngressRuleTypePath IngressRuleType = "path"
59
-
60
- // IngressRuleTypeSubdomain configures Ingress to use multiple hosts - one for each exposed
61
- // receiver port. The port name is used as a subdomain for the host defined in the Ingress e.g. otlp-http.example.com.
62
- IngressRuleTypeSubdomain IngressRuleType = "subdomain"
63
51
)
You can’t perform that action at this time.
0 commit comments