-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename cli to kit, package to kitops #28
Conversation
Rename module to kitops to match repo name; rename CLI to kit
pkg/lib/constants/consts.go
Outdated
ModelConfigMediaType = "application/vnd.jozu.model.config.v1+json" | ||
CodeLayerMediaType = "application/vnd.kitops.model.code.v1.tar+gzip" | ||
// Media type for the model config (Kitfile) | ||
ModelConfigMediaType = "application/vnd.kitops.model.config.v1+json" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we rename to application/vnd.kitops.kit.config.v1+json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It depends -- what are we calling the packaged artifact we're producing? Is it a "model"/"kit"/"model kit"? I went with model
since the command to list is still kit models
and kit kits
sounds awkward. Another option is kit modelkits
, as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about kit list
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The packaged artifact is model kit
with a shorthand kit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, I've renamed "models" to "model kits" and "kit models" to "kit list".
Rename media types: application/vnd.kitops.modelkit.model.v1.tar+gzip -> model layer application/vnd.kitops.modelkit.dataset.v1.tar+gzip -> dataset layer application/vnd.kitops.modelkit.code.v1.tar+gzip -> code layer application/vnd.kitops.modelkit.config.v1+json -> config (Kitfile)
No description provided.