ConfigSync can operate in different modes:
  • Publisher mode: Monitors Fusion for changes and pushes them to a Git repository.
  • Subscriber mode: Polls a Git repository for changes and applies them to Fusion.
  • Pub/Sub mode: Combines the features of both Publisher and Subscriber modes.
See Configure the ConfigSync mode for steps to configure the synchronization mode.
You can configure the synchronization mode by adding the appropriate profile to the sync configuration in the fusion-config-sync section of the Helm chart configuration, as shown below.
  • Publisher mode:
    fusion-config-sync:
      springProfilesOverride: "kubernetes,jwt,fusion,pub"
    
  • Subscriber mode:
    fusion-config-sync:
      springProfilesOverride: "kubernetes,jwt,fusion,sub"
    
  • PubSub mode:
    fusion-config-sync:
      springProfilesOverride: "kubernetes,jwt,fusion,pub,sub"
    
For additional options, see Filters and the ConfigSync configuration reference.