-1

我正在关注文档CRI-O Metrics。我可以得到指标,例如 http://hostname:port/metrics 但不是 https://hostname:port/metrics 上的预期

我的配置文件示例:

$ cat /etc/crio/crio.conf.d/01-metrics.conf
[crio.metrics]
enable_metrics = true
metrics_port = 5555
metrics_cert = "/etc/crio/certs/cert.crt"
metrics_key = "/etc/crio/certs/key.crt"

文件的权限为 644。示例:

$ ls -la /etc/crio/certs/
total 20
drwxr-xr-x. 2 root root    37 Jul 21 16:19 .
drwxr-xr-x. 4 root root    55 Jul 21 16:08 ..
-rw-r--r--. 1 root root 12975 Jul 21 15:49 cert.crt
-rw-r--r--. 1 root root  1872 Jul 21 15:49 key.crt

是否需要启用任何其他配置才能使套接字使用 https 而不是 http?

更新:我正在运行的 CRI-O 版本是最新的稳定版本(在提出问题时):

$ crio -v
INFO[0000] Starting CRI-O, version: 1.20.3, git: 50065140109e8dc4b8fd6dc5d2b587e5cb7ed79d(dirty)
crio version 1.20.3
Version:       1.20.3
GitCommit:     50065140109e8dc4b8fd6dc5d2b587e5cb7ed79d
GitTreeState:  dirty
BuildDate:     1980-01-01T00:00:00Z
GoVersion:     go1.15.7
Compiler:      gc
Platform:      linux/amd64
Linkmode:      static
4

1 回答 1

0

似乎该功能(CRI-O 套接字在 https 上运行指标的能力)仅在 1.22 及更高版本中可用(参考CRI-O 1.20.3 指标不在 https 上运行(基于文档设置)#5112

所以看起来这个功能不能应用在 1.20.3 版本上。

于 2021-07-21T15:37:29.810 回答