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