You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed when running the make install that I'm getting an error with the MCAD crds
It's not properly replacing the ${MCAD_CRD} version in the file kustomization.yaml so I'm seeing this error when running make install:`
Error: accumulating resources: accumulation err='accumulating resources from 'mcad': '/Users/jamesbusche/projects/CODEFLARE/ANTONIN/codeflare-operator/config/crd/mcad' must resolve to a file': recursed accumulation of path '/Users/jamesbusche/projects/CODEFLARE/ANTONIN/codeflare-operator/config/crd/mcad': accumulating resources: accumulation err='accumulating resources from 'github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=release-v0.0.0': evalsymlink failure on '/Users/jamesbusche/projects/CODEFLARE/ANTONIN/codeflare-operator/config/crd/mcad/github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=release-v0.0.0' : lstat /Users/jamesbusche/projects/CODEFLARE/ANTONIN/codeflare-operator/config/crd/mcad/github.com: no such file or directory': git cmd = '/opt/homebrew/bin/git fetch --depth=1 origin release-v0.0.0': exit status 128
My temporary fix is to vi ./config/crd/mcad/kustomization.yaml and change the file from:
- github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=release-v0.0.0 # kpt-set: ${MCAD_CRD}
to
- github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=release-v1.31.0
The text was updated successfully, but these errors were encountered:
I noticed when running the
make install
that I'm getting an error with the MCAD crdsIt's not properly replacing the ${MCAD_CRD} version in the file kustomization.yaml so I'm seeing this error when running make install:`
My temporary fix is to
vi ./config/crd/mcad/kustomization.yaml
and change the file from:The text was updated successfully, but these errors were encountered: