diff --git a/murano-apps/Gerrit/package/Classes/Gerrit.yaml b/murano-apps/Gerrit/package/Classes/Gerrit.yaml index 81b6f14..31954bb 100644 --- a/murano-apps/Gerrit/package/Classes/Gerrit.yaml +++ b/murano-apps/Gerrit/package/Classes/Gerrit.yaml @@ -110,7 +110,7 @@ Methods: # _switchProjectConfig: Body: - - $.instance.setHieraValue( 'project_config_repo', $.getProjectConfigRepo()) + - $.instance.putHieraData({'project_config_repo' => $.getProjectConfigRepo()}) _createLdapConfiguration: Body: diff --git a/murano-apps/SystemConfig/package/Classes/SystemConfig.yaml b/murano-apps/SystemConfig/package/Classes/SystemConfig.yaml index 61aa0d4..5bb7477 100644 --- a/murano-apps/SystemConfig/package/Classes/SystemConfig.yaml +++ b/murano-apps/SystemConfig/package/Classes/SystemConfig.yaml @@ -17,5 +17,5 @@ Methods: - $resources: new(sys:Resources) - $template: $resources.yaml('SystemConfig.template') - $instance.agent.call($template, $resources) - - $instance.setHieraValue( 'project_config_repo', $this.projectConfigRepo) + - $instance.putHieraData({'project_config_repo' => $this.projectConfigRepo}) - $instance.installPuppetModule('reidmv/yamlfile')