Skip to content

Commit 84ac15f

Browse files
committed
update to v1.1.0
Signed-off-by: wanjunlei <wanjunlei@kubesphere.io>
1 parent fb0350a commit 84ac15f

11 files changed

Lines changed: 8814 additions & 354 deletions

File tree

build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ def run(self):
128128

129129

130130
if __name__ == '__main__':
131-
builder = Build(version="0.5.0", region_cn=True)
131+
builder = Build(version="0.6.0", region_cn=True)
132132
builder.run()

openfunction/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.5.0
19+
version: 0.6.0
2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.0.0"
24+
appVersion: "1.1.0"
2525
keywords:
2626
- faas
2727
- Serverless

openfunction/crds/builder.yaml

Lines changed: 226 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ kind: CustomResourceDefinition
33
metadata:
44
name: builders.core.openfunction.io
55
spec:
6+
conversion:
7+
strategy: Webhook
8+
webhook:
9+
clientConfig:
10+
caBundle: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUROVENDQWgyZ0F3SUJBZ0lVUWNCUGt6MC90OTZ2dzJZV2F0S1JqRWZwaFJrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0tqRW9NQ1lHQTFVRUF3d2ZZMkV0YjNCbGJtWjFibU4wYVc5dUxYZGxZbWh2YjJzdGMyVnlkbWxqWlRBZQpGdzB5TWpBME1EY3dNelV3TURaYUZ3MHpNakEwTURRd016VXdNRFphTUNveEtEQW1CZ05WQkFNTUgyTmhMVzl3ClpXNW1kVzVqZEdsdmJpMTNaV0pvYjI5ckxYTmxjblpwWTJVd2dnRWlNQTBHQ1NxR1NJYjNEUUVCQVFVQUE0SUIKRHdBd2dnRUtBb0lCQVFEVXpZK1hZSmoxdS9sNmZvR1NiWEhaUDNhZklZN1lFRi9ZUk9sQ1V0Q2VBZ25CSDE4NwpqUk1hUVlTWmxMQTBBNEUxR0ZONzVqUU5KV3k5MVJkZmsxN1Z3RFlSa2lpUmg4bjNJbHpsbHQrQ3JKdWJsUHJmCkRFUVZuUkNTRW1Udnc5WmIvWkpXSXloRTNmN0dhckY4S3R3VVZXazNzTzB2Mk0wWXVvdGQxdjdUV3JmS0FBaUgKQjhNS0E2VTN6M0gyOSs0M1NkN1I5SW8vQzhuSFVHMkUrMDk5R3lhcnhRNUVkb2hkTkVCc05jbGprS0ZkNDRkKwpTdzRSVG56MFhIS1JILy9TM0hQMmUvd1ptRTBkb2E0N2VXdlVBay8waUxtMnY3Wk1CWUF2TmFDamVOd3BNNjJmCmpBVnd2YVBid0lIRGZBZHdRaU42bHhrbThIWHlsV0xEZDVnTEFnTUJBQUdqVXpCUk1CMEdBMVVkRGdRV0JCVEYKL0VFcGdsVGJOZ1VTYnhTS2c1bk1kMzMyZ3pBZkJnTlZIU01FR0RBV2dCVEYvRUVwZ2xUYk5nVVNieFNLZzVuTQpkMzMyZ3pBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFCWTN5MWI0MC9sCm03bVJrek91YnRFSnNYWWUzYTFSYkx0eE4vNnQzOG1kNnlneWxVVzZ5WWxJTHBYdjc1ZlFIR3Z2cUhMREdJdmMKOG5VVCsrNUgrUHExaHZxeVV3azFUby9NODE2NkNDMHB2UVNERERMMkNYUzl5TWtrL25tQXBTV2l5aVhRT0cxRApyWEdSMk9BZFlYcFdaNHlzZFRqSGNCY2V1Z3Y0ZzJGOWtXSXJ1eDBCeExGdzE4YjVqSGI1dTltK1VnMDZZMTd6ClNxbWhza0dYajVLWTkwWXAwZUpnUHBWRjNPSzhIWGRYbVlTcjdjOXp4bWc1NGR4K0QxcnMveUc1SjJBN1NTU3gKM1BnL05zbXZvY2QzdFp3K1ZyUnkycC9GbXZ4aUdQOHM0MFBQMTVjdkZMcnM0REVZRFVtekxXNmtqVW9aK041bgpiZFFGM24rZ045ZnkKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=
11+
service:
12+
name: openfunction-webhook-service
13+
namespace: openfunction
14+
path: /convert
15+
conversionReviewVersions:
16+
- v1
617
group: core.openfunction.io
718
names:
819
kind: Builder
@@ -155,6 +166,220 @@ spec:
155166
type: object
156167
type: object
157168
served: true
169+
storage: false
170+
subresources:
171+
status: {}
172+
- additionalPrinterColumns:
173+
- jsonPath: .status.phase
174+
name: Phase
175+
type: string
176+
- jsonPath: .status.state
177+
name: State
178+
type: string
179+
- jsonPath: .status.reason
180+
name: Reason
181+
type: string
182+
- jsonPath: .metadata.creationTimestamp
183+
name: Age
184+
type: date
185+
name: v1beta2
186+
schema:
187+
openAPIV3Schema:
188+
properties:
189+
apiVersion:
190+
type: string
191+
kind:
192+
type: string
193+
metadata:
194+
type: object
195+
spec:
196+
properties:
197+
builder:
198+
type: string
199+
builderCredentials:
200+
properties:
201+
name:
202+
type: string
203+
type: object
204+
builderMaxAge:
205+
type: string
206+
dockerfile:
207+
type: string
208+
env:
209+
additionalProperties:
210+
type: string
211+
type: object
212+
failedBuildsHistoryLimit:
213+
format: int32
214+
type: integer
215+
image:
216+
type: string
217+
imageCredentials:
218+
properties:
219+
name:
220+
type: string
221+
type: object
222+
shipwright:
223+
properties:
224+
params:
225+
items:
226+
properties:
227+
configMapValue:
228+
properties:
229+
format:
230+
type: string
231+
key:
232+
type: string
233+
name:
234+
type: string
235+
required:
236+
- key
237+
- name
238+
type: object
239+
name:
240+
type: string
241+
secretValue:
242+
properties:
243+
format:
244+
type: string
245+
key:
246+
type: string
247+
name:
248+
type: string
249+
required:
250+
- key
251+
- name
252+
type: object
253+
value:
254+
type: string
255+
values:
256+
items:
257+
properties:
258+
configMapValue:
259+
properties:
260+
format:
261+
type: string
262+
key:
263+
type: string
264+
name:
265+
type: string
266+
required:
267+
- key
268+
- name
269+
type: object
270+
secretValue:
271+
properties:
272+
format:
273+
type: string
274+
key:
275+
type: string
276+
name:
277+
type: string
278+
required:
279+
- key
280+
- name
281+
type: object
282+
value:
283+
type: string
284+
type: object
285+
type: array
286+
required:
287+
- name
288+
type: object
289+
type: array
290+
strategy:
291+
properties:
292+
kind:
293+
type: string
294+
name:
295+
type: string
296+
required:
297+
- name
298+
type: object
299+
timeout:
300+
format: duration
301+
type: string
302+
type: object
303+
srcRepo:
304+
properties:
305+
bundleContainer:
306+
properties:
307+
image:
308+
type: string
309+
required:
310+
- image
311+
type: object
312+
credentials:
313+
properties:
314+
name:
315+
type: string
316+
type: object
317+
revision:
318+
type: string
319+
sourceSubPath:
320+
type: string
321+
url:
322+
type: string
323+
type: object
324+
state:
325+
type: string
326+
successfulBuildsHistoryLimit:
327+
format: int32
328+
type: integer
329+
timeout:
330+
type: string
331+
required:
332+
- image
333+
- srcRepo
334+
type: object
335+
status:
336+
properties:
337+
message:
338+
type: string
339+
output:
340+
properties:
341+
digest:
342+
type: string
343+
size:
344+
format: int64
345+
type: integer
346+
type: object
347+
phase:
348+
type: string
349+
reason:
350+
type: string
351+
resourceRef:
352+
additionalProperties:
353+
type: string
354+
type: object
355+
sources:
356+
items:
357+
properties:
358+
bundle:
359+
properties:
360+
digest:
361+
type: string
362+
type: object
363+
git:
364+
properties:
365+
branchName:
366+
type: string
367+
commitAuthor:
368+
type: string
369+
commitSha:
370+
type: string
371+
type: object
372+
name:
373+
type: string
374+
required:
375+
- name
376+
type: object
377+
type: array
378+
state:
379+
type: string
380+
type: object
381+
type: object
382+
served: true
158383
storage: true
159384
subresources:
160385
status: {}
@@ -163,4 +388,4 @@ status:
163388
kind: ""
164389
plural: ""
165390
conditions: []
166-
storedVersions: []
391+
storedVersions: []

0 commit comments

Comments
 (0)