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
The cluster configuration can be found in the `config/k8s.php` file. You can get started directly with the `/.kube/config` file you already have.
37
+
38
+
```php
39
+
use RenokiCo\LaravelK8s\LaravelK8sFacade;
40
+
41
+
foreach (LaravelK8sFacade::getAllConfigMaps() as $cm) {
42
+
// $cm->getName();
43
+
}
44
+
```
45
+
46
+
For further documentation, check [renoki-co/php-k8s](https://github.com/renoki-co/php-k8s).
47
+
48
+
## Multiple connections
49
+
50
+
The package supports multiple connections configurations. If you wish to select a specific one (not the default one), call `connection` before getting the cluster.
0 commit comments