kameshsampath commented on issue #1172: Knative integration takes too long to 
make the service ready
URL: https://github.com/apache/camel-k/issues/1172#issuecomment-569380759
 
 
   > using the suggested minikube/kube version
   
   you mean as per Knative upstream docs ? I am doing exactly the same my start 
script for minikube is 
   
   ```shell
   #!/bin/bash
   
   set -eu
   
   PROFILE_NAME=${PROFILE_NAME:-knativetutorial}
   VM_DRIVER=${VM_DRIVER:-virtualbox}
   MEMORY=${MEMORY:-8192}
   CPUS=${CPUS:-6}
   
   EXTRA_CONFIG="apiserver.enable-admission-plugins=\
   LimitRanger,\
   NamespaceExists,\
   NamespaceLifecycle,\
   ResourceQuota,\
   ServiceAccount,\
   DefaultStorageClass,\
   MutatingAdmissionWebhook"
   
   minikube start --memory=$MEMORY --cpus=$CPUS \
     --kubernetes-version=v1.14.0 \
     --vm-driver="$VM_DRIVER" \
     --disk-size=50g \
     --extra-config="$EXTRA_CONFIG" \
     --insecure-registry='10.0.0.0/24' 
   ```
   
   I usually the problem more often when you try updating the service with 
updates either via redeploy or  in `--dev` mode
   
   > using the exact istio version, with no injection
   
   yes injection is diabled and I use the `istio-lean` install 
   
   > installing the full monitoring stack
   
   Dont know why this is needed ? With 8GB RAM this will not make us to run any 
other applications :(
   

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


With regards,
Apache Git Services

Reply via email to