Skip to content

Commit

Permalink
add missing field
Browse files Browse the repository at this point in the history
  • Loading branch information
robertchoi80 committed Dec 28, 2022
1 parent 9983f59 commit 2d8d017
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions cmd/appserve_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ var appCfgFile string
// Member variables are named as snake_case on purpose
// to be marshalled into json object later.
type conf struct {
Contract_id string `yaml:"contract_id"`
Name string `yaml:"name"`
Version string `yaml:"version"`
Type string `yaml:"type"`
App_type string `yaml:"app_type"`
Artifact_url string `yaml:"artifact_url"`
Port string `yaml:"port"`
Profile string `yaml:"profile"`
App_config string
Contract_id string `yaml:"contract_id"`
Name string `yaml:"name"`
Version string `yaml:"version"`
Type string `yaml:"type"`
App_type string `yaml:"app_type"`
Artifact_url string `yaml:"artifact_url"`
Image_url string `yaml:"image_url"`
Executable_path string `yaml:"executable_path"`
Port string `yaml:"port"`
Profile string `yaml:"profile"`
App_config string

Resource_spec string `yaml:"resource_spec"`
Target_cluster_id string `yaml:"target_cluster_id"`
Expand Down

0 comments on commit 2d8d017

Please sign in to comment.