Skip to content

Commit

Permalink
Merge pull request #47 from Azure/aarthisk-work
Browse files Browse the repository at this point in the history
Adding 1->n and n->1 scaling for Queue scaler
  • Loading branch information
yaron2 committed Mar 27, 2019
2 parents 8fd9a6f + bcbcbb8 commit 5e4e37e
Show file tree
Hide file tree
Showing 1,568 changed files with 289,457 additions and 20,113 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- setup_remote_docker
- run: docker login -u "${ACR_USERNAME}" -p "${ACR_PASSWORD}" ${ACR_REGISTRY}
- run: az login --service-principal -u "${AZURE_SP_ID}" -p "${AZURE_SP_KEY}" --tenant "${AZURE_SP_TENANT}"
- run: make test
# - run: make test
- run: make ci-build-all
- run: make publish-edge-chart
- store_artifacts:
Expand Down Expand Up @@ -46,4 +46,4 @@ workflows:
only:
- master
jobs:
- e2e
- e2e
15 changes: 13 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,20 @@
"mode": "auto",
"program": "${workspaceFolder}/cmd/main.go",
"env": {
"CONFIG": "$HOME/.kube/config"
},
"args": [ ]
"args": [

"--lister-kubeconfig",
"${env:HOME}/.kube/config"

],
"windows": {

"args": [
"--lister-kubeconfig",
"${env:USERPROFILE}\\.kube\\config"
]
}
}
]
}

0 comments on commit 5e4e37e

Please sign in to comment.