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
Updating ci image in #156 broke CRD generation:
Currently expr and sed are not function properly giving error:
expr
sed
crdname=$(basename $crd); \ end=$(expr $(grep -n ^status $crd|cut -f1 -d:) - 1); \ cat $(echo v1-crds/$crdname|sed 's/.yaml/_crd.yaml/') > /tmp/$crdname; \ sed -e '1,/versions/d' -e "1,${end}s/^..//" $crd >> /tmp/$crdname; \ cp /tmp/$crdname $crd; \ yq -i e '.spec.versions[0].storage = false' $crd; \ done expr: syntax error: unexpected argument ‘1’ sed: -e expression #2, char 3: unexpected `,' expr: syntax error: unexpected argument ‘1’ sed: -e expression #2, char 3: unexpected `,' expr: syntax error: unexpected argument ‘1’ sed: -e expression #2, char 3: unexpected `,'
Possible solutions:
The text was updated successfully, but these errors were encountered:
@cscetbon Do you have time to look on CRD updates? On first glance I have no idea about it If not I will revert ci-image update for now
Sorry, something went wrong.
Fixed with #155
No branches or pull requests
Bug Report
Updating ci image in #156 broke CRD generation:
Currently
expr
andsed
are not function properly giving error:Possible solutions:
The text was updated successfully, but these errors were encountered: