Skip to content

Commit

Permalink
fix(config): Fix config publishing for spinnaker-monitoring. (#1483)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtk54 authored and lwander committed Mar 17, 2017
1 parent 1e6585a commit 050e08a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions dev/generate_bom.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,9 @@ def __publish_config(self, component, profile_path):
def publish_microservice_configs(self):
for comp in self.COMPONENTS:
if comp == 'spinnaker-monitoring':
third_party = '{0}-third-party'.format(comp)
config_path = os.path.join(comp, third_party, 'halconfig')
self.__publish_config(comp, config_path)
daemon = '{0}-daemon'.format(comp)
config_path = os.path.join(comp, daemon, 'halconfig')
self.__publish_config(comp, config_path)
daemon_path = '{0}-daemon'.format(comp)
config_path = os.path.join(comp, daemon_path, 'halconfig')
self.__publish_config('monitoring-daemon', config_path)
else:
config_path = os.path.join(comp, 'halconfig')
self.__publish_config(comp, config_path)
Expand Down

0 comments on commit 050e08a

Please sign in to comment.