You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,41 @@ Kaptn is a fully downloadable desktop application that provides a user-friendly
41
41
- Troubleshoot any confusion with the Instant Help Desk
42
42
- Follow tutorials and master K8s with our Learning Center
43
43
44
+
## Updates
45
+
46
+
Version 1.2.0 -
47
+
48
+
- Adds ability to use kubectl commands without choosing a working directory.
49
+
50
+
Version 1.1.0 -
51
+
52
+
-**_Now available for Mac, Windows, and Linux_**
53
+
54
+
-**Cluster Metrics Visualizer:**
55
+
Easily sync your Kaptn workspace to Grafana and Prometheus to allow for clear and real-time visualization of your clusters' health. Utilize our quick set-up if you are not already connected, and consider Kaptn your only stop for working with and monitoring your Kubernetes clusters.
56
+
57
+
-**Instant Help Desk:**
58
+
Get help information on demand and at the click of a button with the Instant Help Desk. Now you can get more info about any command or type without leaving the command line, and losing the code you've already written.
59
+
60
+
-**Kaptn Learning Center:**
61
+
Inside the Easy Setup page you can now find the Learning Center with resources you need to learn Kubernetes. You can follow tutorials, read articles and documentation, and master Kubernetes faster than ever.
62
+
63
+
-**Light/Dark Mode:**
64
+
Whether it's eye strain, or just personal preference, we know engineers can be selective about their work environments. So we created a Light/Dark mode that allows you to work with your favorite color combination. Now you can focus on coding with no distractions to your workflow.
65
+
66
+
This update also includes various bugs fixes, including:
67
+
68
+
- Bug where kubectl commands could not be used on some Mac operating systems.
69
+
70
+
#
71
+
44
72
## Getting Started
45
73
46
74
1. Download the latest release [here](https://github.com/oslabs-beta/kaptn/releases).
47
75
2. Run the installer.
48
76
49
77
If you get a warning that the app is from an unidentified developer, go to System Preferences > Security & Privacy > General and click "Open Anyway".
50
78
51
-
\*Please note, login functionality is currently disabled. Instead, please continue as guest to access all features of Kaptn.
// Handle successful command execution but returned error (stderr)
57
-
if(stderr){
58
-
// dialog.showErrorBox('Success execute, still error:', `${stderr}`);
59
-
returnevent.sender.send('post_command',stderr);
60
-
}
61
-
// Handle successful command execution with no errors
62
-
returnevent.sender.send('post_command',stdout);
63
-
});
40
+
// if kubectl command is entered with no directory chosen, use ZDOTDIR as directory address when calling exec command --- otherwise ("else" on line 64) submit command normally
0 commit comments