We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This would be an abstraction over K8s.Client.run/N or K8s.Client.async/N.
K8s.Client.run/N
K8s.Client.async/N
This could be helpful with #49 #88
A function that will take a list of k8s resource definitions and creates them all.
The term here apply being borrowed from kubectl. It would add or modify resources.
apply
def added(my_crd_added_event = %{}) do deployment = ... service = ... config_map = ... dependents = [deployment, service, config_map] case apply_dependents(my_crd_added_event, dependents) do {:ok, resources} -> IO.puts "Yay" {:error, resources_and_errors} -> IO.puts "boo" end end
TBD: Should this operate on HTTP response or poll for k8s resource status.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This would be an abstraction over
K8s.Client.run/N
orK8s.Client.async/N
.This could be helpful with #49 #88
A function that will take a list of k8s resource definitions and creates them all.
The term here
apply
being borrowed from kubectl. It would add or modify resources.TBD: Should this operate on HTTP response or poll for k8s resource status.
The text was updated successfully, but these errors were encountered: