Skip to content
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

Installation instructions in Quick Start don't work #203

Open
lukens opened this issue Apr 19, 2023 · 1 comment
Open

Installation instructions in Quick Start don't work #203

lukens opened this issue Apr 19, 2023 · 1 comment

Comments

@lukens
Copy link

lukens commented Apr 19, 2023

The installation instructions in the Apicurio Registry Operator quickstart appear to contain errors.

Specifically, in the following instruction:

curl -sSL "https://raw.githubusercontent.com/Apicurio/apicurio-registry-operator/v1.0.0/docs/resources/install.yaml" |
sed "s/{NAMESPACE}/$NAMESPACE/g" | kubectl apply -f - -n $NAMESPACE

Firstly, I suspect {NAMESPACE} is supposed to be replaced with the value apicurio-registry-operator-namespace during compilation of the documentation, as currently it doesn't match anything.

Secondly, I find that $NAMESPACE will be replaced as that string, rather than the value, unless surrounded by double quotes.

The complete command I found to actually work was:

curl -sSL "https://raw.githubusercontent.com/Apicurio/apicurio-registry-operator/v1.0.0/docs/resources/install.yaml" |
sed "s/apicurio-registry-operator-namespace/"$NAMESPACE"/g" | kubectl apply -f - -n $NAMESPACE
@cvgaviao
Copy link

I got bitten by this issue right now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
3 participants