From 1669994b8b891e085024e8fa5929bb8ad5f64e39 Mon Sep 17 00:00:00 2001 From: rahulrayal <110025849+rahulrayal@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:28:30 +0530 Subject: [PATCH] Clustername in describe env (#242) --- api/environment/env.go | 1 + app/app.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/api/environment/env.go b/api/environment/env.go index e42e2113..34b7f40e 100644 --- a/api/environment/env.go +++ b/api/environment/env.go @@ -12,6 +12,7 @@ type Env struct { State string `yaml:"state,omitempty" json:"state,omitempty"` DeletionTime string `yaml:"autoDeletionTime,omitempty" json:"autoDeletionTime,omitempty"` Account []string `yaml:"cloudProviderAccounts,omitempty" json:"cloudProviderAccounts,omitempty"` + Cluster string `yaml:"cluster,omitempty" json:"cluster,omitempty"` CreatedBy string `yaml:"createdBy,omitempty" json:"createdBy,omitempty"` UpdatedBy string `yaml:"updatedBy,omitempty" json:"updatedBy,omitempty"` CreatedAt string `yaml:"createdAt,omitempty" json:"createdAt,omitempty"` diff --git a/app/app.go b/app/app.go index d4448e97..a3061747 100644 --- a/app/app.go +++ b/app/app.go @@ -8,5 +8,5 @@ type application struct { // App (Application) interface var App application = application{ Name: "odin", - Version: "1.4.0", + Version: "1.4.1", }