Skip to content

Commit

Permalink
fix: missing key handle in aws topology
Browse files Browse the repository at this point in the history
  • Loading branch information
yashmehrotra authored and moshloop committed Jun 11, 2024
1 parent 106533a commit 6e242bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/aws/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: mission-control-aws
description: A Helm chart for the AWS bundle for Flanksource Mission Control
icon: https://github.com/flanksource/docs/blob/main/docs/images/flanksource-icon.png?raw=true
type: application
version: 1.0.1
version: 1.0.2
appVersion: "1.0.0"
maintainers:
- name: Flanksource
2 changes: 1 addition & 1 deletion charts/aws/templates/topology.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
'status_reason': c.description,
'labels': c.labels,
'properties': [
{'name': 'NodeGroup', 'text': c.labels['eksctl.io/v1alpha2/nodegroup-name']}
{'name': 'NodeGroup', 'text': 'eksctl.io/v1alpha2/nodegroup-name' in c.labels ? c.labels['eksctl.io/v1alpha2/nodegroup-name'] : ''}
],
}).toJSON()
Expand Down

0 comments on commit 6e242bb

Please sign in to comment.