-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat: add test for overwriting replica values #166
base: main
Are you sure you want to change the base?
Conversation
objs, err := RenderChart(chart, ValuesToOverwrite, nil, nil) | ||
// TODO@jsjoeio - getting an error here | ||
// error deserializing "coder/templates/coderd.yaml": yaml: line 9: mapping values are not allowed in this context | ||
require.NoError(t, err, "failed to render chart") |
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.
@jawnsy I feel like I'm so close. I'm doing something wrong though and getting this error. Any ideas?
This is blocked until Jonathan and I fix bug in |
@jsjoeio I think this should be unblocked now, but may be kind of tricky as a lot of things have changed in the API. Might be best to reset your branch to the latest main and try again? |
ahh good to know! I'll restart this work hopefully next week 🤞 Thanks for letting me know! |
This PR adds a new test which tests for overwriting the replicas value in the default yaml template.
Fixes #165