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
Currently quick start guide provides an insturcion to install operator like this:
kustomize build 'https://github.com/aenix-io/etcd-operator//config/default?ref=main' | kubectl apply -f -
But output yaml contains image with :latest flag, which might install etcd-operator older version than CRDs, and affect problems like that #159
:latest
Proposed solution
It would be nice to write resulting YAML file with all the CRDs and correct tag into release.
To make it possbile install it simple as:
kubectl apply -f https://github.com/aenix-io/etcd-operator/releases/download/latest/etcd-operator.crds.yaml kubectl apply -f https://github.com/aenix-io/etcd-operator/releases/download/latest/etcd-operator.yaml
The text was updated successfully, but these errors were encountered:
hiddenmarten
Successfully merging a pull request may close this issue.
Currently quick start guide provides an insturcion to install operator like this:
But output yaml contains image with
:latest
flag, which might install etcd-operator older version than CRDs, and affect problems like that #159Proposed solution
It would be nice to write resulting YAML file with all the CRDs and correct tag into release.
To make it possbile install it simple as:
The text was updated successfully, but these errors were encountered: