-
Notifications
You must be signed in to change notification settings - Fork 653
Added values file for demo #3813
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
base: main
Are you sure you want to change the base?
Changes from 5 commits
eb58000
c0bbbb4
8b6b815
b051e27
83c7e4d
977dc3e
d305e89
3ad1842
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -410,13 +410,13 @@ helm/check: $(BIN)/kubeconform $(BIN)/helm | |
$(BIN)/helm template -n default --kube-version "1.23.0" pyroscope-dev ./operations/pyroscope/helm/pyroscope/ \ | ||
| tee ./operations/pyroscope/helm/pyroscope/rendered/single-binary.yaml \ | ||
| $(BIN)/kubeconform --summary --strict --kubernetes-version 1.23.0 | ||
$(BIN)/helm template -n default --kube-version "1.23.0" pyroscope-dev ./operations/pyroscope/helm/pyroscope/ --values operations/pyroscope/helm/pyroscope/values-micro-services.yaml \ | ||
$(BIN)/helm template -n default --kube-version "1.23.0" pyroscope-dev ./operations/pyroscope/helm/pyroscope/ --values operations/pyroscope/helm/pyroscope/values-micro-services-small.yaml\ | ||
| tee ./operations/pyroscope/helm/pyroscope/rendered/micro-services.yaml \ | ||
| $(BIN)/kubeconform --summary --strict --kubernetes-version 1.23.0 | ||
$(BIN)/helm template -n default --kube-version "1.23.0" pyroscope-dev ./operations/pyroscope/helm/pyroscope/ --values operations/pyroscope/helm/pyroscope/values-micro-services-hpa.yaml \ | ||
| tee ./operations/pyroscope/helm/pyroscope/rendered/micro-services-hpa.yaml \ | ||
| $(BIN)/kubeconform --summary --strict --kubernetes-version 1.23.0 | ||
cat operations/pyroscope/helm/pyroscope/values-micro-services.yaml \ | ||
cat operations/pyroscope/helm/pyroscope/values-micro-services-small.yaml\ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This causes the values of |
||
| go run ./tools/yaml-to-json \ | ||
> ./operations/pyroscope/jsonnet/values-micro-services.json | ||
cat operations/pyroscope/helm/pyroscope/values-micro-services-hpa.yaml \ | ||
|
@@ -436,7 +436,7 @@ deploy: $(BIN)/kind $(BIN)/helm docker-image/pyroscope/build | |
deploy-micro-services: $(BIN)/kind $(BIN)/helm docker-image/pyroscope/build | ||
# Ensure to delete existing service, that has been created manually by the deploy target | ||
kubectl delete svc --field-selector metadata.name=pyroscope-micro-services-query-frontend -l app.kubernetes.io/managed-by!=Helm || true | ||
$(call deploy,pyroscope-micro-services,--values=operations/pyroscope/helm/pyroscope/values-micro-services.yaml --set pyroscope.components.querier.resources=null --set pyroscope.components.distributor.resources=null --set pyroscope.components.ingester.resources=null --set pyroscope.components.store-gateway.resources=null --set pyroscope.components.compactor.resources=null) | ||
$(call deploy,pyroscope-micro-services,--values=operations/pyroscope/helm/pyroscope/values-micro-services-small.yaml--set pyroscope.components.querier.resources=null --set pyroscope.components.distributor.resources=null --set pyroscope.components.ingester.resources=null --set pyroscope.components.store-gateway.resources=null --set pyroscope.components.compactor.resources=null) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. looks like we are missing a space here before the first |
||
|
||
.PHONY: deploy-monitoring | ||
deploy-monitoring: $(BIN)/tk $(BIN)/kind tools/monitoring/environments/default/spec.json | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# pyroscope | ||
|
||
   | ||
   | ||
|
||
🔥 horizontally-scalable, highly-available, multi-tenant continuous profiling aggregation system | ||
|
||
|
@@ -94,4 +94,4 @@ | |
| serviceMonitor.tlsConfig | string | `nil` | ServiceMonitor will use these tlsConfig settings to make the health check requests | | ||
|
||
---------------------------------------------- | ||
Autogenerated from chart metadata using [helm-docs v1.8.1](https://github.com/norwoodj/helm-docs/releases/v1.8.1) | ||
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One last bit to make the linter happy – we should either update the helm-docs version in the makefile or specify it manually here (1.8.1) or just run There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated readme |
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.
Looks like we replaced the rendered values-micro-services.yaml file, instead of creating a new one for
-small
. Could you restore the original line here and add a newhelm template
call for the-small
file?