Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techassi/k8s-version
A small helper crate to validate Kubernetes resource versions
https://github.com/techassi/k8s-version
Last synced: 2 days ago
JSON representation
A small helper crate to validate Kubernetes resource versions
- Host: GitHub
- URL: https://github.com/techassi/k8s-version
- Owner: Techassi
- License: gpl-3.0
- Created: 2024-01-29T15:34:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-15T13:15:46.000Z (7 months ago)
- Last Synced: 2024-05-01T17:42:42.242Z (7 months ago)
- Language: Rust
- Homepage: https://kubernetes.io/docs/reference/using-api/#api-versioning
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# k8s-version
A small helper crate to validate Kubernetes resource versions.
```rust
use k8s_version::ApiVersion;let api_version = ApiVersion::from_str("extensions/v1beta1").unwrap();
```