PHP K8s is a PHP handler for the Kubernetes Cluster API, helping you handling the individual Kubernetes resources directly from PHP, like viewing, creating, updating or deleting resources.
Renoki Co. on GitHub aims on bringing a lot of open source projects and helpful projects to the world. Developing and maintaining projects everyday is a harsh work and tho, we love it.
If you are using your application in your day-to-day job, on presentation demos, hobby projects or even school projects, spread some kind words about our work or sponsor our work. Kind words will touch our chakras and vibe, while the sponsorships will keep the open source projects alive.
This package is Work in Progress and while there is in active development, PRs are also welcomed. Please refer to the Resources Waitlist documentation and the PR List to know what's up for development.
You can install the package via composer:
composer require renoki-co/php-k8s
Having the following YAML configuratin for your Service kind:
apiVersion: v1
kind: Service
metadata:
name: nginx
namespace: frontend
spec:
selector:
app: frontend
ports:
- protocol: TCP
port: 80
targetPort: 80
Can be written like this:
use RenokiCo\PhpK8s\K8s;
use RenokiCo\PhpK8s\KubernetesCluster;
// Create a new instance of KubernetesCluster
$cluster = new KubernetesCluster('http://127.0.0.1', 8080);
// Create a new NGINX service.
$svc = K8s::service($cluster)
->setName('nginx')
->setNamespace('frontend')
->setSelectors(['app' => 'frontend'])
->setPorts([
['protocol' => 'TCP', 'port' => 80, 'targetPort' => 80],
])
->create();
Each existent resource has its own documentation, filled with examples.
Each kind has its own class from which you can build it and then create, update, replace or delete them.
In order to sync it with the cluster, you have to call the ->onCluster(...)
method, passing the instance of KubernetesCluster as the connection.
Alternatively, you can pass the cluster connection as the first parameter to the K8s
class:
$ns = K8s::namespace($cluster)
->setName('staging');
Getting all resources can be done by calling ->all()
:
$namespaces = K8s::namespace($cluster)->all();
The result is an RenokiCo\PhpK8s\ResourcesList
instance.
The class is extending the default \Illuminate\Support\Collection
, on which you can chain various methods as described here: https://laravel.com/docs/master/collections
Getting resources can be filtered if needed:
$stagingServices = K8s::service($cluster)
->whereNamespace('staging')
->all();
Getting only one resource is done by calling ->get()
:
$stagingNginxService =
K8s::service($cluster)
->whereNamespace('staging')
->whereName('nginx')
->get();
Filters can vary, depending if the resources are namespaceable or not.
By default, the namespace is default
and can be missed from the filters.
Calling the ->create()
method after building your Kind will sync it to the Cluster:
$ns = K8s::namespace()
->setName('staging')
->create();
$ns->isSynced(); // true
While Kubernetes has the ability to PATCH a resource or REPLACE it entirely, PHP K8s relies on REPLACE to update your resource since you have to retrieve it first (thus getting a synced class), edit it, then triggering the update.
$ns = K8s::configmap($cluster)
->whereName('env')
->get();
$ns->addData('API_KEY', '123')
$ns->update();
You will have to simply call ->delete()
on the resource, after you retrieve it.
$cm = K8s::configmap($cluster)
->whereName('settings')
->get();
$cm->delete(); // true
Additionally, you can pass query parameters, grace period and the propagation policy.
The defaults are:
delete(array $query = ['pretty' => 1], $gracePeriod = null, string $propagationPolicy = 'Foreground'
The ability to live track the Pods logs is also available and can be seen in the Pod Documentation
PHP K8s comes with a PHP-native way to be able to track the changes via the Kubernetes cluster's WATCH API.
You can watch the resource directly from the Resource class, and check & process your logic inside a closure. See more on Kubernetes Documentation about the live detection of resources.
The watch closures will run indifinitely until you return a true
or false
.
$pod = K8s::pod($cluster)
->whereName('mysql')
->get();
$pod->watch(function ($type, $pod) {
$resourceVersion = $pod->getResourceVersion();
return true;
});
Additionally, if you want to pass additional parameters like resourceVersion
, you can pass an array of query parameters alongside with the closure:
$pod = K8s::pod($cluster)
->whereName('mysql')
->get();
$pod->watch(function ($type, $pod) {
// Waiting for a change.
}, ['resourceVersion' => $pod->getResourceVersion()]);
To watch all resources instead of just one, watchAll
is available.
This time, you do not need to call any filter or retrieval, because there is nothing to filter:
// Create just a new K8sPod instance.
$pods = K8s::pod($cluster);
$success = $pods->watchAll(function ($type, $pod) {
if ($pod->getName() === 'nginx') {
// do something
return true;
}
});
// $success = true;
vendor/bin/phpunit
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.