You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I have been using yaml files to store variables and I have came accross a feature I dont like.
If a dataelement has a / in it, it makes the server build fail with this.
No matching flavor was found! Please check your flavor setting to
No matching image was found! Please check your image setting to
Original YAML file.
flavor: '/8 GB General Purpose v1/'
image: '/CentOS 6 \(PVHVM\)/'
I corrected this by adjusting the examples provided that show / and replaced it with "(doublequote)" Then removed all the escaping, making the YAML string much tidier.
YAML file has the following items
flavor: '8 GB General Purpose v1'
image: 'CentOS 6 (PVHVM)'
However this removes the / char as this wasnt working with the provisioning this is using new vagrant 1.9.1. Am sure that this worked for me on 1.8.4 as most of our platforms Use a server.yaml hash.
My original version of this just hard coded the line. YAML passing the / and vagrant reading it directly on the rs.X line seems to be the trouble. Thought it is worth a mention as most of the examples show using /.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have been using yaml files to store variables and I have came accross a feature I dont like.
If a dataelement has a / in it, it makes the server build fail with this.
Original YAML file.
I corrected this by adjusting the examples provided that show / and replaced it with "(doublequote)" Then removed all the escaping, making the YAML string much tidier.
YAML file has the following items
the following works fine
However this removes the / char as this wasnt working with the provisioning this is using new vagrant 1.9.1. Am sure that this worked for me on 1.8.4 as most of our platforms Use a server.yaml hash.
My original version of this just hard coded the line. YAML passing the / and vagrant reading it directly on the rs.X line seems to be the trouble. Thought it is worth a mention as most of the examples show using /.
The text was updated successfully, but these errors were encountered: