mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* feat: new view for PriorityClass under Config menu Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Added priorityClassDetailItemInjectable Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Removed uneccessary defensive code Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
44 lines
1.5 KiB
TypeScript
44 lines
1.5 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// Kubernetes apis
|
|
// Docs: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.10/
|
|
|
|
export * from "./cluster.api";
|
|
export * from "./cluster-role.api";
|
|
export * from "./cluster-role-binding.api";
|
|
export * from "./config-map.api";
|
|
export * from "./custom-resource-definition.api";
|
|
export * from "./cron-job.api";
|
|
export * from "./daemon-set.api";
|
|
export * from "./deployment.api";
|
|
export * from "./endpoint.api";
|
|
export * from "./events.api";
|
|
export * from "./horizontal-pod-autoscaler.api";
|
|
export * from "./ingress.api";
|
|
export * from "./job.api";
|
|
export * from "./limit-range.api";
|
|
export * from "./namespace.api";
|
|
export * from "./network-policy.api";
|
|
export * from "./node.api";
|
|
export * from "./persistent-volume.api";
|
|
export * from "./persistent-volume-claim.api";
|
|
export * from "./pod.api";
|
|
export * from "./pod-disruption-budget.api";
|
|
export * from "./pod-metrics.api";
|
|
export * from "./pod-security-policy.api";
|
|
export * from "./priority-class.api";
|
|
export * from "./replica-set.api";
|
|
export * from "./resource-quota.api";
|
|
export * from "./role.api";
|
|
export * from "./role-binding.api";
|
|
export * from "./secret.api";
|
|
export * from "./self-subject-rules-reviews.api";
|
|
export * from "./service.api";
|
|
export * from "./service-account.api";
|
|
export * from "./stateful-set.api";
|
|
export * from "./storage-class.api";
|
|
export * from "./legacy-globals";
|