Skip to content

Commit

Permalink
[ansible] kubectl format() fix (#1972)
Browse files Browse the repository at this point in the history
Merged PR #1972.
  • Loading branch information
rambleraptor authored and modular-magician committed Jun 25, 2019
1 parent 74bac8c commit 422b993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/ansible
2 changes: 1 addition & 1 deletion products/container/helpers/python/kubectl.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def write_file(self):
"""
def _contents(self):
token = self._auth_token()
endpoint = "https://{}".format(self.fetch["endpoint"])
endpoint = "https://%s" % self.fetch["endpoint"]
context = self.module.params.get('kubectl_context')
if not context:
context = self.module.params['name']
Expand Down

0 comments on commit 422b993

Please sign in to comment.