Skip to content

Commit

Permalink
don't use github labels for AKS in sandbox (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
timwebster9 authored Oct 4, 2018
1 parent 667ab26 commit 195b681
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vars/aksDeploy.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def call(DockerImage dockerImage, Map params) {
env.AKS_TEST_URL = "https://${env.SERVICE_FQDN}"
echo "Your AKS service can be reached at: https://${env.SERVICE_FQDN}"

addGithubLabels()
if (subscription != 'sandbox') {
addGithubLabels()
}

def url = env.AKS_TEST_URL + '/health'
def healthChecker = new HealthChecker(this)
Expand Down

0 comments on commit 195b681

Please sign in to comment.