Skip to content
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ Dockerfile.cross
*.swo
*~

.DS_Store
.DS_Store
artifacts
*.tgz
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,11 @@ $(CONTROLLER_GEN): $(LOCALBIN)
envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.
$(ENVTEST): $(LOCALBIN)
test -s $(LOCALBIN)/setup-envtest || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest


.PHONY: helm-lint
helm-lint: ## Lint helm chart
helm lint ./chart
.PHONY: helm-package
helm-package: helm-lint
helm package ./chart --destination ./artifacts
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
name: scheduler-plugins
name: kube-scheduler
description: deploy scheduler plugin as a second scheduler in cluster

# A chart can be either an 'application' or a 'library' chart.
Expand All @@ -21,4 +21,4 @@ version: 0.0.1
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.1"
appVersion: "0.1.0"
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scheduler:
name: llmaz-scheduler
image:
repository: inftyai/kube-scheduler
tag: v0.0.1
tag: v0.1.0
pullPolicy: IfNotPresent
command:
- /kube-scheduler
Expand Down
Loading