Skip to content
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

chore: Add throughput tier to spec #25

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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 operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "operator"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
default-run = "controller"

Expand Down
3 changes: 3 additions & 0 deletions operator/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ pub static OGMIOS_PORT_FINALIZER: &str = "ogmiosports.demeter.run";
{"name": "Endpoint URL", "jsonPath": ".status.endpointUrl", "type": "string"},
{"name": "Authenticated Endpoint URL", "jsonPath": ".status.authenticatedEndpointUrl", "type": "string"},
{"name": "Auth Token", "jsonPath": ".status.authToken", "type": "string"}
{"name": "Throughput Tier", "jsonPath":".spec.throughputTier", "type": "string"},
"#)]
#[serde(rename_all = "camelCase")]
pub struct OgmiosPortSpec {
pub network: Network,
pub version: u8,
// throughput should be 0, 1, 2
pub throughput_tier: String,
}

#[derive(Deserialize, Serialize, Clone, Default, Debug, JsonSchema)]
Expand Down
Loading