-
Notifications
You must be signed in to change notification settings - Fork 771
New issue
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
time-out errors while deleting deployments on openshift #165
Comments
|
@ashetty1 So I did this, with my openshift cluster running: $ kompose --file docker-guestbook.yml up
We are going to create Kubernetes deployments and services for your Dockerized application.
If you need different kind of resources, use the 'kompose convert' and 'kubectl create -f' commands instead.
INFO[0000] Successfully created service: frontend
INFO[0000] Successfully created service: redis-master
INFO[0000] Successfully created service: redis-slave
INFO[0000] Successfully created deployment: frontend
INFO[0000] Successfully created deployment: redis-master
INFO[0000] Successfully created deployment: redis-slave
Your application has been deployed to Kubernetes. You can run 'kubectl get deployment,svc,pods' for details. And once it was successfully deployed I did this, which successfully deleted all the components: $ kompose --file docker-guestbook.yml down
INFO[0000] Successfully deleted service: redis-slave
INFO[0003] Successfully deleted deployment: redis-slave
INFO[0003] Successfully deleted service: frontend
INFO[0006] Successfully deleted deployment: frontend
INFO[0006] Successfully deleted service: redis-master
INFO[0009] Successfully deleted deployment: redis-master And the version of openshift I am using: $ oc version
oc v1.3.0
kubernetes v1.3.0+52492b4
features: Basic-Auth GSSAPI Kerberos SPNEGO
Server https://127.0.0.1:8443
openshift v1.3.0
kubernetes v1.3.0+52492b4 So basically what happened here is kompose did talk to kubernetes running underneath openshift directly, so everything we saw above is kubernetes, not openshift. I doubt if deployments are directly supported by openshift origin 1.2. |
@surajssd will try and update soon. |
Any update @ashetty1 ? |
@surajssd what you said made sense. We could close this bug now. |
I see time-out errors while deleting deployments. This is with openshift. Could someone tell me why I am seeing these warning messages when the deployments seem to be successfully deleted.
The text was updated successfully, but these errors were encountered: