Skip to content

Commit c4ea114

Browse files
authored
add kubesphere 1.1.3 (#133)
* add kubesphere 1.1.3 * kubesphere adapts to tke
1 parent 4c77981 commit c4ea114

File tree

120 files changed

+15917
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+15917
-0
lines changed

incubator/kubesphere/.helmignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/

incubator/kubesphere/Chart.lock

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dependencies:
2+
- name: redis-ha
3+
repository: ""
4+
version: 4.26.1
5+
- name: ks-crds
6+
repository: ""
7+
version: 1.0.0
8+
digest: sha256:a8333aa426d38909098c7bf99d448960b169fe8666af144e7f92c64132da42e4
9+
generated: "2024-10-18T06:41:46.689274657Z"

incubator/kubesphere/Chart.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: v2
2+
appVersion: v4.1.2
3+
dependencies:
4+
- alias: redisHA
5+
condition: redisHA.enabled
6+
name: redis-ha
7+
repository: ""
8+
version: 4.26.1
9+
- alias: ksCRDs
10+
name: ks-crds
11+
repository: ""
12+
version: 1.0.0
13+
description: A Helm chart for KubeSphere Core components
14+
name: ks-core
15+
type: application
16+
version: 1.1.3
17+
icon: https://cloudcache.tencent-cloud.com/qcloud/ui/static/Industry_tke/ea64f506-1b27-494e-aa67-30c6ca27e93d.png
18+
maintainers:
19+
- name: rockerchen
20+
email: rockerchen@tencent.com
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: v2
2+
appVersion: v4.1.0
3+
description: A Helm chart for KS's CustomResourceDefinition
4+
name: ks-crds
5+
type: application
6+
version: 1.0.0

incubator/kubesphere/charts/ks-crds/crds/app.k8s.io_applications.yaml

Lines changed: 534 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: (unknown)
7+
name: applicationreleases.application.kubesphere.io
8+
spec:
9+
group: application.kubesphere.io
10+
names:
11+
kind: ApplicationRelease
12+
listKind: ApplicationReleaseList
13+
plural: applicationreleases
14+
shortNames:
15+
- apprls
16+
singular: applicationrelease
17+
scope: Cluster
18+
versions:
19+
- additionalPrinterColumns:
20+
- jsonPath: .metadata.labels.kubesphere\.io/workspace
21+
name: workspace
22+
type: string
23+
- jsonPath: .metadata.labels.application\.kubesphere\.io/app-id
24+
name: app
25+
type: string
26+
- jsonPath: .metadata.labels.application\.kubesphere\.io/appversion-id
27+
name: appversion
28+
type: string
29+
- jsonPath: .spec.appType
30+
name: appType
31+
type: string
32+
- jsonPath: .metadata.labels.kubesphere\.io/cluster
33+
name: Cluster
34+
type: string
35+
- jsonPath: .metadata.labels.kubesphere\.io/namespace
36+
name: Namespace
37+
type: string
38+
- jsonPath: .status.state
39+
name: State
40+
type: string
41+
- jsonPath: .metadata.creationTimestamp
42+
name: Age
43+
type: date
44+
name: v2
45+
schema:
46+
openAPIV3Schema:
47+
description: ApplicationRelease is the Schema for the applicationreleases
48+
API
49+
properties:
50+
apiVersion:
51+
description: |-
52+
APIVersion defines the versioned schema of this representation of an object.
53+
Servers should convert recognized schemas to the latest internal value, and
54+
may reject unrecognized values.
55+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
56+
type: string
57+
kind:
58+
description: |-
59+
Kind is a string value representing the REST resource this object represents.
60+
Servers may infer this from the endpoint the client submits requests to.
61+
Cannot be updated.
62+
In CamelCase.
63+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
64+
type: string
65+
metadata:
66+
type: object
67+
spec:
68+
description: ApplicationReleaseSpec defines the desired state of ApplicationRelease
69+
properties:
70+
appID:
71+
type: string
72+
appType:
73+
type: string
74+
appVersionID:
75+
type: string
76+
icon:
77+
type: string
78+
values:
79+
format: byte
80+
type: string
81+
required:
82+
- appID
83+
- appVersionID
84+
type: object
85+
status:
86+
description: ApplicationReleaseStatus defines the observed state of ApplicationRelease
87+
properties:
88+
installJobName:
89+
type: string
90+
lastUpdate:
91+
format: date-time
92+
type: string
93+
message:
94+
type: string
95+
realTimeResources:
96+
items:
97+
description: |-
98+
RawMessage is a raw encoded JSON value.
99+
It implements Marshaler and Unmarshaler and can
100+
be used to delay JSON decoding or precompute a JSON encoding.
101+
format: byte
102+
type: string
103+
type: array
104+
specHash:
105+
type: string
106+
state:
107+
type: string
108+
uninstallJobName:
109+
type: string
110+
required:
111+
- state
112+
type: object
113+
type: object
114+
served: true
115+
storage: true
116+
subresources:
117+
status: {}
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: (unknown)
7+
name: applications.application.kubesphere.io
8+
spec:
9+
group: application.kubesphere.io
10+
names:
11+
kind: Application
12+
listKind: ApplicationList
13+
plural: applications
14+
shortNames:
15+
- app
16+
singular: application
17+
scope: Cluster
18+
versions:
19+
- additionalPrinterColumns:
20+
- jsonPath: .metadata.labels.application\.kubesphere\.io/repo-name
21+
name: repo
22+
type: string
23+
- jsonPath: .metadata.labels.kubesphere\.io/workspace
24+
name: workspace
25+
type: string
26+
- jsonPath: .spec.appType
27+
name: appType
28+
type: string
29+
- jsonPath: .status.state
30+
name: State
31+
type: string
32+
- jsonPath: .metadata.creationTimestamp
33+
name: Age
34+
type: date
35+
name: v2
36+
schema:
37+
openAPIV3Schema:
38+
description: Application is the Schema for the applications API
39+
properties:
40+
apiVersion:
41+
description: |-
42+
APIVersion defines the versioned schema of this representation of an object.
43+
Servers should convert recognized schemas to the latest internal value, and
44+
may reject unrecognized values.
45+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
46+
type: string
47+
kind:
48+
description: |-
49+
Kind is a string value representing the REST resource this object represents.
50+
Servers may infer this from the endpoint the client submits requests to.
51+
Cannot be updated.
52+
In CamelCase.
53+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
54+
type: string
55+
metadata:
56+
type: object
57+
spec:
58+
description: ApplicationSpec defines the desired state of Application
59+
properties:
60+
abstraction:
61+
type: string
62+
appHome:
63+
type: string
64+
appType:
65+
type: string
66+
attachments:
67+
items:
68+
type: string
69+
type: array
70+
icon:
71+
type: string
72+
resources:
73+
items:
74+
properties:
75+
Desc:
76+
type: string
77+
Group:
78+
type: string
79+
Name:
80+
type: string
81+
ParentNode:
82+
type: string
83+
Resource:
84+
type: string
85+
Version:
86+
type: string
87+
type: object
88+
type: array
89+
type: object
90+
status:
91+
description: ApplicationStatus defines the observed state of Application
92+
properties:
93+
state:
94+
description: 'the state of the helm application: draft, submitted,
95+
passed, rejected, suspended, active'
96+
type: string
97+
updateTime:
98+
format: date-time
99+
type: string
100+
required:
101+
- updateTime
102+
type: object
103+
type: object
104+
served: true
105+
storage: true
106+
subresources:
107+
status: {}

0 commit comments

Comments
 (0)