-
Notifications
You must be signed in to change notification settings - Fork 132
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
Multi-target support #159
base: master
Are you sure you want to change the base?
Multi-target support #159
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: palasanu The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Co-authored-by: adriananeci <[email protected]>
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
The Kubernetes project currently lacks enough active contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
This PR looks very promising, is there someone who can review it ? CC: @palasanu |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close |
@k8s-triage-robot: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/reopen |
@adriananeci: Reopened this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/remove-lifecycle rotten |
Between this and #211 we have 2 PRs on the same topic - which one do we keep and which do we close? Can we work together on one? |
It looks like gchaviaras-NS1 took this PR and built upon it. It's better to keep his. Thanks for the interest! |
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Signal boost - @gchaviaras-NS1 @palasanu looking forward to pushing #211 forward. |
Hi, I've encountered a use case where I have multiple deployments that need to scale the same in the same namespace, right now the solution is to deploy multiple CPA deployments which seems a bit redundant. Plus some chart dependency complications that with be easily solved if the CPA supported multiple tagerts.
Looking at the code the support for multiple targets was pretty straightforward, I don't see any downsides to it so I've added the changes. Any concerns or suggestions about this feature?