Showing posts with label docker. Show all posts
Showing posts with label docker. Show all posts

Friday, October 17, 2014

Six major changes in the Fabric8 V2


As some of you may know from my tweets, the Fabric8 team started to work on the v2 branch of the project. You may also already know that this version of Fabric8 will bring some major architectural changes. All of those are for better in my humble opinion, even if you may find them a bit aggressive ;) .

Change #1: Docker and Kubernetes will be required to run Fabric8

Yes. Containers are the big thing. They will change the way we deploy and manage our software. The new version of Fabric8 fully embraces the containerization trend. It means that Fabric8 is designed to work on top of Kubernetes and Docker. Fabric8 will work in any environment providing the Kubernetes platform such as RHEL Atomic, OpenShift, Google Compute Engine, Azure and so forth.

For platforms not supporting Docker, there will be a Kubernetes emulator layer. But come on, don't resist the changes in the industry - just invest into the Docker and Kubernetes. If Microsoft did it, you can do it as well :) .

Change #2: No ZooKeeper runtime registry

There will be no ZooKeeper ensemble in the Fabric8 anymore. Fabric8 1.x used ZooKeeper to share the runtime information between applications and to discover services. Kubernetes comes with the etcd internally which serves much of the same purpose and has support for the services binding, so Fabric8 v2 doesn't need ZooKeeper registry anymore for general purpose provisioning of containers and services.

However certain services will still require master slave election and partitioning functionality (such as running clusters of ActiveMQ); where either etcd or Apache ZooKeeper is required. If a Kubernetes environment allows it, then Fabric8 could reuse the underlying etcd cluster; otherwise an etcd or ZooKeeper clusters is required for things like ActiveMQ clustering.

Change #3: No profiles to configure application deployment

There will be no profiles in Fabric8 anymore. Starting from v2 Fabric8 uses app JSON files (i.e. Kubernetes extension proposed by OpenShift 3) to configure deployment of the managed application. More detailed configuration (like properties or YAML files) can be added to the file system of the deployed application's Docker image.

Change #4: Git repository isn't mandatory

Applications' configuration isn't stored in Git repository as it used to be in Fabric8 v1. As Fabric8 v2 doesn't use profiles (but app templates instead), the Git repository is not needed anymore. You can just store application's configuration (app file) in the Maven project and use the Fabric8 Maven plugin to start the application in the Kubernetes without keeping the configuration in any central repository (like Git).

However keeping app files in Git for easier configuration management can be useful. That's why Hawt.io provides this functionality for you. You can push your configuration to the Hawt.io Git repository via fabric8:deploy Maven goal. Fabric8 uses App Zip packaging format to distribute the configuration between the various environments.

Change #5: There is not Fabric8 "server" anymore

Starting from Fabric8 v2 Kubernetes is responsible for providing the runtime registry for the managed applications. It means that you don't have to start any dedicated Fabric8 deamon. Tools like Fabric8 Maven plugin or Hawt.io can connect directly to the Kubernetes and deploy into it or manage the applications.

Change #6: No Fabric8 server == no (Karaf) Fabric8 shell

If you are the shell kind of person (like me!), you probably enjoy Karaf-based Fabric8 shell very much. As there is no "Fabric8 server" anymore, Karaf won't provide the default shell any longer. For the Fabric8 v2 development activities, the recommended tool is JBoss Forge with the Fabric8 add-on. For provisioning purposes (like creating containers/services or changing the replica sizes) the default shell is OpenShift/Kube. Kube will be included in Red Hat Enterprise Linux and OpenShift V3 and is the standard shell for provisioning any kind of the container.

Technically, you can install Karaf server into the Kubernetes and enjoy the part of the old Fabric8 shell commands, but keep in mind that main development efforts will be focused on Kube and Forge commands.

Give it a shot

Wanna try new Fabric8 V2? Here is the detailed guide how to install it locally and deploy a sample application into it. Got problems with installation? Ping us on Fabric8 forum - we'd love to help you.

Wednesday, July 16, 2014

Using Spring framework with Fabric8

So you wanna deploy Spring application into OSGi?

In the older versions of the Karaf, ServiceMix and Fuse we recommended to use Spring Dynamic Modules to deploy applications based on the Spring framework. As Spring DM project is not actively maintained anymore, we currently don't recommend to use it. Moreover due to the fact that there is no other alternative for Spring deployments in the OSGi environment, we don't recommend provisioning Spring-based applications into the OSGi anymore.

Spring Boot container

The recommended approach for working with the Spring applications in the Fabric8 environment is to use the Spring Boot container - the flat classpath microservice provisioned and managed by the Fabric8.

You can provision Spring Boot container either as a managed JVM process or as a Docker container.

Spring Boot container comes with many useful utilities that makes it much easier to use Apache Camel and ActiveMQ. Spring Boot containers can be also aware of the Gateway, ZooKeeper registry and the other Fabric8 components.

Other flat classpath containers

The other option to work with the Spring-based applications in the Fabric8 environment is to deploy those as a part of the WAR into Tomcat or as a module into the WildFly or Apache TomEE. You can also provision managed JVM process and start Spring application context yourself. Keep in mind that those deployment options don't make you to use Spring Boot - you can always create and manage the Spring application context yourself.

Monday, June 23, 2014

Bootstrap RESTful Docker on Ubuntu

The most "devOps way" of communicating with the Docker server is to expose it via the REST API. And then using the HTTP client of your choice to send commands to that Docker server.  

Here is what you need to do in order to set up the Docker server exposed via REST endpoint on Ubuntu 14.04.

Install Docker

Here is the Official Ubuntu installation documentation in the nutshell - to install Docker on Ubuntu just type the following command into your shell:

curl -s https://get.docker.io/ubuntu/ | sudo sh

Expose Docker via HTTP

By default Docker is exposed only via the Unix sockets. You can change it with the additional -H (host) option.

sudo sh -c 'echo "DOCKER_OPTS=\"-H unix:///var/run/docker.sock -H tcp://127.0.0.1:2375\"" > /etc/default/docker'
sudo service docker restart
In order to verify that Docker has been properly exposed via HTTP, execute the following command:

curl http://127.0.0.1:2375/version
{"ApiVersion":"1.12","Arch":"amd64","GitCommit":"990021a","GoVersion":"go1.2.1","KernelVersion":"3.13.0-29-generic","Os":"linux","Version":"1.0.1"}

Running Docker without root

If you wanna execute docker command without sudo, add yourself to the docker system group:

usermod -a -G docker yourUserName

Fabric8 readiness

The settings presented above are the default Docker setup expected by the Fabric8 Docker integration. If you followed this instruction, you can safely play with the Fabric8 Docker containers.