cyberark / conjur-oss-helm-chart

Helm chart for deploying Conjur OSS to Kubernetes
Apache License 2.0
27 stars 23 forks source link

Documentation is updated to clarify setup steps #28

Open izgeri opened 5 years ago

izgeri commented 5 years ago

In trying to use this recently, I noticed a few small things that we could update to make it easier to use:

I hope these comments make sense - please feel free to get in touch if they don't. Basically a lot of the confusion stemmed from a lack of clarity around exactly what steps the helm chart covered vs what steps I would cover myself by following the instructions after install. It would be great to clarify this at some point.

jralmaraz commented 5 years ago

I am also trying to run this guide but getting a version incompatibility at the moment (I've cleaned up all previous docker images as well):

joalmaraz:conjur:conjur-oss-helm-chart joalmaraz$ helm install --set dataKey="$(docker run --rm cyberark/conjur data-key generate)" ./conjur-oss Unable to find image 'cyberark/conjur:latest' locally latest: Pulling from cyberark/conjur 9ff7e2e5f967: Pulling fs layer 59856638ac9f: Pulling fs layer ....

Status: Downloaded newer image for cyberark/conjur:latest Error: incompatible versions client[v2.14.0] server[v2.13.1] joalmaraz:conjur-oss-helm-chart joalmaraz$

sgnn7 commented 5 years ago

@jralmaraz While the docs definitely need more work, your error indicates that the Tiller server (part of Helm) on your cluster does not match the client version and isn't really a bug in the Helm chart itself. You can use this to update it: helm init --upgrade (you might want to read in details about this command if you have other apps deployed on it though).

See here for more info.

jralmaraz commented 5 years ago

I think what I meant was more about that, the base versioning of it that might need to be more generic maybe, in the documentation, but thanks for pointing it out and I will be extra careful on any coming comment :)