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

feat: Add container port for Prometheus on operator YAML #1562

Merged
merged 3 commits into from
Feb 11, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
### Improvements

- Add `KEDA_HTTP_DEFAULT_TIMEOUT` support in operator ([#1548](https://github.com/kedacore/keda/issues/1548))
- Removed `MIN field` for scaledjob.([#1553](https://github.com/kedacore/keda/pull/1553))
- Removed `MIN field` for scaledjob ([#1553](https://github.com/kedacore/keda/pull/1553))
- Add container port for Prometheus on operator YAML ([#1562](https://github.com/kedacore/keda/pull/1562))
- Fix a memory leak in kafka client and close push scalers ([#1565](https://github.com/kedacore/keda/issues/1565))

### Breaking Changes
Expand Down
4 changes: 4 additions & 0 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ spec:
path: /readyz
port: 8081
initialDelaySeconds: 20
ports:
- containerPort: 8080
name: http
protocol: TCP
env:
- name: WATCH_NAMESPACE
value: ""
Expand Down