Skip to content

Commit b858b14

Browse files
Mayfly Chart 1.1.0-rc.1
1 parent db76fbd commit b858b14

File tree

3 files changed

+34
-17
lines changed

3 files changed

+34
-17
lines changed

charts/mayfly/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: Mayfly Operator
33
name: mayfly
4-
version: 1.0.2
4+
version: 1.1.0-rc.1
55
sources:
66
- https://github.com/NCCloud/mayfly
77
maintainers:

charts/mayfly/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mayfly
22

3-
![Version: 1.0.2](https://img.shields.io/badge/Version-1.0.2-informational?style=flat-square)
3+
![Version: 1.1.0-rc.1](https://img.shields.io/badge/Version-1.1.0--rc.1-informational?style=flat-square)
44

55
Mayfly Operator
66

charts/mayfly/crds/cloud.namecheap.com_scheduledresources.yaml

+32-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.13.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: scheduledresources.cloud.namecheap.com
88
spec:
99
group: cloud.namecheap.com
@@ -15,47 +15,64 @@ spec:
1515
scope: Namespaced
1616
versions:
1717
- additionalPrinterColumns:
18-
- jsonPath: .spec.in
19-
name: In
18+
- jsonPath: .spec.schedule
19+
name: Schedule
20+
type: string
21+
- jsonPath: .status.nextRun
22+
name: Next Run
23+
type: string
24+
- jsonPath: .status.lastRun
25+
name: Last Run
2026
type: string
21-
- jsonPath: .metadata.creationTimestamp
22-
name: Age
23-
type: date
2427
- jsonPath: .status.condition
2528
name: Condition
2629
type: string
27-
name: v1alpha1
30+
- jsonPath: .metadata.creationTimestamp
31+
name: Age
32+
type: date
33+
name: v1alpha2
2834
schema:
2935
openAPIV3Schema:
3036
properties:
3137
apiVersion:
32-
description: 'APIVersion defines the versioned schema of this representation
33-
of an object. Servers should convert recognized schemas to the latest
34-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
38+
description: |-
39+
APIVersion defines the versioned schema of this representation of an object.
40+
Servers should convert recognized schemas to the latest internal value, and
41+
may reject unrecognized values.
42+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3543
type: string
3644
kind:
37-
description: 'Kind is a string value representing the REST resource this
38-
object represents. Servers may infer this from the endpoint the client
39-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
45+
description: |-
46+
Kind is a string value representing the REST resource this object represents.
47+
Servers may infer this from the endpoint the client submits requests to.
48+
Cannot be updated.
49+
In CamelCase.
50+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
4051
type: string
4152
metadata:
4253
type: object
4354
spec:
4455
properties:
4556
content:
4657
type: string
47-
in:
58+
schedule:
4859
type: string
4960
required:
5061
- content
51-
- in
62+
- schedule
5263
type: object
5364
status:
5465
properties:
5566
condition:
5667
type: string
68+
lastRun:
69+
type: string
70+
nextRun:
71+
type: string
5772
required:
5873
- condition
74+
- lastRun
75+
- nextRun
5976
type: object
6077
type: object
6178
served: true

0 commit comments

Comments
 (0)