-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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 builtin plugin for literals #883
Conversation
/assign @monopole |
// Literals takes a list of literals. | ||
// Each literal source should be a key and literal value, | ||
// e.g. `somekey=somevalue` | ||
// It will be similar to kubectl create configmap|secret --from-literal |
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.
No need for the reference to kubectl, as we're trying to steer people away from it's imperative commands.
// parseLiteralSource parses the source key=val pair into its component pieces. | ||
// This functionality is distinguished from strings.SplitN(source, "=", 2) since | ||
// it returns an error in the case of empty keys, values, or a missing equals sign. | ||
func parseLiteralSource(source string) (keyName, value string, err error) { |
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.
Until we decide to remove the non-plugin version of literals KV generation in k8sdeps/configmapandsecret/basefactory.go, we should use the same methods there and here. This will also be true for KV gen from env and files.
Could make the methods in configmapandsecret public, and use them here from there, or move them here and do the opposite, or slap them into a utils package...
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.
Ok, ill update.
@monopole updated. |
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.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: monopole, sethpollack The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
thanks! |
adds builtin plugins per #881