Skip to content

Commit

Permalink
fix(alb): hide alb prompt for non alb setups
Browse files Browse the repository at this point in the history
  • Loading branch information
moabu committed Mar 10, 2022
1 parent c305ff3 commit b05dee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygluu/kubernetes/helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def install_gluu(self, install_ingress=True):
logger.error("Helm v3 is not installed. Please install it to continue "
"https://helm.sh/docs/intro/install/")
raise SystemExit(1)
if self.settings.get("IS_GLUU_FQDN_REGISTERED") != "Y":
if self.settings.get("IS_GLUU_FQDN_REGISTERED") != "Y" and self.settings.get("AWS_LB_TYPE") == "alb":
time.sleep(10)
self.redeploy_gluu_to_load_alb()

Expand Down

0 comments on commit b05dee3

Please sign in to comment.