fabric8io/fabric8

Fabric8 deployment on minikube fails with SSL_ERROR_SYSCALL error

basiljoseph opened this issue · 0 comments

Hi,

I am trying to deploy fabric8 on minikube.
And I am working on Ubuntu 16.04.3 LTS behind a corporate authenticating proxy.

And I am following these documents for installation.
https://github.com/fabric8io/fabric8-platform/blob/master/INSTALL.md
https://fabric8.io/guide/getStarted/minikube.html

I have set the necessary proxy settings in Ubuntu host.
fabric8 and minikube binaries as well as images are downloaded through proxy.
And I am starting minikube with the following options.

minikube start --memory 6000 --docker-env http_proxy=http_proxy=http://username:password@ourproxy:port --docker-env https_proxy=https://username:password@ourproxy:port --docker-env no_proxy=192.168.99.0/24

Once the VM is started i will deploy fabric8

$ fabric8 deploy -y

The pods starts downloading around 2GB of data and it will try to open the fabric8 dashboard.
The dashboard will not open.

Then I checked the status of pods using kubectl.
I found the keycloak pod is stuck in ContainerCreating state.
All other pods are either in Running/Init state

Then I pulled the minikube dashboard and checked the events.
There it shows the following error for keycloak pod.

MountVolume.SetUp failed for volume "keycloak-theme" : failed to exec 'git clone https://github.com/fabric8io/fabric8-keycloak-theme.git login': Cloning into 'login'... fatal: unable to access 'https://github.com/fabric8io/fabric8-keycloak-theme.git/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 : exit status 128

I believe this request is not using proxy. Is there any way to solve this?

Thanks.