forked from kubernetes-el/kubernetes-el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkubernetes.el
43 lines (31 loc) · 1.55 KB
/
kubernetes.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;;; kubernetes.el --- Magit-like porcelain for Kubernetes -*- lexical-binding: t; -*-
;; Copyright (C) 2017-2021 Chris Barrett
;; Author: Chris Barrett <[email protected]>
;; Maintainer: Chris Barrett <[email protected]>
;; Noorul Islam K M <[email protected]>
;; Jonathan Jin <[email protected]>
;; Version: 0.17.0
;; Homepage: https://github.com/kubernetes-el/kubernetes-el
;; Package-Requires: ((emacs "25.1") (dash "2.12.0") (magit-section "3.1.1") (magit-popup "2.13.0") (with-editor "3.0.4") (request "0.3.2") (s "1.12.0") (transient "0.3.0"))
;; Keywords: kubernetes
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; kubernetes-el is a text-based, interactive management interface for managing
;; Kubernetes clusters within Emacs.
;;; Code:
(require 'kubernetes-commands)
(require 'kubernetes-labels)
(require 'kubernetes-logs)
(require 'kubernetes-overview)
(require 'kubernetes-el-tramp)
(provide 'kubernetes)
;;; kubernetes.el ends here