Skip to content

Commit d756c5e

Browse files
authored
add k0sproject.io (#573)
Signed-off-by: George Gaál <[email protected]>
1 parent 843ea58 commit d756c5e

File tree

2 files changed

+98
-0
lines changed

2 files changed

+98
-0
lines changed
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"description": "EtcdMember describes the nodes etcd membership status",
3+
"properties": {
4+
"apiVersion": {
5+
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
6+
"type": "string"
7+
},
8+
"kind": {
9+
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
10+
"type": "string"
11+
},
12+
"metadata": {
13+
"type": "object"
14+
},
15+
"spec": {
16+
"description": "EtcdMemberSpec defines the desired state of EtcdMember",
17+
"properties": {
18+
"leave": {
19+
"description": "Leave is a flag to indicate that the member should be removed from the cluster",
20+
"type": "boolean"
21+
}
22+
},
23+
"type": "object",
24+
"additionalProperties": false
25+
},
26+
"status": {
27+
"properties": {
28+
"conditions": {
29+
"items": {
30+
"properties": {
31+
"lastTransitionTime": {
32+
"description": "Last time the condition transitioned from one status to another.",
33+
"format": "date-time",
34+
"type": "string"
35+
},
36+
"message": {
37+
"description": "Human-readable message indicating details about last transition.",
38+
"type": "string"
39+
},
40+
"status": {
41+
"enum": [
42+
"True",
43+
"False",
44+
"Unknown"
45+
],
46+
"type": "string"
47+
},
48+
"type": {
49+
"enum": [
50+
"Joined"
51+
],
52+
"type": "string"
53+
}
54+
},
55+
"required": [
56+
"status",
57+
"type"
58+
],
59+
"type": "object",
60+
"additionalProperties": false
61+
},
62+
"type": "array",
63+
"x-kubernetes-list-map-keys": [
64+
"type"
65+
],
66+
"x-kubernetes-list-type": "map"
67+
},
68+
"memberID": {
69+
"description": "MemberID is the unique identifier of the etcd member.\nThe hex form ID is stored as string",
70+
"pattern": "^[a-fA-F0-9]+$",
71+
"type": "string"
72+
},
73+
"message": {
74+
"type": "string"
75+
},
76+
"peerAddress": {
77+
"description": "PeerAddress is the address of the etcd peer",
78+
"type": "string"
79+
},
80+
"reconcileStatus": {
81+
"description": "ReconcileStatus is the last status of the reconcile process",
82+
"type": "string"
83+
}
84+
},
85+
"required": [
86+
"memberID",
87+
"peerAddress"
88+
],
89+
"type": "object",
90+
"additionalProperties": false
91+
}
92+
},
93+
"type": "object"
94+
}

helm.k0sproject.io/chart_v1beta1.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
"chartName": {
1919
"type": "string"
2020
},
21+
"forceUpgrade": {
22+
"description": "ForceUpgrade when set to false, disables the use of the \"--force\" flag when upgrading the chart (default: true).",
23+
"type": "boolean"
24+
},
2125
"namespace": {
2226
"type": "string"
2327
},

0 commit comments

Comments
 (0)