-
Notifications
You must be signed in to change notification settings - Fork 34
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
CSV template for import doesn't contain columns for Owner and Contributors #538
Comments
Please bear in mind that the CSV template available under the Manage Imports option at the Application Inventory will have to be updated accordingly once this change is implemented. |
Adds two fields to the import CSV immediately before tags. One is for the Owner and should be empty or contain a single value in the form 'John Doe <[email protected]>'. The second is for contributors, and should be empty or a list of one or more values in the previous format, separated by commas. As this would be a comma-delimited field within a CSV, the whole value should be surrounded by quotes. Fixes konveyor#538 Signed-off-by: Sam Lucidi <[email protected]>
…ormat. (#551) Adds two fields to the import CSV immediately before tags. One is for the Owner and should be empty or contain a single value in the form 'John Doe <[email protected]>'. The second is for contributors, and should be empty or a list of one or more values in the previous format, separated by commas. As this would be a comma-delimited field within a CSV, the whole value should be surrounded by quotes. This breaks compatibility with any existing import CSVs since it adds columns in the middle (necessary since the number of tags is unbounded and as such the tag list must come last). Fixes #538 @jortel Do you think we can get away with adding this to migration 11, or do you think I should create a new one? --------- Signed-off-by: Sam Lucidi <[email protected]>
@mansam @ibolton336 @dymurray the template under the Manage imports view hasn't been updated to include the Owner and Contributors columns. The current template is not backwards compatible and doesn't work anymore, so this basically blocks the usage of the import feature. Manually adding the Owner and Contributor column after the Repository path column works though, so it looks like it's just a matter of updating the template. |
The CSV template used to import applications at scale doesn't contain columns to add information about Owner and Contributors for a given application. Having to add that information manually on a per application basis doesn't scale when managing hundreds or thousands of applications.
The proposal would be to add the following columns:
The text was updated successfully, but these errors were encountered: