cloudfoundry-incubator / kubo-release

Kubernetes BOSH release
https://www.cloudfoundry.org/container-runtime/
Apache License 2.0
161 stars 76 forks source link

heapster eventer including request to apply-specs job #245

Closed marcus-sds closed 6 years ago

marcus-sds commented 6 years ago

Is your feature request related to a problem? Please describe. Is it possible to add heapster eventer integration feature

Describe the solution you'd like name: eventer resources: limits: cpu: 100m memory: 190Mi requests: cpu: 100m memory: 190Mi command:

cf-gitbot commented 6 years ago

We have created an issue in Pivotal Tracker to manage this:

https://www.pivotaltracker.com/story/show/159824734

The labels on this github issue will be updated when the story is started.

seanos11 commented 6 years ago

Hi @marcus-sds thanks for posting, after you do a 'bosh deploy ...', if you run the following errand, 'bosh run-errand apply-specs' heapster will be deployed along with other kubernetes add-ons. Does this meet you requirement or are you looking for another feature to be included?

Points to note: Heapster has a deprecation notice in kubernetes v1.11

From the next release v0.21 It will be possible to explicitly list which add-ons you want in your manifest. For example:

- type: replace
  path: /instance_groups/name=apply-addons/jobs/name=apply-specs/properties/addons?
  value: ["kubedns", "metrics-server", "heapster","kubernetes-dashboard"]
marcus-sds commented 6 years ago

Thanks.