Skip to content

Commit

Permalink
replace underscore in quay username with dashes to match quay behavior (
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Holifield authored Jul 22, 2021
1 parent 4d8248b commit 7b3e8fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bonfire/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def process_clowd_env(target_ns, quay_user, env_name, template_path):
params = dict()
params["ENV_NAME"] = env_name
if quay_user:
quay_user = quay_user.replace("_", "-")
params["PULL_SECRET_NAME"] = f"{quay_user}-pull-secret"
if target_ns:
params["NAMESPACE"] = target_ns
Expand Down

0 comments on commit 7b3e8fa

Please sign in to comment.