Skip to content

Commit

Permalink
fix: additionl printer column
Browse files Browse the repository at this point in the history
  • Loading branch information
avatxus committed Dec 11, 2023
1 parent 57296aa commit c780d5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap/crds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ resource "kubernetes_manifest" "customresourcedefinition_kupoports_demeter_run"
"type" = "boolean"
},
{
"jsonPath" = "spec.throughputTier"
"jsonPath" = ".spec.throughputTier"
"name" = "Throughput Tier"
"type" = "string"
},
Expand Down
2 changes: 1 addition & 1 deletion operator/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl Display for Network {
#[kube(
printcolumn = r#"{"name":"Network", "jsonPath": ".spec.network", "type": "string"},
{"name": "Pruned", "jsonPath": ".spec.pruneUtxo", "type": "boolean"},
{"name": "Throughput Tier", "jsonPath":"spec.throughputTier", "type": "string"},
{"name": "Throughput Tier", "jsonPath":".spec.throughputTier", "type": "string"},
{"name": "Endpoint URL", "jsonPath": ".status.endpointUrl", "type": "string"},
{"name": "Auth Token", "jsonPath": ".status.authToken", "type": "string"}"#
)]
Expand Down

0 comments on commit c780d5e

Please sign in to comment.