Skip to content

Commit

Permalink
Use more verbose printer output for HA
Browse files Browse the repository at this point in the history
  • Loading branch information
optik-aper committed Oct 31, 2023
1 parent 704104d commit 81dd841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/printer/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func Clusters(cluster []govultr.Cluster, meta *govultr.Meta) {
display(columns{"SERVICE SUBNET", cluster[i].ServiceSubnet})
display(columns{"IP", cluster[i].IP})
display(columns{"ENDPOINT", cluster[i].Endpoint})
display(columns{"HA", cluster[i].HAControlPlanes})
display(columns{"HIGH AVAIL", cluster[i].HAControlPlanes})
display(columns{"VERSION", cluster[i].Version})
display(columns{"REGION", cluster[i].Region})
display(columns{"STATUS", cluster[i].Status})
Expand Down Expand Up @@ -71,7 +71,7 @@ func Cluster(k *govultr.Cluster) {
display(columns{"SERVICE SUBNET", k.ServiceSubnet})
display(columns{"IP", k.IP})
display(columns{"ENDPOINT", k.Endpoint})
display(columns{"HA", k.HAControlPlanes})
display(columns{"HIGH AVAIL", k.HAControlPlanes})
display(columns{"VERSION", k.Version})
display(columns{"REGION", k.Region})
display(columns{"STATUS", k.Status})
Expand Down

0 comments on commit 81dd841

Please sign in to comment.