Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding 1->n and n->1 scaling for Queue scaler #47

Merged
merged 20 commits into from
Mar 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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": [
Aarthisk marked this conversation as resolved.
Show resolved Hide resolved

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

],
"windows": {

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