-
Notifications
You must be signed in to change notification settings - Fork 173
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
Add metadata file to link to CLI deploy #170
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ | |
{{- end }} | ||
|
||
{{ define `cli_version` -}} | ||
v0.221.0 | ||
v0.227.1 | ||
{{- end }} | ||
|
||
{{ define `stacks_version` -}} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# DO NOT MODIFY THIS AUTO-GENERATED FILE. | ||
# MODIFYING THIS FILE MAY CAUSE YOUR STACK TO NOT FUNCTION PROPERLY | ||
uuid: "{{ uuid }}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Idea: We could emit all these details as usage logs during template creation. Then we'll only have to persist:
We could join on uuid during analysis. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would that be possible since There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does mlops-stacks use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't use the helper (we ask the user to specifically input workspaces that they plan to deploy to) |
||
input_setup_cicd_and_project: "{{ .input_setup_cicd_and_project }}" | ||
input_cloud: "{{ .input_cloud }}" | ||
input_cicd_platform: "{{ .input_cicd_platform }}" | ||
input_include_models_in_unity_catalog: "{{ .input_include_models_in_unity_catalog }}" | ||
input_include_feature_store: "{{ .input_include_feature_store }}" | ||
input_include_mlflow_recipes: "{{ .input_include_mlflow_recipes }}" | ||
input_cli_version: "{{template `cli_version` .}}" | ||
stacks_version: "{{template `stacks_version` .}}" |
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 really claim this here?
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 is true, in the future we will use this UUID for other things too, so want to make sure no one modifies it