Skip to content

Commit

Permalink
[chore] [receiver/k8scluster] Fix links in containers.go (open-teleme…
Browse files Browse the repository at this point in the history
…try#23148)

The previous links are broken. I've added the latest, so that reference docs can generate properly.
  • Loading branch information
theletterf committed Jun 6, 2023
1 parent fd0c6ff commit 24dceab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions receiver/k8sclusterreceiver/internal/container/containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ func GetSpecMetrics(c corev1.Container) []*metricspb.Metric {
{
"request",
"Resource requested for the container. " +
"See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#resourcerequirements-v1-core for details",
"See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#resourcerequirements-v1-core for details",
c.Resources.Requests,
},
{
"limit",
"Maximum resource limit set for the container. " +
"See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#resourcerequirements-v1-core for details",
"See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#resourcerequirements-v1-core for details",
c.Resources.Limits,
},
} {
Expand Down

0 comments on commit 24dceab

Please sign in to comment.