-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support follow_redirects, tls #1896
base: main
Are you sure you want to change the base?
Conversation
struct CurlTLS { | ||
std::string mCaFile; | ||
std::string mCertFile; | ||
std::string mKeyFile; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
k8s场景这几个文件从哪里来?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
一般配置是:ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt,这个是 POD 里面自带的
如果用户有额外需求,就自己配置
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我这里说一下,在ACK组件形态下,肯定不允许客户自己配置的。这块我之前提过固定挂一个configmap到某个路径下,这样客户自己可以去configmap中修改,而不动部署模版
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我这里说一下,在ACK组件形态下,肯定不允许客户自己配置的。这块我之前提过固定挂一个configmap到某个路径下,这样客户自己可以去configmap中修改,而不动部署模版
这里不单是 ACK 组件形态,后面托管探针、集团生产环境(另一套组件)需要用到自定义挂载 CA File 才能采集
No description provided.