From 70cef9dc4bef15af9f27d576f690d2d9f85d99f9 Mon Sep 17 00:00:00 2001 From: Igor Gov Date: Sun, 30 Jan 2022 09:25:56 +0200 Subject: [PATCH] Fix: show agent-image in config after generation (#717) --- cli/config/configStruct.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/config/configStruct.go b/cli/config/configStruct.go index 01cd5c537..249c55fd2 100644 --- a/cli/config/configStruct.go +++ b/cli/config/configStruct.go @@ -27,7 +27,7 @@ type ConfigStruct struct { Logs configStructs.LogsConfig `yaml:"logs"` Auth configStructs.AuthConfig `yaml:"auth"` Config configStructs.ConfigConfig `yaml:"config,omitempty"` - AgentImage string `yaml:"agent-image,omitempty" readonly:""` + AgentImage string `yaml:"agent-image,omitempty"` KratosImage string `yaml:"kratos-image,omitempty" readonly:""` KetoImage string `yaml:"keto-image,omitempty" readonly:""` ImagePullPolicyStr string `yaml:"image-pull-policy" default:"Always"`