-
Notifications
You must be signed in to change notification settings - Fork 202
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
dapr annotate command #870
Comments
@yaron2 Please add your thoughts on this ... |
I approve this, triaging to 1.7. Left a question on the PR itself. |
This issue has been automatically marked as stale because it has not had activity in the last 30 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue, help wanted or triaged/resolved) or other activity occurs. Thank you for your contributions. |
/no-stale |
|
Describe the proposal
Caveat that this is very much inspired by
linkerd inject
but I think it'd be useful to also have adapr inject
command that injects the annotations on to a Kubernetes deployment manifest for you. The manifest can be read from stdin (so it can be pipedkubectl get deploy -o yaml | dapr inject | kubectl apply -f -
, read from diskdapr inject <dir> | kubectl apply -f -
or fetched from a remote URIdapr inject http://example.com/deploy.yml | kubectl apply -f -
. In order to write the annotations the command will need to have all the different configurations options available as flags.This could in theory be extended to do the full sidecar injection too as an alternative to using the sidecar injector. This might be useful for users who want to fully vet artifacts before deployment.
For more details, please see the attached PR #873
Release Note
RELEASE NOTE: ADD Dapr inject CLI command.
The text was updated successfully, but these errors were encountered: