Skip to content

Commit dbe8ecb

Browse files
committed
remove Service from the apiserver configuration
1 parent ea7746f commit dbe8ecb

File tree

1 file changed

+0
-21
lines changed
  • keps/sig-instrumentation/647-apiserver-tracing

1 file changed

+0
-21
lines changed

keps/sig-instrumentation/647-apiserver-tracing/README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -121,27 +121,6 @@ type OpenTelemetryClientConfiguration struct {
121121
// URL of the collector that's running on the master.
122122
// if URL is specified, APIServer uses the egressType Master when sending data to the collector.
123123
URL *string `json:"url,omitempty" protobuf:"bytes,3,opt,name=url"`
124-
125-
// +optional
126-
// Service that's the frontend of the collector deployment running in the cluster.
127-
// If Service is specified, APIServer uses the egressType Cluster when sending data to the collector.
128-
Service *ServiceReference `json:"service,omitempty" protobuf:"bytes,1,opt,name=service"`
129-
}
130-
131-
// ServiceReference holds a reference to Service.legacy.k8s.io
132-
type ServiceReference struct {
133-
// `namespace` is the namespace of the service.
134-
// Required
135-
Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
136-
// `name` is the name of the service.
137-
// Required
138-
Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
139-
140-
// If specified, the port on the service.
141-
// Defaults to 4317, the IANA reserved port for OpenTelemetry.
142-
// `port` should be a valid port number (1-65535, inclusive).
143-
// +optional
144-
Port *int32 `json:"port,omitempty" protobuf:"varint,3,opt,name=port"`
145124
}
146125
```
147126

0 commit comments

Comments
 (0)