Skip to content

Commit caad5f8

Browse files
authored
minor key change to reflect changes in helm.global.aws map (#91)
* modified setup_kube_config to not use default kube context * PEP-8 cosmetic * logger.info to logger.warning * changed helm.global.aws.name to helm.global.aws.profile key for aws_profile
1 parent c03e8a2 commit caad5f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ops/cli/helmfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def run(self, args, extra_args):
7676
def setup_kube_config(self, data):
7777
if data['helm']['global']['clusterType'] == 'eks':
7878
cluster_name = data['helm']['global']['fqdn']
79-
aws_profile = data['helm']['global']['aws']['name']
79+
aws_profile = data['helm']['global']['aws']['profile']
8080
region = data['helm']['global']['region']['location']
8181
file_location = self.generate_eks_kube_config(
8282
cluster_name, aws_profile, region)

0 commit comments

Comments
 (0)