-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(bors): merge pull request #874
874: ci: specify opentel receiver endpoint r=tiagolobocastro a=tiagolobocastro When running on the CI we an opentel receiver to push the traces to an external collector. With recent versions of the receiver, it now listens only on localhost which was prevent it from receiving the traces to begin with. Now we specify the domain name of the receiver. Co-authored-by: Tiago Castro <[email protected]>
- Loading branch information
Showing
3 changed files
with
38 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,36 +3,38 @@ name = "k8s-operators" | |
description = "K8S Operator" | ||
version = "1.0.0" | ||
edition = "2018" | ||
authors = ["Jeffry Molanus <[email protected]>"] | ||
|
||
[[bin]] | ||
name = "operator-diskpool" | ||
path = "src/pool/main.rs" | ||
required-features = ["bin"] | ||
|
||
[lib] | ||
name = "k8s_operators" | ||
path = "src/lib.rs" | ||
|
||
|
||
[features] | ||
default = [ "rls" ] | ||
rls = [ "openapi/tower-client-rls" ] | ||
tls = [ "openapi/tower-client-tls" ] | ||
|
||
default = ["rls", "bin"] | ||
bin = ["openapi", "utils", "anyhow", "chrono", "clap", "futures", "snafu", "tokio", "humantime", "tracing"] | ||
rls = ["openapi/tower-client-rls"] | ||
tls = ["openapi/tower-client-tls"] | ||
|
||
[dependencies] | ||
openapi = { path = "../../openapi", default-features = false, features = [ "tower-client", "tower-trace" ] } | ||
utils = { path = "../../utils/utils-lib" } | ||
anyhow = "1.0.75" | ||
chrono = "0.4.31" | ||
clap = { version = "4.4.6", features = ["color", "env", "string"] } | ||
futures = "0.3.28" | ||
# CRD | ||
k8s-openapi = { version = "0.20.0", features = ["v1_22"] } | ||
kube = { version = "0.87.0", features = ["derive", "runtime"] } | ||
schemars = "0.8.15" | ||
serde = "1.0.188" | ||
serde_json = "1.0.107" | ||
snafu = "0.7.5" | ||
tokio = { version = "1.32.0", features = ["full"] } | ||
humantime = "2.1.0" | ||
tracing = "0.1.37" | ||
schemars = { version = "0.8.15" } | ||
serde = { version = "1.0.188" } | ||
serde_json = { version = "1.0.107" } | ||
|
||
# Binary | ||
openapi = { path = "../../openapi", default-features = false, features = ["tower-client", "tower-trace"], optional = true } | ||
utils = { path = "../../utils/utils-lib", optional = true } | ||
anyhow = { version = "1.0.75", optional = true } | ||
chrono = { version = "0.4.31", optional = true } | ||
clap = { version = "4.4.6", features = ["color", "env", "string"], optional = true } | ||
futures = { version = "0.3.28", optional = true } | ||
snafu = { version = "0.7.5", optional = true } | ||
tokio = { version = "1.32.0", features = ["full"], optional = true } | ||
humantime = { version = "2.1.0", optional = true } | ||
tracing = { version = "0.1.37", optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters