CloudIO Platform
cloudio.ioVersion 3.0 Docs
  • CloudIO Platform
  • Architecture
  • Service Architecture
  • Scalability
  • Installation
  • Getting Started
    • Overview
    • How Tos
  • UI
    • App Controller
    • Page Controller
    • Controller Component
    • Custom Component
      • Sample Property Definitions
      • Custom Component Types
  • DataSource
    • Server Side Scripts
      • Sample Scripts
      • Module Imports
    • WHO Columns
  • REST APIs
    • Authentication
    • Query
    • Post
    • Status
    • API Playground
  • Workflow REST APIs
    • Introduction
    • PUT
    • GET
    • Instance PUT
    • Instance GET
    • Increment and GET
    • Instance Increment and GET
  • App Deployment
    • CloudIO CLI
    • Patch Management
    • SQL Migrations
    • Component Help
    • Email Setup
    • Configure SSO/OAuth
      • OAUTH 2.0
        • GOOGLE
      • SAML
        • AUTH0
        • AZURE AD
        • OKTA
      • Auto User Creation
    • Test Automation
    • On Premise Agent
  • Oracle Instant client
    • Setup
Powered by GitBook
On this page
  • Creating an Application Patch
  • Verifying an Application Patch
  • Applying an Application Patch

Was this helpful?

Edit on GitHub
  1. App Deployment

Patch Management

PreviousCloudIO CLINextSQL Migrations

Last updated 2 years ago

Was this helpful?

Creating an Application Patch

$ cloudio create-patch -a my-app

Running the above command generates an application patch as a zip file. The zip contains all the metadata in various .json & .js files. You can extract and check into your source control system e.g. GitHub.

Example Output

Verifying an Application Patch

Once a patch is generated from a source instance, you can verify it against a target instance to review the changes to be applied to the target instance.

$ cloudio verify-patch -a my-app

Applying an Application Patch

Once reviewed and approved, you can apply the patch using the following command

$ cloudio patch -a my-app

You must authenticate with a user having a Patch Administrator role assigned to perform the above operations.