Skip to content

Commit

Permalink
fix(kubernetes_logs): Compile kube-rs with openssl (#13038)
Browse files Browse the repository at this point in the history
* fix(kubernetes_logs): Compile kube-rs with openssl

This is to avoid breaking kubernetes_source inside clusters with k3s.
For more info check the issue kube-rs/kube#805

* +e2e ci

Signed-off-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>

Co-authored-by: Spencer Gilbert <spencer.gilbert@datadoghq.com>
  • Loading branch information
2 people authored and jszwedko committed Jun 9, 2022
1 parent f2be3ec commit 778e074
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -246,7 +246,7 @@ infer = { version = "0.7.0", default-features = false, optional = true}
indoc = { version = "1.0.6", default-features = false }
inventory = { version = "0.1.10", default-features = false }
k8s-openapi = { version = "0.14.0", default-features = false, features = ["api", "v1_16"], optional = true }
kube = { version = "0.71.0", default-features = false, features = ["client", "rustls-tls", "runtime"], optional = true }
kube = { version = "0.71.0", default-features = false, features = ["client", "native-tls", "runtime"], optional = true }
listenfd = { version = "0.5.0", default-features = false, optional = true }
logfmt = { version = "0.0.2", default-features = false, optional = true }
lru = { version = "0.7.5", default-features = false, optional = true }
Expand Down

0 comments on commit 778e074

Please sign in to comment.