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

Fix/app endpoint #361

Merged
merged 3 commits into from
Dec 3, 2024
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
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ MINIKUBE_VERSION ?= latest

# The release version of Yunikorn images
# used in integration and performance tests.
YK_VERSION=fab384e
YK_VERSION=ca3bc94

##@ General

Expand Down Expand Up @@ -433,10 +433,7 @@ install-and-patch-yunikorn: helm-install-yunikorn patch-yunikorn-service ## inst
.PHONY: helm-install-yunikorn
.ONESHELL:
helm-install-yunikorn: ## install yunikorn using helm.
@echo "\nLoading Local Docker images into kind cluster..."
$(KIND) load docker-image ${IMAGE_REGISTRY}/yunikorn:admission-${ARCH}-${YK_VERSION} --name ${CLUSTER_NAME}
$(KIND) load docker-image ${IMAGE_REGISTRY}/yunikorn:scheduler-plugin-${ARCH}-${YK_VERSION} --name ${CLUSTER_NAME}
$(KIND) load docker-image ${IMAGE_REGISTRY}/yunikorn:scheduler-${ARCH}-${YK_VERSION} --name ${CLUSTER_NAME}
@echo "\nInstalling yunikorn helm chart..."
$(HELM) upgrade --install yunikorn yunikorn/yunikorn --namespace $(NAMESPACE) --create-namespace \
--set image.repository=${IMAGE_REGISTRY}/yunikorn \
--set image.tag=scheduler-${ARCH}-${YK_VERSION} \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.23.2
toolchain go1.23.3

require (
github.com/G-Research/yunikorn-core v0.0.0-20241120004812-3d39b65572b7
github.com/G-Research/yunikorn-core v0.0.0-20241202214804-ba58310cd431
github.com/G-Research/yunikorn-scheduler-interface v0.0.0-20241010085204-da837381ae08
github.com/emicklei/go-restful-openapi/v2 v2.11.0
github.com/emicklei/go-restful/v3 v3.12.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 h1:He8af
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/G-Research/yunikorn-core v0.0.0-20241120004812-3d39b65572b7 h1:XrQO0N9Sw5sYcA7C0ml0CMMeGMMyMs2Ouvd8fOCefAY=
github.com/G-Research/yunikorn-core v0.0.0-20241120004812-3d39b65572b7/go.mod h1:91B5DZaf9g2j4PBZijOjHGCpAcdGIj/hXPlF2+2jpH8=
github.com/G-Research/yunikorn-core v0.0.0-20241202214804-ba58310cd431 h1:mpsB7VSfpxTAnVfWEOm0N6HhLhxmvY8r/SXyRASX5gU=
github.com/G-Research/yunikorn-core v0.0.0-20241202214804-ba58310cd431/go.mod h1:91B5DZaf9g2j4PBZijOjHGCpAcdGIj/hXPlF2+2jpH8=
github.com/G-Research/yunikorn-scheduler-interface v0.0.0-20241010085204-da837381ae08 h1:uV9X13Of+UNRBhvhHzf6A1KT2j85emuVMNEua5rO8g4=
github.com/G-Research/yunikorn-scheduler-interface v0.0.0-20241010085204-da837381ae08/go.mod h1:FQMPzj6bVpw0SLjDxVSdbp8DaQGeUrVD4WdxyI3go9Q=
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
Expand Down
Loading