Skip to content

Commit

Permalink
chore: Update kind and allow errors removing extra service (#3751)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonswine authored Dec 11, 2024
1 parent 256ad25 commit b6e8085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ $(BIN)/gomodifytags: Makefile go.mod

$(BIN)/kind: Makefile go.mod
@mkdir -p $(@D)
GOBIN=$(abspath $(@D)) $(GO) install sigs.k8s.io/kind@v0.17.0
GOBIN=$(abspath $(@D)) $(GO) install sigs.k8s.io/kind@v0.25.0

$(BIN)/tk: Makefile go.mod $(BIN)/jb
@mkdir -p $(@D)
Expand Down Expand Up @@ -427,7 +427,7 @@ deploy: $(BIN)/kind $(BIN)/helm docker-image/pyroscope/build
.PHONY: deploy-micro-services
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
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)

.PHONY: deploy-monitoring
Expand Down

0 comments on commit b6e8085

Please sign in to comment.