[
https://issues.jboss.org/browse/JBIDE-21710?page=com.atlassian.jira.plugi...
]
Martin Malina commented on JBIDE-21710:
---------------------------------------
[~navidshaikh], see JBIDE-21733 . The problem is that adbinfo and service-manager return
different cert paths:
{code}
$ vagrant service-manager env docker
# Set the following environment variables to enable access to the
# docker daemon running inside of the vagrant virtual machine:
export DOCKER_HOST=tcp://10.1.2.2:2376
export
DOCKER_CERT_PATH=/Users/rasp/jbossqa/cdk/cdk/components/rhel/rhel-ose/.vagrant/machines/default/virtualbox/docker
export DOCKER_TLS_VERIFY=1
export DOCKER_MACHINE_NAME=d7acc2f
# run following command to configure your shell:
# eval "$(vagrant service-manager env docker)"
{code}
{code}
$ vagrant adbinfo
# Set the following environment variables to enable access to the
# docker daemon running inside of the vagrant virtual machine:
export DOCKER_HOST=tcp://10.1.2.2:2376
export
DOCKER_CERT_PATH=/Users/rasp/jbossqa/cdk/cdk/components/rhel/rhel-ose/.vagrant/machines/default/virtualbox/.docker
export DOCKER_TLS_VERIFY=1
export DOCKER_MACHINE_NAME=d7acc2f
# run following command to configure your shell:
# eval "$(vagrant adbinfo)"
{code}
See the end of the path - ".docker" vs "docker".
[CDK] replace calls to adbinfo plugin with service-manager plugin
-----------------------------------------------------------------
Key: JBIDE-21710
URL:
https://issues.jboss.org/browse/JBIDE-21710
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: cdk, server
Reporter: Navid Shaikh
Assignee: Rob Stryker
Priority: Blocker
Fix For: 4.3.1.CR1
vagrant-service-manager plugin [1] is a successor for vagrant-adbinfo plugin [2].
All further development towards displaying and configuring provider [docker, openshift,
kubernetes, etc] information from ADB / CDK, will happen in vagrant-service-manager
plugin.
Equivalent functionality from vagrant-adbinfo plugin is now ported to
vagrant-service-manager plugin.
To display docker connection information from vagrant box,
using adbinfo
```
$ vagrant adbinfo
```
using service-manager
```
$vagrant service-manager env docker
```
Kindly update the tooling which are using adbinfo plugin with service-manager command.
Note: adbinfo plugin has a dependency on `scp` / `pscp` utility for copying certs.
service-manager plugin does not need `scp` / `pscp` utility to copy the certs.
[1]
https://github.com/projectatomic/vagrant-service-manager
[2]
https://github.com/projectatomic/vagrant-adbinfo
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)