-
Notifications
You must be signed in to change notification settings - Fork 386
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
fix: add recommended resource allocation #699
Conversation
🎉 Successfully Build Images. Docker RegistryOverview: https://hub.docker.com/u/gocrane
Quick Deploy - Helm helm repo add crane https://finops-helm.pkg.coding.net/gocrane/gocrane
helm install crane -n crane-system --create-namespace \
--set craned.image.repository=gocrane/craned \
--set craned.image.tag=pr-699-61beeee \
--set metricAdapter.image.repository=gocrane/metric-adapter \
--set metricAdapter.image.tag=pr-699-61beeee \
--set craneAgent.image.repository=gocrane/crane-agent \
--set craneAgent.image.tag=pr-699-61beeee \
--set cranedDashboard.image.repository=gocrane/dashboard \
--set cranedDashboard.image.tag=pr-699-61beeee crane/crane Coding RegistryOverview: https://finops.coding.net/public-artifacts/gocrane/crane/packages
Quick Deploy - Helm helm repo add crane https://finops-helm.pkg.coding.net/gocrane/gocrane
helm install crane -n crane-system --create-namespace \
--set craned.image.repository=finops-docker.pkg.coding.net/gocrane/crane/craned \
--set craned.image.tag=pr-699-61beeee \
--set metricAdapter.image.repository=finops-docker.pkg.coding.net/gocrane/crane/metric-adapter \
--set metricAdapter.image.tag=pr-699-61beeee \
--set craneAgent.image.repository=finops-docker.pkg.coding.net/gocrane/crane/crane-agent \
--set craneAgent.image.tag=pr-699-61beeee \
--set cranedDashboard.image.repository=finops-docker.pkg.coding.net/gocrane/crane/dashboard \
--set cranedDashboard.image.tag=pr-699-61beeee crane/crane Ghcr RegistryOverview: https://github.com/orgs/gocrane/packages?repo_name=crane
Quick Deploy - Helm helm repo add crane https://finops-helm.pkg.coding.net/gocrane/gocrane
helm install crane -n crane-system --create-namespace \
--set craned.image.repository=ghcr.io/gocrane/crane/craned \
--set craned.image.tag=pr-699-61beeee \
--set metricAdapter.image.repository=ghcr.io/gocrane/crane/metric-adapter \
--set metricAdapter.image.tag=pr-699-61beeee \
--set craneAgent.image.repository=ghcr.io/gocrane/crane/crane-agent \
--set craneAgent.image.tag=pr-699-61beeee \
--set cranedDashboard.image.repository=ghcr.io/gocrane/crane/dashboard \
--set cranedDashboard.image.tag=pr-699-61beeee crane/crane |
deploy/craned/deployment.yaml
Outdated
@@ -115,6 +115,13 @@ data: | |||
apiVersion: apps/v1 | |||
- kind: StatefulSet | |||
apiVersion: apps/v1 | |||
config: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no needed
@@ -13,6 +13,13 @@ recommenders: | |||
apiVersion: apps/v1 | |||
- kind: StatefulSet | |||
apiVersion: apps/v1 | |||
config: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also no needed
HalfLife: "24h", | ||
BucketSize: "0.1", | ||
MaxValue: "100", | ||
HalfLife: rr.Recommender.Config["cpu-histogram-half-life"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please refer to other configuration's implement in register.go
HalfLife: "48h", | ||
BucketSize: "104857600", | ||
MaxValue: "104857600000", | ||
HalfLife: rr.Recommender.Config["mem-histogram-half-life"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the same above
@@ -166,10 +166,17 @@ data: | |||
apiVersion: apps/v1 | |||
- kind: StatefulSet | |||
apiVersion: apps/v1 | |||
config: # settings for recommender |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to add here, better to update here :https://github.com/gocrane/crane/blob/main/site/content/en/docs/Tutorials/Recommendation/resource-recommendation.md
configuration part
@@ -166,6 +166,13 @@ data: | |||
apiVersion: apps/v1 | |||
- kind: StatefulSet | |||
apiVersion: apps/v1 | |||
config: # settings for recommender |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the same above
7a0765a
to
3bf4289
Compare
0da08c4
to
6ef5d02
Compare
All adjustments have been made according to the specification |
site/content/zh/docs/Tutorials/Recommendation/resource-recommendation.md
Outdated
Show resolved
Hide resolved
Signed-off-by: qixiang-liu <18311166263@163.com>
6ef5d02
to
61beeee
Compare
What type of PR is this?
fix
What this PR does / why we need it:
The resource configuration can be adjusted
Which issue(s) this PR fixes:
Fixes #
#698
Special notes for your reviewer: