Skip to content

Commit

Permalink
Merge pull request #109 from mojaloop/fix/metrics-server
Browse files Browse the repository at this point in the history
fix metrics server addon
  • Loading branch information
jmutai authored Dec 17, 2024
2 parents fc7726f + 997d592 commit 3ac99e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mojaloop/iac/roles/microk8s/tasks/addons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
when:
- item.status == 'disabled'
- item.name in microk8s_plugins
- item.name != 'dns'
- item.name != 'dns'
- item.name != 'metrics-server'
- microk8s_plugins[item.name]

- name: disable addons
Expand All @@ -33,5 +34,6 @@
when:
- item.status == 'enabled'
- item.name in microk8s_plugins
- item.name != 'dns'
- item.name != 'dns'
- item.name != 'metrics-server'
- not microk8s_plugins[item.name]

0 comments on commit 3ac99e9

Please sign in to comment.