kameshsampath commented on issue #482: Knative minikube service failure
URL: https://github.com/apache/camel-k/issues/482#issuecomment-466372025
 
 
   As knative always expect the registry to be v2 we need to tell Knative to 
skip the local default registry for v2 check 
   
   ```
   val=$(kubectl -n knative-serving get cm config-controller -oyaml \
     | yq r - data.registriesSkippingTagResolving \
     | awk '{print $1",10.100.191.95"}')
   kubectl -n knative-serving get cm config-controller -oyaml \
     | yq w - data.registriesSkippingTagResolving $val \
     | kubectl apply -f - 
   ```
   
   Where `10.100.191.95` is the registry address of the minikube, adding this 
was able to make the service working.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to