Tools for DevOps flows with IBM MobileFirst Foundation 8.0

Overview

When we were designing IBM MobileFirst Foundation 8.0, one of our guiding principles was to make sure you can use familiar development tools & follow familiar DevOps processes.
The following are some enhancements we made that we hope you’ll appreciate:

  1. Our SDK is delivered as a Cordova plug-in (so you can always use the latest version of Cordova, and integrate in any other Cordova plug-ins you choose).
  2. You can use standard package managers for native platforms to create & manage your app builds (such as CocoaPods, Gradle and NuGet).
  3. You can use Maven for adapters (to easily and independently integrate libraries in server-side code).
  4. We provide both CLI and UI based tools to make it easier for you to transition between DEV, QA, UAT, and Production environments.

The above enhancements make it easier for you & your team to create DevOps flows for a more automated and safe approach to managing your applications, adapters and environments.

In this blog post I will outline the tools and options provided with MobileFirst Foundation 8.0 that you can use to build a DevOps flow that meets your particular needs.

Cloning an application

When you want to publish a new version of an application that is integrated with MobileFirst Foundation 8.0, you might want to copy over all the settings from the previous version of your app, such as the scopes, security checks, and other customized options and attributes. For a DevOps flow, there is no IBM-provided CLI path yet, but, thanks to Jorge Iglesias Fernandez, you can use a program he’s authored to accomplish this.

You also have the option to use the Clone button from the MobileFirst Operations Console. In the console, select your application version from the sidebar navigation and then select Clone Version from the Action dropdown. The end result will be a new instance of the application with a new version and preserved settings. https://mobilefirstplatform.ibmcloud.com/blog/2017/01/09/cloning-application-configuration/ Cloning procedure

Targeting adapters and applications to different servers

This section covers what you need to know to “move” your apps and adapters between development servers, QA servers and production servers.

Applications

Much like cloning, which preserves your application settings, when it comes to applications there are three steps you’ll need to follow. Run all of the following commands from the application root folder.

1. Saving application settings
Save the application configuration by running the command:

mfpdev app pull

2. Registering the application in another server
By default the MobileFirst CLI comes with a “default” server profile, which points to a local server (= the server that is part of the Developer Kit).
Before you can register your app to another server, you need to add another server profile for it.

Accomplish this by running the following command and providing the required details:

mfpdev server add

Then, run the following command to register the application version.
Remember to replace server-profile with the server profile name you’ll choose:

mfpdev app register server-profile

Learn more in the Using MobileFirst CLI to Manage MobileFirst Artifacts documentation topic.

3. Importing application settings
With the application now registered in the other server, you can restore its configuration by running the command:

mfpdev app push

Adapters

As for adapters, the same commands are available for adapters as well via Maven.
These commands pull/push to the MobileFirst Server the adapter configuration, which includes its connectivity details and any custom properties you may have added.

Learn more in the Java adapters and JavaScript adapters documentation topics.

For adapters, the pull command creates by default a config.json file at the root of the adapter folder. You can then make copies of this file with different names, i.e. dev.json, qa.json, uat.json and prod.json and later on use the push command (after deploying the adapter) to configure the adapter with a different configuration depending on the required environment.

For example, to push the settings of the UAT environment to a deployed adapter, run the following MobileFirst CLI command: mfpdev adapter push --configFile | -c path-to-json-file.

mfpdev adapter push -c uat.json

Note: Make sure you’re using MobileFirst CLI with a build number that equals or higher than 8.0.0-2016121916.

Alternatively, You can accomplish the same using the following Maven commands:

  • mvn adapter:configpull -DmfpfConfigFile=config.json
  • mvn adapter:configpush -DmfpfConfigFile=config.json

You can find additional explanation in this StackOverflow answer.

Bonus

Learn about continuous devliery of adapters using the Bluemix DevOps service.

Inclusive terminology note: The Mobile First Platform team is making changes to support the IBM® initiative to replace racially biased and other discriminatory language in our code and content with more inclusive language. While IBM values the use of inclusive language, terms that are outside of IBM's direct influence are sometimes required for the sake of maintaining user understanding. As other industry leaders join IBM in embracing the use of inclusive language, IBM will continue to update the documentation to reflect those changes.
Last modified on January 09, 2017