diff --git a/models/common/models/access_configuration.go b/models/common/models/access_configuration.go index 80a429a..463754d 100644 --- a/models/common/models/access_configuration.go +++ b/models/common/models/access_configuration.go @@ -8,11 +8,10 @@ type PathSource struct { } type Container struct { - Image string `json:"image,omitempty" bson:"image,omitempty"` // Image is the container image TEMPO - Command string `json:"command,omitempty" bson:"command,omitempty"` // Command is the container command - Args string `json:"args,omitempty" bson:"args,omitempty"` // Args is the container arguments - Env map[string]string `json:"env,omitempty" bson:"env,omitempty"` // Env is the container environment variables - Volumes map[string]string `json:"volumes,omitempty" bson:"volumes,omitempty"` // Volumes is the container volumes + PathSource + + Image string `json:"image,omitempty" bson:"image,omitempty"` // Image is the container image TEMPO + Command string `json:"command,omitempty" bson:"command,omitempty"` // Command is the container command } type Expose struct {