initial commit
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | ||
name = "metrics-client" | ||
version = "0.0.1-SNAPSHOT" | ||
authors = ["Sebastian Schüpbach <sebastian.schuepbach@unibas.ch>"] | ||
edition = "2018" | ||
description = "k8s metrics client" | ||
documentation = "https://sschuepbach.pages.switch.ch/metrics-client/metrics-client" | ||
readme = "README.md" | ||
homepage = "https://gitlab.switch.ch/sschuepbach/metrics-client" | ||
repository = "https://gitlab.switch.ch/sschuepbach/metrics-client" | ||
license-file = "LICENSE" | ||
keywords = ["command-line-utilities", "k8s", "metrics"] | ||
categories = ["command-line-utilities"] | ||
exclude = ["/target"] | ||
[dependencies] | ||
anyhow = "1.0.43" | ||
clap = "2.33.3" | ||
env_logger = "0.9.0" | ||
k8s-openapi = { version = "0.13.0", features = ["v1_20"], default-features = false } | ||
kube = "0.59.0" | ||
kube-runtime = "0.59.0" | ||
log = "0.4.14" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0.66" | ||
tokio = { version = "1.10.0", features = ["full"] } | ||
[profile.release] | ||
# Optimize for size | ||
opt-level = 'z' | ||
lto = true | ||
codegen-units = 1 | ||
panic = 'abort' |
Dockerfile
0 → 100644
Dockerfile.ci
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
src/main.rs
0 → 100644
Please register or sign in to comment