-
Notifications
You must be signed in to change notification settings - Fork 17
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
go2yaml #34
Comments
@edbighead could you please share an example? Trying to understand the use case |
Having a bunch of nested go structs, let's say for a kube deployment I would need to write some markdown docs with all possible available yaml fields, like |
@edbighead the only challenge I see is the values field values. We can extract the field names but the values will still have to do populate manually. |
it will be handy to have just value types: spec:
name: "string"
isEnabled: true
count: 60
children:
- "string"
- "string" |
Is there any way to do a go struct -> yaml conversion ? Need to generate some docs for the structs 🤔
The text was updated successfully, but these errors were encountered: