Skip to content

Commit bbc039c

Browse files
andresmgotwgiddens
authored andcommitted
Update Kubeless version to v1.0.1 (helm#10069)
Signed-off-by: Andres Martinez Gotor <[email protected]>
1 parent dcdad34 commit bbc039c

File tree

2 files changed

+44
-9
lines changed

2 files changed

+44
-9
lines changed

incubator/kubeless/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: kubeless
2-
version: 2.0.0
3-
appVersion: v1.0.0
2+
version: 2.0.1
3+
appVersion: v1.0.1
44
description: Kubeless is a Kubernetes-native serverless framework. It runs on top of your Kubernetes cluster and allows you to deploy small unit of code without having to build container images.
55
icon: https://cloud.githubusercontent.com/assets/4056725/25480209/1d5bf83c-2b48-11e7-8db8-bcd650f31297.png
66
apiVersion: v1

incubator/kubeless/values.yaml

+42-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ controller:
1010
functionController:
1111
image:
1212
repository: kubeless/function-controller
13-
tag: v1.0.0
13+
tag: v1.0.1
1414
pullPolicy: IfNotPresent
1515
httpTriggerController:
1616
image:
@@ -20,7 +20,7 @@ controller:
2020
cronJobTriggerController:
2121
image:
2222
repository: bitnami/cronjob-trigger-controller
23-
tag: v1.0.0-alpha.9
23+
tag: v1.0.0
2424
pullPolicy: IfNotPresent
2525
## Kubeless Controller resource requests and limits
2626
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
@@ -87,6 +87,24 @@ config:
8787
],
8888
"name": "dotnetcore2.0",
8989
"version": "2.0"
90+
},
91+
{
92+
"images": [
93+
{
94+
"command": "/app/compile-function.sh $KUBELESS_INSTALL_VOLUME",
95+
"image": "allantargino/aspnetcore-build@sha256:36123cf0279b87c5d27d69558062678a5353cc6db238af46bd5c0e508109f659",
96+
"phase": "compilation"
97+
},
98+
{
99+
"env": {
100+
"DOTNETCORE_HOME": "$(KUBELESS_INSTALL_VOLUME)/packages"
101+
},
102+
"image": "allantargino/kubeless-dotnetcore@sha256:6d6c659807881e9dac7adde305867163ced5711ef77a3a76e50112bca1ba14cf",
103+
"phase": "runtime"
104+
}
105+
],
106+
"name": "dotnetcore2.1",
107+
"version": "2.1"
90108
}
91109
]
92110
},
@@ -126,11 +144,11 @@ config:
126144
"images": [
127145
{
128146
"command": "/compile-function.sh",
129-
"image": "kubeless/java-init@sha256:a14d846bfe53f359f706a260b95f0a9a755883b053dbd17b724e7a3cdff5bae6",
147+
"image": "kubeless/java-init@sha256:36cc37836437aaa5ac82f49ba20781d45bd5efcd9e2d022fcaae487a058572c2",
130148
"phase": "compilation"
131149
},
132150
{
133-
"image": "kubeless/java@sha256:d2a59e50e8181174ad3c6096cd5d3ce82f46b7e22a6f3a109b0816787e7190d9",
151+
"image": "kubeless/java@sha256:2dbc44c0e2467a27558776edb2aed85055361e2f0b74443800851ee658576a88",
134152
"phase": "runtime"
135153
}
136154
],
@@ -262,6 +280,24 @@ config:
262280
],
263281
"name": "python36",
264282
"version": "3.6"
283+
},
284+
{
285+
"images": [
286+
{
287+
"command": "pip install --prefix=$KUBELESS_INSTALL_VOLUME -r $KUBELESS_DEPS_FILE",
288+
"image": "python:3.7",
289+
"phase": "installation"
290+
},
291+
{
292+
"env": {
293+
"PYTHONPATH": "$(KUBELESS_INSTALL_VOLUME)/lib/python3.7/site-packages:$(KUBELESS_INSTALL_VOLUME)"
294+
},
295+
"image": "kubeless/python@sha256:dbf616cb06a262482c00f5b53e1de17571924032e0ad000865ec6b5357ff35bf",
296+
"phase": "runtime"
297+
}
298+
],
299+
"name": "python37",
300+
"version": "3.7"
265301
}
266302
]
267303
},
@@ -364,7 +400,7 @@ config:
364400
"env": {
365401
"NODE_PATH": "$(KUBELESS_INSTALL_VOLUME)/node_modules"
366402
},
367-
"image": "henrike42/kubeless/runtimes/nodejs/distroless:0.0.2",
403+
"image": "kubeless/nodejs-distroless@sha256:1fa0469c5520f4e08d89b1fafd2cacf03f098b96ea04997fa52bb9ef2a180fb3",
368404
"phase": "runtime"
369405
}
370406
],
@@ -399,7 +435,6 @@ config:
399435
]
400436
}]'
401437

402-
403438
## UI configuration
404439
ui:
405440
enabled: false
@@ -440,7 +475,7 @@ kafkaTrigger:
440475
deployment:
441476
image:
442477
repository: bitnami/kafka-trigger-controller
443-
tag: v1.0.0-beta.0
478+
tag: v1.0.0
444479
pullPolicy: IfNotPresent
445480
env:
446481
kafkaBrokers: localhost:9092

0 commit comments

Comments
 (0)