File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,6 @@ Dockerfile.cross
25
25
* .swo
26
26
* ~
27
27
28
- .DS_Store
28
+ .DS_Store
29
+ artifacts
30
+ * .tgz
Original file line number Diff line number Diff line change @@ -233,3 +233,11 @@ $(CONTROLLER_GEN): $(LOCALBIN)
233
233
envtest : $(ENVTEST ) # # Download envtest-setup locally if necessary.
234
234
$(ENVTEST ) : $(LOCALBIN )
235
235
test -s $(LOCALBIN ) /setup-envtest || GOBIN=$(LOCALBIN ) go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
236
+
237
+
238
+ .PHONY : helm-lint
239
+ helm-lint : # # Lint helm chart
240
+ helm lint ./chart
241
+ .PHONY : helm-package
242
+ helm-package : helm-lint
243
+ helm package ./chart --destination ./artifacts
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
- name : scheduler-plugins
2
+ name : kube-scheduler
3
3
description : deploy scheduler plugin as a second scheduler in cluster
4
4
5
5
# A chart can be either an 'application' or a 'library' chart.
@@ -21,4 +21,4 @@ version: 0.0.1
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " 0.0.1 "
24
+ appVersion : " 0.1.0 "
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ scheduler:
6
6
name : llmaz-scheduler
7
7
image :
8
8
repository : inftyai/kube-scheduler
9
- tag : v0.0.1
9
+ tag : v0.1.0
10
10
pullPolicy : IfNotPresent
11
11
command :
12
12
- /kube-scheduler
You can’t perform that action at this time.
0 commit comments