Kubernetes is a powerful tool, but configuring with it and working with the various commands can be complex and tedious. Psykube aims to make your application configuration more concise and to make interacting with your application more simple and PaaS-like.
-
Combine configuration of various files into one simplified manifest.
-
Easily assign schedule
CronJobsfor your application. -
Easily specify different pieces of configuration for different clusters.
-
Build, Push, and Apply in a single command.
psykube apply
-
execinto an application pod without looking up aPodname.psykube exec
-
port-forwarda port without looking up aPodname.psykube port-forward
-
Specify
Jobsfor your application and run them easily from the command line.psykube run-job migrate
-
Easily understand the status of your application.
psykube status
-
Tail the logs of all the running pods in your application.
psykube logs
curl -fsSL https://raw.githubusercontent.com/psykube/psykube/master/travis.sh | bashTo get started, run psykube init inside your project. For details on how to
configure the manifest, see documentation/configuration.
Use psykube apply to build the docker image, push it to the specified registry,
and apply the generated kubernetes manifests. Psykube will ensure that the generated
manifests are properly linked together. A typical application may include:
-
A Deployment for the application.
-
A ConfigMap to hold configuration.
-
A Secret to hold sensitive information.
-
A Service to expose the application to the cluster.
-
An Ingress to expose the application to the internet.
Psykube makes things simple, but due to the sheer amount of use cases it covers, you can read more in the documentation section in docs.