@dovetail-v2/refine 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{MonacoYamlEditor-9b8b7cef.cjs → MonacoYamlEditor-bdd52136.cjs} +15 -7
- package/dist/{MonacoYamlEditor-5e4c98ce.js → MonacoYamlEditor-d09e7de9.js} +15 -7
- package/dist/components/ShowContent/ShowContent.d.ts +4 -16
- package/dist/components/ShowContent/ShowContentView.d.ts +21 -0
- package/dist/components/ShowContent/fields.d.ts +1 -0
- package/dist/components/ShowContent/index.d.ts +1 -0
- package/dist/components/YamlEditor/MonacoYamlEditor.d.ts +5 -5
- package/dist/components/YamlEditor/YamlEditorComponent.d.ts +9 -7
- package/dist/hooks/useEagleTable/columns.d.ts +1 -1
- package/dist/{index-c4f4f337.js → index-3126e84d.js} +568 -414
- package/dist/{index-e9523181.cjs → index-ec66ac8f.cjs} +455 -301
- package/dist/models/deployment-model.d.ts +5 -1
- package/dist/models/index.d.ts +1 -1
- package/dist/models/replicaset-model.d.ts +17 -0
- package/dist/models/service-model.d.ts +4 -0
- package/dist/models/workload-model.d.ts +6 -0
- package/dist/refine.cjs +3 -1
- package/dist/refine.js +113 -111
- package/dist/style.css +162 -158
- package/dist/utils/match-selector.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import { GlobalStore, Unstructured } from 'k8s-api-provider';
|
|
2
|
-
import { Deployment } from 'kubernetes-types/apps/v1';
|
|
2
|
+
import type { Deployment } from 'kubernetes-types/apps/v1';
|
|
3
3
|
import { ResourceState } from '../constants';
|
|
4
|
+
import { ReplicaSetModel } from './replicaset-model';
|
|
4
5
|
import { WorkloadModel } from './workload-model';
|
|
5
6
|
type RequiredDeployment = Required<Deployment> & Unstructured;
|
|
6
7
|
export declare class DeploymentModel extends WorkloadModel {
|
|
7
8
|
_rawYaml: RequiredDeployment;
|
|
8
9
|
spec?: RequiredDeployment['spec'];
|
|
9
10
|
status?: RequiredDeployment['status'];
|
|
11
|
+
replicaSets: ReplicaSetModel[];
|
|
10
12
|
constructor(_rawYaml: RequiredDeployment, _globalStore: GlobalStore);
|
|
13
|
+
init(): Promise<void>;
|
|
14
|
+
private getReplicaSets;
|
|
11
15
|
get stateDisplay(): ResourceState.UPDATING | ResourceState.READY | ResourceState.STOPPED;
|
|
12
16
|
}
|
|
13
17
|
export {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export * from './workload-base-model';
|
|
|
6
6
|
export * from './pod-model';
|
|
7
7
|
export * from './pod-metrics-model';
|
|
8
8
|
export * from './resource-model';
|
|
9
|
-
export * from './
|
|
9
|
+
export * from './replicaset-model';
|
|
10
10
|
export * from './cronjob-model';
|
|
11
11
|
export * from './event-model';
|
|
12
12
|
export * from './deployment-model';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { GlobalStore, Unstructured } from 'k8s-api-provider';
|
|
2
|
+
import type { ReplicaSet } from 'kubernetes-types/apps/v1';
|
|
3
|
+
import { PodModel } from './pod-model';
|
|
4
|
+
import { ResourceModel } from './resource-model';
|
|
5
|
+
type RequiredReplicaSet = Required<ReplicaSet> & Unstructured;
|
|
6
|
+
export declare class ReplicaSetModel extends ResourceModel<RequiredReplicaSet> {
|
|
7
|
+
_rawYaml: RequiredReplicaSet;
|
|
8
|
+
pods: PodModel[];
|
|
9
|
+
restarts: number;
|
|
10
|
+
spec?: RequiredReplicaSet['spec'];
|
|
11
|
+
status?: RequiredReplicaSet['status'];
|
|
12
|
+
constructor(_rawYaml: RequiredReplicaSet, _globalStore: GlobalStore);
|
|
13
|
+
init(): Promise<void>;
|
|
14
|
+
private getPods;
|
|
15
|
+
get ownerDeploymentName(): string | undefined;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { GlobalStore, Unstructured } from 'k8s-api-provider';
|
|
2
2
|
import { Service } from 'kubernetes-types/core/v1';
|
|
3
|
+
import { IngressModel } from './ingress-model';
|
|
3
4
|
import { ResourceModel } from './resource-model';
|
|
4
5
|
export type ServiceType = Required<Unstructured & Service>;
|
|
5
6
|
export declare enum ServiceTypeEnum {
|
|
@@ -11,7 +12,10 @@ export declare enum ServiceTypeEnum {
|
|
|
11
12
|
}
|
|
12
13
|
export declare class ServiceModel extends ResourceModel<ServiceType> {
|
|
13
14
|
_rawYaml: ServiceType;
|
|
15
|
+
ingresses: IngressModel[];
|
|
14
16
|
constructor(_rawYaml: ServiceType, _globalStore: GlobalStore);
|
|
17
|
+
init(): Promise<void>;
|
|
18
|
+
private getIngresses;
|
|
15
19
|
get displayType(): string | undefined;
|
|
16
20
|
get dnsRecord(): string;
|
|
17
21
|
get displayPortMapping(): {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { GlobalStore, Unstructured } from 'k8s-api-provider';
|
|
2
2
|
import type { DaemonSet, Deployment, StatefulSet } from 'kubernetes-types/apps/v1';
|
|
3
|
+
import { IngressModel } from './ingress-model';
|
|
4
|
+
import { ServiceModel } from './service-model';
|
|
3
5
|
import { WorkloadBaseModel } from './workload-base-model';
|
|
4
6
|
type WorkloadTypes = Required<Deployment | StatefulSet | DaemonSet> & Unstructured;
|
|
5
7
|
export declare class WorkloadModel extends WorkloadBaseModel {
|
|
@@ -7,9 +9,13 @@ export declare class WorkloadModel extends WorkloadBaseModel {
|
|
|
7
9
|
restarts: number;
|
|
8
10
|
spec?: WorkloadTypes['spec'];
|
|
9
11
|
status?: WorkloadTypes['status'];
|
|
12
|
+
services: ServiceModel[];
|
|
13
|
+
ingresses: IngressModel[];
|
|
10
14
|
constructor(_rawYaml: WorkloadTypes, _globalStore: GlobalStore);
|
|
11
15
|
init(): Promise<void>;
|
|
12
16
|
private getRestarts;
|
|
17
|
+
private getServices;
|
|
18
|
+
private getIngresses;
|
|
13
19
|
get replicas(): number | undefined;
|
|
14
20
|
get readyReplicas(): number | undefined;
|
|
15
21
|
get appKey(): string;
|
package/dist/refine.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const refine = require("./index-
|
|
3
|
+
const refine = require("./index-ec66ac8f.cjs");
|
|
4
4
|
require("./common-1eb43414.cjs");
|
|
5
5
|
require("@cloudtower/eagle");
|
|
6
6
|
require("@refinedev/core");
|
|
@@ -174,6 +174,7 @@ exports.RefineFormContent = refine.RefineFormContent;
|
|
|
174
174
|
exports.RefineFormPage = refine.RefineFormPage;
|
|
175
175
|
exports.RelationPlugin = refine.RelationPlugin;
|
|
176
176
|
exports.ReplicaField = refine.ReplicaField;
|
|
177
|
+
exports.ReplicaSetModel = refine.ReplicaSetModel;
|
|
177
178
|
exports.ReplicasColumnRenderer = refine.ReplicasColumnRenderer;
|
|
178
179
|
exports.ReplicasDropdown = refine.ReplicasDropdown;
|
|
179
180
|
exports.ResourceCRUD = refine.ResourceCRUD;
|
|
@@ -226,6 +227,7 @@ exports.ServiceTypeEnum = refine.ServiceTypeEnum;
|
|
|
226
227
|
exports.ServiceTypeField = refine.ServiceTypeField;
|
|
227
228
|
exports.SessionAffinityField = refine.SessionAffinityField;
|
|
228
229
|
exports.ShowContent = refine.ShowContent;
|
|
230
|
+
exports.ShowContentView = refine.ShowContentView;
|
|
229
231
|
exports.ShowGroupComponent = refine.ShowGroupComponent;
|
|
230
232
|
exports.StartTimeField = refine.StartTimeField;
|
|
231
233
|
exports.StateDisplayColumnRenderer = refine.StateDisplayColumnRenderer;
|
package/dist/refine.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { bP, cF, A, aX, aZ, aG, cd, bl, a2, cr, cf, aR, T, C, j, cL, aJ, bq, ad, cN, aj, aq, cX, ay, cg, ce, c_, aN, bx, w, aE, bF, cZ, cG, bI, D, b2, at, bL, as, au, a1, cb, ca, cY, bj, aV, cI, ae, bZ, bS, cK, cJ, cM, cp, aH, ak, s, q, cO, I, bu, aU, t, M, bf, bh, ch, cQ, aM, bt, ar, az, aA, a9, aB, cc, aY, aF, bG, bJ, aa, d8, cq, cA, bO, N, a3, g, aW, a7, bR, bz, by, cP, c3, d3, i, d2, aK, br, cj, L, bb, bc, bp, H, bd, J, be, B, b6, cD, z, b5, G, b9, E, b7, F, b8, K, c4, ba, cC, ab, d6, d5, P, bn, v, af, ai, c2, bk, cU, cT, b0, bv, c8, c7, p, aL, bm, x, bw, b1, d7, y, ct, cH, bM, bU, bV, da, aI, cW, h, ah, ao, an, bN, al, cV, c6, am, cE, c9, bi, bB, av, R, Q, O, bg, cw, cz, cv, cu, cx, cy, cs, ck, cn, co, cm, cl, ci, cB, bW, aO, bs, aC, m, b_, l, a_, d1, o, b$, a$, n, aT, bo, k, d0, aQ, aS, bC, bE, bD, aP, S, bH, c$, d4, b3, b4, bA, bK, c5, c0, c1, ac, a0, cS, ag, W, cR, ap, ax, aw, aD, bX, U, a4, d, dd, dc, df, di, dh, d9, a8, dg, db, bT, de, a6, a5, r, a, c, e, X, V, Z, f, _, u, bQ, $, bY, b, dj, dk, dl } from "./index-3126e84d.js";
|
|
2
2
|
import "./common-feae5742.js";
|
|
3
3
|
import "@cloudtower/eagle";
|
|
4
4
|
import "@refinedev/core";
|
|
@@ -17,66 +17,66 @@ import "@patternfly/react-log-viewer";
|
|
|
17
17
|
import "react-hook-form";
|
|
18
18
|
import "antd";
|
|
19
19
|
export {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
bP as ALL_NS,
|
|
21
|
+
cF as AccessControlAuth,
|
|
22
22
|
A as AgeColumnRenderer,
|
|
23
23
|
aX as AgeField,
|
|
24
24
|
aZ as AnnotationsField,
|
|
25
25
|
aG as AreaType,
|
|
26
|
-
|
|
26
|
+
cd as BASE_INIT_VALUE,
|
|
27
27
|
bl as BasicGroup,
|
|
28
28
|
a2 as Breadcrumb,
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
cr as CONFIG_MAP_INIT_VALUE,
|
|
30
|
+
cf as CRONJOB_INIT_VALUE,
|
|
31
31
|
aR as ClusterIpField,
|
|
32
32
|
T as ColumnKeys,
|
|
33
33
|
C as CommonSorter,
|
|
34
34
|
j as CompletionsCountColumnRenderer,
|
|
35
|
-
|
|
35
|
+
cL as ComponentContext,
|
|
36
36
|
aJ as ConditionsField,
|
|
37
37
|
bq as ConditionsGroup,
|
|
38
38
|
ad as ConditionsTable,
|
|
39
|
-
|
|
39
|
+
cN as ConfigsContext,
|
|
40
40
|
aj as CreateButton,
|
|
41
41
|
aq as CronJobDropdown,
|
|
42
|
-
|
|
42
|
+
cX as CronJobModel,
|
|
43
43
|
ay as CronjobJobsTable,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
cg as DAEMONSET_INIT_VALUE,
|
|
45
|
+
ce as DEPLOYMENT_INIT_VALUE,
|
|
46
|
+
c_ as DaemonSetModel,
|
|
47
47
|
aN as DataField,
|
|
48
48
|
bx as DataGroup,
|
|
49
49
|
w as DataKeysColumnRenderer,
|
|
50
50
|
aE as DeleteButton,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
51
|
+
bF as DeleteManyButton,
|
|
52
|
+
cZ as DeploymentModel,
|
|
53
|
+
cG as Dovetail,
|
|
54
|
+
bI as DrawerShow,
|
|
55
55
|
D as DurationColumnRenderer,
|
|
56
56
|
b2 as DurationField,
|
|
57
57
|
at as EditAnnotationDropdownMenuItem,
|
|
58
|
-
|
|
58
|
+
bL as EditButton,
|
|
59
59
|
as as EditLabelDropdownMenuItem,
|
|
60
60
|
au as EditNodeTaintDropdownMenuItem,
|
|
61
61
|
a1 as ErrorContent,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
62
|
+
cb as ErrorContentType,
|
|
63
|
+
ca as ErrorWrapper,
|
|
64
|
+
cY as EventModel,
|
|
65
65
|
bj as EventsTab,
|
|
66
66
|
aV as EventsTableTabField,
|
|
67
|
-
|
|
67
|
+
cI as FormContainerType,
|
|
68
68
|
ae as FormErrorAlert,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
bZ as FormItemLayout,
|
|
70
|
+
bS as FormModal,
|
|
71
|
+
cK as FormMode,
|
|
72
|
+
cJ as FormType,
|
|
73
|
+
cM as GlobalStoreContext,
|
|
74
|
+
cp as INGRESS_INIT_VALUE,
|
|
75
75
|
aH as ImageField,
|
|
76
76
|
ak as ImageNames,
|
|
77
77
|
s as IngressClassColumnRenderer,
|
|
78
78
|
q as IngressDefaultBackendColumnRenderer,
|
|
79
|
-
|
|
79
|
+
cO as IngressModel,
|
|
80
80
|
I as IngressRulesColumnRenderer,
|
|
81
81
|
bu as IngressRulesGroup,
|
|
82
82
|
aU as IngressRulesTableTabField,
|
|
@@ -84,8 +84,8 @@ export {
|
|
|
84
84
|
M as IsDefaultSCColumnRenderer,
|
|
85
85
|
bf as IsDefaultSCField,
|
|
86
86
|
bh as IsSCAllowVolumeExpansionField,
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
ch as JOB_INIT_VALUE,
|
|
88
|
+
cQ as JobModel,
|
|
89
89
|
aM as JobsField,
|
|
90
90
|
bt as JobsGroup,
|
|
91
91
|
ar as K8sDropdown,
|
|
@@ -93,32 +93,32 @@ export {
|
|
|
93
93
|
aA as KeyValueAnnotation,
|
|
94
94
|
a9 as KeyValueListWidget,
|
|
95
95
|
aB as KeyValueSecret,
|
|
96
|
-
|
|
96
|
+
cc as KeyValueTableForm,
|
|
97
97
|
aY as LabelsField,
|
|
98
98
|
aF as Layout,
|
|
99
|
-
|
|
100
|
-
|
|
99
|
+
bG as ListPage,
|
|
100
|
+
bJ as Menu,
|
|
101
101
|
aa as MetadataForm,
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
102
|
+
d8 as ModelPlugin,
|
|
103
|
+
cq as NETWORK_POLICY_INIT_VALUE,
|
|
104
|
+
cA as NODE_INIT_VALUE,
|
|
105
|
+
bO as NS_STORE_KEY,
|
|
106
106
|
N as NameColumnRenderer,
|
|
107
107
|
a3 as NameInputWidget,
|
|
108
108
|
g as NameSpaceColumnRenderer,
|
|
109
109
|
aW as NamespaceField,
|
|
110
110
|
a7 as NamespaceSelectWidget,
|
|
111
|
-
|
|
111
|
+
bR as NamespacesFilter,
|
|
112
112
|
bz as NetworkPolicyEgressRulesGroup,
|
|
113
113
|
by as NetworkPolicyIngressRulesGroup,
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
114
|
+
cP as NetworkPolicyModel,
|
|
115
|
+
c3 as NetworkPolicyRulesViewer,
|
|
116
|
+
d3 as NodeModel,
|
|
117
117
|
i as NodeNameColumnRenderer,
|
|
118
|
-
|
|
118
|
+
d2 as NodeRole,
|
|
119
119
|
aK as NodeTaintsField,
|
|
120
120
|
br as NodeTaintsGroup,
|
|
121
|
-
|
|
121
|
+
cj as POD_INIT_VALUE,
|
|
122
122
|
L as PVAccessModeColumnRenderer,
|
|
123
123
|
bb as PVAccessModeField,
|
|
124
124
|
bc as PVCPodsField,
|
|
@@ -129,7 +129,7 @@ export {
|
|
|
129
129
|
be as PVCSIRefField,
|
|
130
130
|
B as PVCStorageColumnRenderer,
|
|
131
131
|
b6 as PVCStorageField,
|
|
132
|
-
|
|
132
|
+
cD as PVC_INIT_VALUE,
|
|
133
133
|
z as PVCapacityColumnRenderer,
|
|
134
134
|
b5 as PVCapacityField,
|
|
135
135
|
G as PVPhaseColumnRenderer,
|
|
@@ -139,51 +139,52 @@ export {
|
|
|
139
139
|
F as PVStorageClassColumnRenderer,
|
|
140
140
|
b8 as PVStorageClassField,
|
|
141
141
|
K as PVVolumeModeColumnRenderer,
|
|
142
|
-
|
|
142
|
+
c4 as PVVolumeModeDisplay,
|
|
143
143
|
ba as PVVolumeModeField,
|
|
144
|
-
|
|
144
|
+
cC as PV_INIT_VALUE,
|
|
145
145
|
ab as PageShow,
|
|
146
|
-
|
|
147
|
-
|
|
146
|
+
d6 as PersistentVolumeClaimModel,
|
|
147
|
+
d5 as PersistentVolumeModel,
|
|
148
148
|
P as PlainTextNameColumnRenderer,
|
|
149
149
|
bn as PodContainersGroup,
|
|
150
150
|
v as PodContainersNumColumnRenderer,
|
|
151
151
|
af as PodContainersTable,
|
|
152
152
|
ai as PodDropdown,
|
|
153
|
-
|
|
153
|
+
c2 as PodLog,
|
|
154
154
|
bk as PodLogTab,
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
cU as PodMetricsModel,
|
|
156
|
+
cT as PodModel,
|
|
157
157
|
b0 as PodSelectorField,
|
|
158
158
|
bv as PodSelectorGroup,
|
|
159
|
-
|
|
160
|
-
|
|
159
|
+
c8 as PodShell,
|
|
160
|
+
c7 as PodShellModal,
|
|
161
161
|
p as PodWorkloadColumnRenderer,
|
|
162
162
|
aL as PodsField,
|
|
163
163
|
bm as PodsGroup,
|
|
164
164
|
x as PortMappingColumnRenderer,
|
|
165
165
|
bw as PortsGroup,
|
|
166
166
|
b1 as PortsTableField,
|
|
167
|
-
|
|
167
|
+
d7 as ProviderPlugins,
|
|
168
168
|
y as ProvisionerColumnRenderer,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
169
|
+
ct as REDEPLOY_TIMESTAMP_KEY,
|
|
170
|
+
cH as RESOURCE_GROUP,
|
|
171
|
+
bM as ReferenceLink,
|
|
172
|
+
bU as RefineFormContent,
|
|
173
|
+
bV as RefineFormPage,
|
|
174
|
+
da as RelationPlugin,
|
|
175
175
|
aI as ReplicaField,
|
|
176
|
+
cW as ReplicaSetModel,
|
|
176
177
|
h as ReplicasColumnRenderer,
|
|
177
178
|
ah as ReplicasDropdown,
|
|
178
179
|
ao as ResourceCRUD,
|
|
179
180
|
an as ResourceForm,
|
|
180
|
-
|
|
181
|
+
bN as ResourceLink,
|
|
181
182
|
al as ResourceList,
|
|
182
|
-
|
|
183
|
-
|
|
183
|
+
cV as ResourceModel,
|
|
184
|
+
c6 as ResourceSelect,
|
|
184
185
|
am as ResourceShow,
|
|
185
|
-
|
|
186
|
-
|
|
186
|
+
cE as ResourceState,
|
|
187
|
+
c9 as ResourceTable,
|
|
187
188
|
bi as ResourceTableField,
|
|
188
189
|
bB as ResourceTableGroup,
|
|
189
190
|
av as ResourceUsageBar,
|
|
@@ -191,78 +192,79 @@ export {
|
|
|
191
192
|
Q as SCAllowExpandColumnRenderer,
|
|
192
193
|
O as SCReclaimPolicyColumnRenderer,
|
|
193
194
|
bg as SCReclaimPolicyField,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
195
|
+
cw as SECRET_BASIC_AUTH_INIT_VALUE,
|
|
196
|
+
cz as SECRET_CUSTOM_INIT_VALUE,
|
|
197
|
+
cv as SECRET_IMAGE_REPO_INIT_VALUE,
|
|
198
|
+
cu as SECRET_OPAQUE_INIT_VALUE,
|
|
199
|
+
cx as SECRET_SSH_AUTH_INIT_VALUE,
|
|
200
|
+
cy as SECRET_TLS_INIT_VALUE,
|
|
201
|
+
cs as SERVER_INSTANCE_INIT_VALUE,
|
|
202
|
+
ck as SERVICE_CLUSTER_IP_INIT_VALUE,
|
|
203
|
+
cn as SERVICE_EXTERNAL_NAME_INIT_VALUE,
|
|
204
|
+
co as SERVICE_HEADLESS_INIT_VALUE,
|
|
205
|
+
cm as SERVICE_LOAD_BALANCER_INIT_VALUE,
|
|
206
|
+
cl as SERVICE_NODE_PORT_INIT_VALUE,
|
|
207
|
+
ci as STATEFULSET_INIT_VALUE,
|
|
208
|
+
cB as STORAGE_CLASS_INIT_VALUE,
|
|
209
|
+
bW as SchemaStrategy,
|
|
209
210
|
aO as SecretDataField,
|
|
210
211
|
bs as SecretDataGroup,
|
|
211
212
|
aC as Separator,
|
|
212
213
|
m as ServiceInClusterAccessColumnRenderer,
|
|
213
|
-
|
|
214
|
+
b_ as ServiceInClusterAccessComponent,
|
|
214
215
|
l as ServiceInClusterAccessTitle,
|
|
215
216
|
a_ as ServiceInnerClusterAccessField,
|
|
216
|
-
|
|
217
|
+
d1 as ServiceModel,
|
|
217
218
|
o as ServiceOutClusterAccessColumnRenderer,
|
|
218
|
-
|
|
219
|
+
b$ as ServiceOutClusterAccessComponent,
|
|
219
220
|
a$ as ServiceOutClusterAccessField,
|
|
220
221
|
n as ServiceOutClusterAccessTitle,
|
|
221
222
|
aT as ServicePodsField,
|
|
222
223
|
bo as ServicePodsGroup,
|
|
223
224
|
k as ServiceTypeColumnRenderer,
|
|
224
|
-
|
|
225
|
+
d0 as ServiceTypeEnum,
|
|
225
226
|
aQ as ServiceTypeField,
|
|
226
227
|
aS as SessionAffinityField,
|
|
227
|
-
|
|
228
|
-
|
|
228
|
+
bC as ShowContent,
|
|
229
|
+
bE as ShowContentView,
|
|
230
|
+
bD as ShowGroupComponent,
|
|
229
231
|
aP as StartTimeField,
|
|
230
232
|
S as StateDisplayColumnRenderer,
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
233
|
+
bH as StateTag,
|
|
234
|
+
c$ as StatefulSetModel,
|
|
235
|
+
d4 as StorageClassModel,
|
|
234
236
|
b3 as StorageClassProvisionerField,
|
|
235
237
|
b4 as StorageClassPvField,
|
|
236
238
|
bA as StorageClassPvGroup,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
bK as Table,
|
|
240
|
+
c5 as Tabs,
|
|
241
|
+
c0 as Tags,
|
|
242
|
+
c1 as TextTags,
|
|
241
243
|
ac as Time,
|
|
242
244
|
a0 as ValueDisplay,
|
|
243
|
-
|
|
245
|
+
cS as WorkloadBaseModel,
|
|
244
246
|
ag as WorkloadDropdown,
|
|
245
247
|
W as WorkloadImageColumnRenderer,
|
|
246
|
-
|
|
248
|
+
cR as WorkloadModel,
|
|
247
249
|
ap as WorkloadPodsTable,
|
|
248
250
|
ax as WorkloadReplicas,
|
|
249
251
|
aw as WorkloadReplicasForm,
|
|
250
252
|
aD as YamlEditorComponent,
|
|
251
|
-
|
|
253
|
+
bX as YamlForm,
|
|
252
254
|
U as addDefaultRenderToColumns,
|
|
253
255
|
a4 as dnsSubDomainRules,
|
|
254
256
|
d as dovetailRefineI18n,
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
257
|
+
dd as generateSchemaTypeValue,
|
|
258
|
+
dc as generateValueFromSchema,
|
|
259
|
+
df as getApiVersion,
|
|
260
|
+
di as getResourceNameByKind,
|
|
261
|
+
dh as matchSelector,
|
|
262
|
+
d9 as modelPlugin,
|
|
261
263
|
a8 as namespaceRules,
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
264
|
+
dg as pruneBeforeEdit,
|
|
265
|
+
db as relationPlugin,
|
|
266
|
+
bT as renderCommonFormFiled,
|
|
267
|
+
de as resolveRef,
|
|
266
268
|
a6 as rfc1035LabelRules,
|
|
267
269
|
a5 as rfc1123LabelRules,
|
|
268
270
|
r as routerProvider,
|
|
@@ -275,11 +277,11 @@ export {
|
|
|
275
277
|
f as useFailedModal,
|
|
276
278
|
_ as useGlobalStore,
|
|
277
279
|
u as useNamespaceRefineFilter,
|
|
278
|
-
|
|
280
|
+
bQ as useNamespacesFilter,
|
|
279
281
|
$ as useOpenForm,
|
|
280
|
-
|
|
282
|
+
bY as useRefineForm,
|
|
281
283
|
b as useSchema,
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
284
|
+
dj as validateDnsSubdomain,
|
|
285
|
+
dk as validateLabelKey,
|
|
286
|
+
dl as validateLabelValue
|
|
285
287
|
};
|