@dovetail-v2/refine 0.1.3 → 0.1.4-pod-exec-0
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/{MonacoYamlDiffEditor-4060eeb6.js → MonacoYamlDiffEditor-706f5a4e.js} +1 -1
- package/dist/{index-9767c246.js → index-bce2a951.js} +15940 -2030
- package/dist/refine.js +164 -158
- package/dist/refine.umd.cjs +15661 -1751
- package/dist/style.css +229 -11
- package/lib/App.d.ts +2 -0
- package/lib/Dovetail.d.ts +18 -0
- package/lib/components/Breadcrumb/index.d.ts +5 -0
- package/lib/components/ConditionsTable/ConditionsTable.d.ts +7 -0
- package/lib/components/ConditionsTable/index.d.ts +1 -0
- package/lib/components/CreateButton/index.d.ts +1 -0
- package/lib/components/CronJobDropdown/index.d.ts +8 -0
- package/lib/components/CronjobJobsTable/index.d.ts +8 -0
- package/lib/components/DeleteButton/index.d.ts +2 -0
- package/lib/components/DeleteManyButton/index.d.ts +4 -0
- package/lib/components/DrawerShow/DrawerShow.d.ts +8 -0
- package/lib/components/DrawerShow/index.d.ts +1 -0
- package/lib/components/DurationTime/index.d.ts +5 -0
- package/lib/components/EditButton/index.d.ts +2 -0
- package/lib/components/EditField/index.d.ts +15 -0
- package/lib/components/ErrorContent/index.d.ts +17 -0
- package/lib/components/EventsTable/EventsTable.d.ts +6 -0
- package/lib/components/EventsTable/index.d.ts +1 -0
- package/lib/components/Form/FormModal.d.ts +10 -0
- package/lib/components/Form/RefineFormContent.d.ts +11 -0
- package/lib/components/Form/RefineFormPage.d.ts +6 -0
- package/lib/components/Form/YamlForm.d.ts +28 -0
- package/lib/components/Form/index.d.ts +7 -0
- package/lib/components/Form/type.d.ts +17 -0
- package/lib/components/Form/useReactHookForm.d.ts +29 -0
- package/lib/components/Form/useRefineForm.d.ts +13 -0
- package/lib/components/Form/useYamlForm.d.ts +51 -0
- package/lib/components/FormErrorAlert/index.d.ts +9 -0
- package/lib/components/FormLayout/index.d.ts +7 -0
- package/lib/components/FormWidgets/KeyValueListWidget.d.ts +5 -0
- package/lib/components/FormWidgets/MetadataForm.d.ts +1 -0
- package/lib/components/FormWidgets/NameInputWidget.d.ts +50 -0
- package/lib/components/FormWidgets/NamespaceSelectWidget.d.ts +8 -0
- package/lib/components/FormWidgets/index.d.ts +4 -0
- package/lib/components/FormWidgets/widget.d.ts +5 -0
- package/lib/components/ImageNames/index.d.ts +5 -0
- package/lib/components/IngressRulesComponent/index.d.ts +5 -0
- package/lib/components/IngressRulesTable/IngressRulesTable.d.ts +7 -0
- package/lib/components/IngressRulesTable/index.d.ts +1 -0
- package/lib/components/K8sDropdown/index.d.ts +9 -0
- package/lib/components/KeyValue/KeyValue.d.ts +7 -0
- package/lib/components/KeyValue/KeyValueAnnotation.d.ts +5 -0
- package/lib/components/KeyValue/KeyValueSecret.d.ts +4 -0
- package/lib/components/KeyValue/index.d.ts +3 -0
- package/lib/components/Layout/index.d.ts +3 -0
- package/lib/components/LinkFallback/index.d.ts +3 -0
- package/lib/components/ListPage/index.d.ts +9 -0
- package/lib/components/Menu/index.d.ts +1 -0
- package/lib/components/NamespacesFilter/index.d.ts +11 -0
- package/lib/components/NetworkPolicyRulesViewer/NetworkPolicyRulesViewer.d.ts +8 -0
- package/lib/components/NetworkPolicyRulesViewer/index.d.ts +1 -0
- package/lib/components/PageShow/PageShow.d.ts +12 -0
- package/lib/components/PageShow/index.d.ts +1 -0
- package/lib/components/PodContainersTable/PodContainersTable.d.ts +8 -0
- package/lib/components/PodContainersTable/index.d.ts +1 -0
- package/lib/components/PodDropdown/index.d.ts +9 -0
- package/lib/components/PodLog/index.d.ts +6 -0
- package/lib/components/PodSelectorTable/index.d.ts +6 -0
- package/lib/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/components/PodShellModal/index.d.ts +9 -0
- package/lib/components/PortsTable/index.d.ts +7 -0
- package/lib/components/ReferenceLink/index.d.ts +8 -0
- package/lib/components/ReplicasDropdown/index.d.ts +9 -0
- package/lib/components/ResourceCRUD/ResourceCRUD.d.ts +7 -0
- package/lib/components/ResourceCRUD/create/index.d.ts +7 -0
- package/lib/components/ResourceCRUD/index.d.ts +4 -0
- package/lib/components/ResourceCRUD/list/index.d.ts +8 -0
- package/lib/components/ResourceCRUD/show/index.d.ts +8 -0
- package/lib/components/ResourceFiledDisplays.d.ts +6 -0
- package/lib/components/ResourceLink/index.d.ts +8 -0
- package/lib/components/ResourceSelect/index.d.ts +11 -0
- package/lib/components/ResourceUsageBar/index.d.ts +8 -0
- package/lib/components/Separator/index.d.ts +2 -0
- package/lib/components/ServiceComponents/index.d.ts +10 -0
- package/lib/components/Shell/index.d.ts +54 -0
- package/lib/components/ShowContent/ShowContent.d.ts +18 -0
- package/lib/components/ShowContent/fields.d.ts +68 -0
- package/lib/components/ShowContent/groups.d.ts +23 -0
- package/lib/components/ShowContent/index.d.ts +4 -0
- package/lib/components/ShowContent/tabs.d.ts +5 -0
- package/lib/components/StateTag/StateTag.d.ts +10 -0
- package/lib/components/StateTag/index.d.ts +1 -0
- package/lib/components/Table/TableToolBar.d.ts +8 -0
- package/lib/components/Table/TableWidgets.d.ts +6 -0
- package/lib/components/Table/index.d.ts +43 -0
- package/lib/components/Tabs/index.d.ts +10 -0
- package/lib/components/Tags/index.d.ts +6 -0
- package/lib/components/TextTags/index.d.ts +6 -0
- package/lib/components/Time/index.d.ts +8 -0
- package/lib/components/ValueDisplay/index.d.ts +9 -0
- package/lib/components/WorkloadDropdown/index.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/WorkloadPodsTable.d.ts +9 -0
- package/lib/components/WorkloadPodsTable/index.d.ts +1 -0
- package/lib/components/WorkloadReplicas/index.d.ts +17 -0
- package/lib/components/YamlEditor/MonacoYamlDiffEditor.d.ts +9 -0
- package/lib/components/YamlEditor/MonacoYamlEditor.d.ts +19 -0
- package/lib/components/YamlEditor/YamlEditorComponent.d.ts +27 -0
- package/lib/components/YamlEditor/index.d.ts +1 -0
- package/lib/components/YamlEditor/style.d.ts +11 -0
- package/lib/components/YamlEditor/yaml.worker.d.ts +1 -0
- package/lib/components/index.d.ts +47 -0
- package/lib/constants/auth.d.ts +5 -0
- package/lib/constants/index.d.ts +3 -0
- package/lib/constants/k8s.d.ts +487 -0
- package/lib/constants/state.d.ts +15 -0
- package/lib/contexts/component.d.ts +7 -0
- package/lib/contexts/configs.d.ts +3 -0
- package/lib/contexts/global-store.d.ts +5 -0
- package/lib/contexts/index.d.ts +3 -0
- package/lib/hooks/index.d.ts +8 -0
- package/lib/hooks/useDeleteModal/index.d.ts +1 -0
- package/lib/hooks/useDeleteModal/useDeleteManyModal.d.ts +7 -0
- package/lib/hooks/useDeleteModal/useDeleteModal.d.ts +7 -0
- package/lib/hooks/useDownloadYAML.d.ts +7 -0
- package/lib/hooks/useEagleTable/columns.d.ts +41 -0
- package/lib/hooks/useEagleTable/index.d.ts +2 -0
- package/lib/hooks/useEagleTable/useEagleTable.d.ts +55 -0
- package/lib/hooks/useEdit.d.ts +4 -0
- package/lib/hooks/useGlobalStore.d.ts +3 -0
- package/lib/hooks/useK8sYamlEditor.d.ts +5 -0
- package/lib/hooks/useNamespaceRefineFilter.d.ts +5 -0
- package/lib/hooks/useOpenForm.d.ts +7 -0
- package/lib/hooks/useSchema.d.ts +14 -0
- package/lib/hooks/useSubmitForm.d.ts +14 -0
- package/lib/hooks/useTableData.d.ts +19 -0
- package/lib/i18n.d.ts +353 -0
- package/lib/index.d.ts +11 -0
- package/lib/locales/en-US/index.d.ts +175 -0
- package/lib/locales/index.d.ts +2 -0
- package/lib/locales/zh-CN/index.d.ts +175 -0
- package/lib/main.d.ts +3 -0
- package/lib/models/cronjob-model.d.ts +15 -0
- package/lib/models/daemonset-model.d.ts +15 -0
- package/lib/models/deployment-model.d.ts +13 -0
- package/lib/models/event-model.d.ts +7 -0
- package/lib/models/index.d.ts +19 -0
- package/lib/models/ingress-model.d.ts +20 -0
- package/lib/models/job-model.d.ts +20 -0
- package/lib/models/network-policy-model.d.ts +9 -0
- package/lib/models/node-model.d.ts +17 -0
- package/lib/models/persistent-volume-claim.d.ts +9 -0
- package/lib/models/persistent-volume.d.ts +9 -0
- package/lib/models/pod-metrics-model.d.ts +8 -0
- package/lib/models/pod-model.d.ts +20 -0
- package/lib/models/resource-model.d.ts +21 -0
- package/lib/models/service-model.d.ts +24 -0
- package/lib/models/statefulset-model.d.ts +13 -0
- package/lib/models/storage-class.d.ts +12 -0
- package/lib/models/types/index.d.ts +1 -0
- package/lib/models/types/metric.d.ts +25 -0
- package/lib/models/workload-base-model.d.ts +12 -0
- package/lib/models/workload-model.d.ts +18 -0
- package/lib/pages/configmaps/index.d.ts +4 -0
- package/lib/pages/cronjobs/create/index.d.ts +3 -0
- package/lib/pages/cronjobs/index.d.ts +3 -0
- package/lib/pages/cronjobs/list/index.d.ts +3 -0
- package/lib/pages/cronjobs/show/index.d.ts +3 -0
- package/lib/pages/daemonsets/create/index.d.ts +3 -0
- package/lib/pages/daemonsets/index.d.ts +3 -0
- package/lib/pages/daemonsets/list/index.d.ts +3 -0
- package/lib/pages/daemonsets/show/index.d.ts +3 -0
- package/lib/pages/deployments/index.d.ts +2 -0
- package/lib/pages/deployments/list/index.d.ts +3 -0
- package/lib/pages/deployments/show/index.d.ts +3 -0
- package/lib/pages/ingresses/index.d.ts +4 -0
- package/lib/pages/jobs/index.d.ts +4 -0
- package/lib/pages/networkPolicies/index.d.ts +4 -0
- package/lib/pages/nodes/index.d.ts +2 -0
- package/lib/pages/nodes/list/index.d.ts +3 -0
- package/lib/pages/nodes/show/index.d.ts +3 -0
- package/lib/pages/persistentvolumeclaims/index.d.ts +4 -0
- package/lib/pages/persistentvolumes/index.d.ts +4 -0
- package/lib/pages/pods/create/index.d.ts +3 -0
- package/lib/pages/pods/index.d.ts +3 -0
- package/lib/pages/pods/list/index.d.ts +3 -0
- package/lib/pages/pods/show/index.d.ts +3 -0
- package/lib/pages/secrets/index.d.ts +4 -0
- package/lib/pages/services/index.d.ts +4 -0
- package/lib/pages/statefulsets/index.d.ts +4 -0
- package/lib/pages/storageclasses/form/index.d.ts +9 -0
- package/lib/pages/storageclasses/index.d.ts +44 -0
- package/lib/plugins/index.d.ts +4 -0
- package/lib/plugins/model-plugin.d.ts +13 -0
- package/lib/plugins/relation-plugin.d.ts +26 -0
- package/lib/plugins/type.d.ts +8 -0
- package/lib/providers/index.d.ts +1 -0
- package/lib/providers/router-provider/index.d.ts +21 -0
- package/lib/src/components/Form/FormModal.d.ts +1 -0
- package/lib/src/components/PodDropdown/index.d.ts +9 -0
- package/lib/src/components/PodShellModal/PodShell.d.ts +18 -0
- package/lib/src/components/PodShellModal/index.d.ts +10 -0
- package/lib/src/components/Shell/index.d.ts +54 -0
- package/lib/src/components/index.d.ts +3 -0
- package/lib/src/i18n.d.ts +1 -0
- package/lib/src/locales/en-US/index.d.ts +1 -0
- package/lib/src/utils/shell.d.ts +16 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/resource.d.ts +62 -0
- package/lib/utils/addId.d.ts +3 -0
- package/lib/utils/download.d.ts +1 -0
- package/lib/utils/error.d.ts +20 -0
- package/lib/utils/form.d.ts +3 -0
- package/lib/utils/k8s.d.ts +3 -0
- package/lib/utils/labels.d.ts +9 -0
- package/lib/utils/match-selector.d.ts +3 -0
- package/lib/utils/openapi.d.ts +45 -0
- package/lib/utils/schema.d.ts +17 -0
- package/lib/utils/selector.d.ts +3 -0
- package/lib/utils/shell.d.ts +15 -0
- package/lib/utils/string.d.ts +1 -0
- package/lib/utils/time.d.ts +13 -0
- package/lib/utils/unit.d.ts +12 -0
- package/lib/utils/yaml.d.ts +2 -0
- package/package.json +14 -5
package/dist/refine.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { bq, cc, A, aK, aM, au, bO, b0, V, c0, bQ, aE, H, C, h, cg, ax, b4, a5, ci, aa, ah, cr, am, bR, bP, cu, aA, ba, v, as, bg, ct, cd, bk, D, aR, bm, cs, a_, aI, bu, cf, bt, ch, b_, av, ab, q, p, cj, I, b7, aH, s, bS, cl, az, b6, ai, an, ao, a1, ap, aL, at, bh, bl, a2, M, cE, b$, c9, bp, N, X, c, aJ, $, bs, bc, bb, ck, bF, cz, f, cy, bU, G, aZ, z, aV, y, aU, E, bG, aX, B, aW, F, bH, aY, a3, cC, cB, P, b2, t, a6, a9, bE, a$, cp, co, aP, b8, bN, bM, o, ay, b1, w, b9, aQ, cD, x, ce, bn, bv, bw, cG, aw, R, a8, af, ae, bo, ac, cq, bJ, ad, aj, g, c5, c8, c4, c3, c6, c7, c1, bV, bY, bZ, bX, bW, bT, ca, bx, aB, b5, aq, l, bA, k, aN, cx, n, bB, aO, m, aG, b3, i, cw, aD, aF, bL, bf, be, bK, aC, S, bj, bi, cv, cA, aS, aT, bd, c2, bI, bC, bD, a4, U, cn, a7, W, cm, ag, al, ak, e, cb, ar, by, J, Y, d, cF, a0, cH, _, Z, r, b, L, K, O, Q, u, br, T, bz, a } from "./index-bce2a951.js";
|
|
2
2
|
import "@cloudtower/eagle";
|
|
3
3
|
import "@refinedev/core";
|
|
4
4
|
import "react";
|
|
@@ -15,212 +15,218 @@ import "monaco-yaml";
|
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "antd";
|
|
17
17
|
export {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
bq as ALL_NS,
|
|
19
|
+
cc as AccessControlAuth,
|
|
20
20
|
A as AgeColumnRenderer,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
aK as AgeField,
|
|
22
|
+
aM as AnnotationsField,
|
|
23
|
+
au as AreaType,
|
|
24
|
+
bO as BASE_INIT_VALUE,
|
|
25
|
+
b0 as BasicGroup,
|
|
26
26
|
V as Breadcrumb,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
c0 as CONFIG_MAP_INIT_VALUE,
|
|
28
|
+
bQ as CRONJOB_INIT_VALUE,
|
|
29
|
+
aE as ClusterIpField,
|
|
30
30
|
H as ColumnKeys,
|
|
31
31
|
C as CommonSorter,
|
|
32
32
|
h as CompletionsCountColumnRenderer,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
cg as ComponentContext,
|
|
34
|
+
ax as ConditionsField,
|
|
35
|
+
b4 as ConditionsGroup,
|
|
36
36
|
a5 as ConditionsTable,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
37
|
+
ci as ConfigsContext,
|
|
38
|
+
aa as CreateButton,
|
|
39
|
+
ah as CronJobDropdown,
|
|
40
|
+
cr as CronJobModel,
|
|
41
|
+
am as CronjobJobsTable,
|
|
42
|
+
bR as DAEMONSET_INIT_VALUE,
|
|
43
|
+
bP as DEPLOYMENT_INIT_VALUE,
|
|
44
|
+
cu as DaemonSetModel,
|
|
45
|
+
aA as DataField,
|
|
46
|
+
ba as DataGroup,
|
|
47
47
|
v as DataKeysColumnRenderer,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
as as DeleteButton,
|
|
49
|
+
bg as DeleteManyButton,
|
|
50
|
+
ct as DeploymentModel,
|
|
51
|
+
cd as Dovetail,
|
|
52
|
+
bk as DrawerShow,
|
|
53
53
|
D as DurationColumnRenderer,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
54
|
+
aR as DurationField,
|
|
55
|
+
bm as EditButton,
|
|
56
|
+
cs as EventModel,
|
|
57
|
+
a_ as EventsTab,
|
|
58
|
+
aI as EventsTableTabField,
|
|
59
|
+
bu as FormModal,
|
|
60
|
+
cf as FormType,
|
|
61
|
+
bt as FullscreenModalStyle,
|
|
62
|
+
ch as GlobalStoreContext,
|
|
63
|
+
b_ as INGRESS_INIT_VALUE,
|
|
64
|
+
av as ImageField,
|
|
65
|
+
ab as ImageNames,
|
|
65
66
|
q as IngressClassColumnRenderer,
|
|
66
67
|
p as IngressDefaultBackendColumnRenderer,
|
|
67
|
-
|
|
68
|
+
cj as IngressModel,
|
|
68
69
|
I as IngressRulesColumnRenderer,
|
|
69
|
-
|
|
70
|
-
|
|
70
|
+
b7 as IngressRulesGroup,
|
|
71
|
+
aH as IngressRulesTableTabField,
|
|
71
72
|
s as IngressTlsColumnRenderer,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
73
|
+
bS as JOB_INIT_VALUE,
|
|
74
|
+
cl as JobModel,
|
|
75
|
+
az as JobsField,
|
|
76
|
+
b6 as JobsGroup,
|
|
77
|
+
ai as K8sDropdown,
|
|
78
|
+
an as KeyValue,
|
|
79
|
+
ao as KeyValueAnnotation,
|
|
79
80
|
a1 as KeyValueListWidget,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
81
|
+
ap as KeyValueSecret,
|
|
82
|
+
aL as LabelsField,
|
|
83
|
+
at as Layout,
|
|
84
|
+
bh as ListPage,
|
|
85
|
+
bl as Menu,
|
|
85
86
|
a2 as MetadataForm,
|
|
86
87
|
M as ModalStyle,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
cE as ModelPlugin,
|
|
89
|
+
b$ as NETWORK_POLICY_INIT_VALUE,
|
|
90
|
+
c9 as NODE_INIT_VALUE,
|
|
91
|
+
bp as NS_STORE_KEY,
|
|
91
92
|
N as NameColumnRenderer,
|
|
92
93
|
X as NameInputWidget,
|
|
93
94
|
c as NameSpaceColumnRenderer,
|
|
94
|
-
|
|
95
|
+
aJ as NamespaceField,
|
|
95
96
|
$ as NamespaceSelectWidget,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
97
|
+
bs as NamespacesFilter,
|
|
98
|
+
bc as NetworkPolicyEgressRulesGroup,
|
|
99
|
+
bb as NetworkPolicyIngressRulesGroup,
|
|
100
|
+
ck as NetworkPolicyModel,
|
|
101
|
+
bF as NetworkPolicyRulesViewer,
|
|
102
|
+
cz as NodeModel,
|
|
102
103
|
f as NodeNameColumnRenderer,
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
cy as NodeRole,
|
|
105
|
+
bU as POD_INIT_VALUE,
|
|
105
106
|
G as PVAccessModeColumnRenderer,
|
|
106
|
-
|
|
107
|
+
aZ as PVAccessModeField,
|
|
107
108
|
z as PVCStorageColumnRenderer,
|
|
108
|
-
|
|
109
|
+
aV as PVCStorageField,
|
|
109
110
|
y as PVCapacityColumnRenderer,
|
|
110
|
-
|
|
111
|
+
aU as PVCapacityField,
|
|
111
112
|
E as PVPhaseColumnRenderer,
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
bG as PVPhaseDisplay,
|
|
114
|
+
aX as PVPhaseField,
|
|
114
115
|
B as PVStorageClassColumnRenderer,
|
|
115
|
-
|
|
116
|
+
aW as PVStorageClassField,
|
|
116
117
|
F as PVVolumeModeColumnRenderer,
|
|
117
|
-
|
|
118
|
-
|
|
118
|
+
bH as PVVolumeModeDisplay,
|
|
119
|
+
aY as PVVolumeModeField,
|
|
119
120
|
a3 as PageShow,
|
|
120
|
-
|
|
121
|
-
|
|
121
|
+
cC as PersistentVolumeClaimModel,
|
|
122
|
+
cB as PersistentVolumeModel,
|
|
122
123
|
P as PlainTextNameColumnRenderer,
|
|
123
|
-
|
|
124
|
+
b2 as PodContainersGroup,
|
|
124
125
|
t as PodContainersNumColumnRenderer,
|
|
125
126
|
a6 as PodContainersTable,
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
127
|
+
a9 as PodDropdown,
|
|
128
|
+
bE as PodLog,
|
|
129
|
+
a$ as PodLogTab,
|
|
130
|
+
cp as PodMetricsModel,
|
|
131
|
+
co as PodModel,
|
|
132
|
+
aP as PodSelectorField,
|
|
133
|
+
b8 as PodSelectorGroup,
|
|
134
|
+
bN as PodShell,
|
|
135
|
+
bM as PodShellModal,
|
|
132
136
|
o as PodWorkloadColumnRenderer,
|
|
133
|
-
|
|
134
|
-
|
|
137
|
+
ay as PodsField,
|
|
138
|
+
b1 as PodsGroup,
|
|
135
139
|
w as PortMappingColumnRenderer,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
140
|
+
b9 as PortsGroup,
|
|
141
|
+
aQ as PortsTableField,
|
|
142
|
+
cD as ProviderPlugins,
|
|
139
143
|
x as ProvisionerColumnRenderer,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
144
|
+
ce as RESOURCE_GROUP,
|
|
145
|
+
bn as ReferenceLink,
|
|
146
|
+
bv as RefineFormContent,
|
|
147
|
+
bw as RefineFormPage,
|
|
148
|
+
cG as RelationPlugin,
|
|
149
|
+
aw as ReplicaField,
|
|
146
150
|
R as ReplicasColumnRenderer,
|
|
147
151
|
a8 as ReplicasDropdown,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
152
|
+
af as ResourceCRUD,
|
|
153
|
+
ae as ResourceForm,
|
|
154
|
+
bo as ResourceLink,
|
|
155
|
+
ac as ResourceList,
|
|
156
|
+
cq as ResourceModel,
|
|
157
|
+
bJ as ResourceSelect,
|
|
158
|
+
ad as ResourceShow,
|
|
159
|
+
aj as ResourceUsageBar,
|
|
156
160
|
g as RestartCountColumnRenderer,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
161
|
+
c5 as SECRET_BASIC_AUTH_INIT_VALUE,
|
|
162
|
+
c8 as SECRET_CUSTOM_INIT_VALUE,
|
|
163
|
+
c4 as SECRET_IMAGE_REPO_INIT_VALUE,
|
|
164
|
+
c3 as SECRET_OPAQUE_INIT_VALUE,
|
|
165
|
+
c6 as SECRET_SSH_AUTH_INIT_VALUE,
|
|
166
|
+
c7 as SECRET_TLS_INIT_VALUE,
|
|
167
|
+
c1 as SERVER_INSTANCE_INIT_VALUE,
|
|
168
|
+
bV as SERVICE_CLUSTER_IP_INIT_VALUE,
|
|
169
|
+
bY as SERVICE_EXTERNAL_NAME_INIT_VALUE,
|
|
170
|
+
bZ as SERVICE_HEADLESS_INIT_VALUE,
|
|
171
|
+
bX as SERVICE_LOAD_BALANCER_INIT_VALUE,
|
|
172
|
+
bW as SERVICE_NODE_PORT_INIT_VALUE,
|
|
173
|
+
bT as STATEFULSET_INIT_VALUE,
|
|
174
|
+
ca as STORAGE_CLASS_INIT_VALUE,
|
|
175
|
+
bx as SchemaStrategy,
|
|
176
|
+
aB as SecretDataField,
|
|
177
|
+
b5 as SecretDataGroup,
|
|
178
|
+
aq as Separator,
|
|
175
179
|
l as ServiceInClusterAccessColumnRenderer,
|
|
176
|
-
|
|
180
|
+
bA as ServiceInClusterAccessComponent,
|
|
177
181
|
k as ServiceInClusterAccessTitle,
|
|
178
|
-
|
|
179
|
-
|
|
182
|
+
aN as ServiceInnerClusterAccessField,
|
|
183
|
+
cx as ServiceModel,
|
|
180
184
|
n as ServiceOutClusterAccessColumnRenderer,
|
|
181
|
-
|
|
182
|
-
|
|
185
|
+
bB as ServiceOutClusterAccessComponent,
|
|
186
|
+
aO as ServiceOutClusterAccessField,
|
|
183
187
|
m as ServiceOutClusterAccessTitle,
|
|
184
|
-
|
|
185
|
-
|
|
188
|
+
aG as ServicePodsField,
|
|
189
|
+
b3 as ServicePodsGroup,
|
|
186
190
|
i as ServiceTypeColumnRenderer,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
191
|
+
cw as ServiceTypeEnum,
|
|
192
|
+
aD as ServiceTypeField,
|
|
193
|
+
aF as SessionAffinityField,
|
|
194
|
+
bL as Shell,
|
|
195
|
+
bf as ShowContent,
|
|
196
|
+
be as ShowGroupComponent,
|
|
197
|
+
bK as SocketStatus,
|
|
198
|
+
aC as StartTimeField,
|
|
193
199
|
S as StateDisplayColumnRenderer,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
200
|
+
bj as StateTag,
|
|
201
|
+
bi as StateTagStyle,
|
|
202
|
+
cv as StatefulSetModel,
|
|
203
|
+
cA as StorageClassModel,
|
|
204
|
+
aS as StorageClassProvisionerField,
|
|
205
|
+
aT as StorageClassPvField,
|
|
206
|
+
bd as StorageClassPvGroup,
|
|
207
|
+
c2 as TIMESTAMP_LABEL,
|
|
208
|
+
bI as Tabs,
|
|
209
|
+
bC as Tags,
|
|
210
|
+
bD as TextTags,
|
|
205
211
|
a4 as Time,
|
|
206
212
|
U as ValueDisplay,
|
|
207
|
-
|
|
213
|
+
cn as WorkloadBaseModel,
|
|
208
214
|
a7 as WorkloadDropdown,
|
|
209
215
|
W as WorkloadImageColumnRenderer,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
216
|
+
cm as WorkloadModel,
|
|
217
|
+
ag as WorkloadPodsTable,
|
|
218
|
+
al as WorkloadReplicas,
|
|
219
|
+
ak as WorkloadReplicasForm,
|
|
214
220
|
e as WorkloadRestartsColumnRenderer,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
221
|
+
cb as WorkloadState,
|
|
222
|
+
ar as YamlEditorComponent,
|
|
223
|
+
by as YamlForm,
|
|
218
224
|
J as addDefaultRenderToColumns,
|
|
219
225
|
Y as dnsSubDomainRules,
|
|
220
226
|
d as dovetailRefineI18n,
|
|
221
|
-
|
|
227
|
+
cF as modelPlugin,
|
|
222
228
|
a0 as namespaceRules,
|
|
223
|
-
|
|
229
|
+
cH as relationPlugin,
|
|
224
230
|
_ as rfc1035LabelRules,
|
|
225
231
|
Z as rfc1123LabelRules,
|
|
226
232
|
r as routerProvider,
|
|
@@ -230,8 +236,8 @@ export {
|
|
|
230
236
|
O as useEdit,
|
|
231
237
|
Q as useGlobalStore,
|
|
232
238
|
u as useNamespaceRefineFilter,
|
|
233
|
-
|
|
239
|
+
br as useNamespacesFilter,
|
|
234
240
|
T as useOpenForm,
|
|
235
|
-
|
|
241
|
+
bz as useRefineForm,
|
|
236
242
|
a as useSchema
|
|
237
243
|
};
|