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