Skip to content

Releases: renoki-co/laravel-php-k8s

3.4.0

10 Feb 01:20
85f45c3
Compare
Choose a tag to compare
  • Laravel 9.x (#33)
    • Dropped PHP 7.3, 7.4
    • Dropped Laravel 7.x

3.3.0

14 Jan 20:19
a59b324
Compare
Choose a tag to compare
  • Updated minimum PHP K8s package (#30)

3.2.1

27 Dec 18:14
aae225d
Compare
Choose a tag to compare
  • Patching Pawl package (#27)

3.2.0

19 Dec 16:27
60bc377
Compare
Choose a tag to compare
  • Updated main PHP K8s package to support webhooks (#24)

3.1.1

16 Nov 14:56
963510e
Compare
Choose a tag to compare
  • Added host support for inClusterConfiguration (#22)

3.1.0

15 Sep 11:34
Compare
Choose a tag to compare

3.0.0

05 Sep 18:57
8255d39
Compare
Choose a tag to compare

Upgraded PHP K8s to ^3.0 (#10)

PHP K8s 3.x adds support for better authentication (code-speaking), templated YAMLs and IDE improvements.

Please read the renoki-co/php-k8s 3.x release notes before upgrading to this version.

Added variable driver for the KUBECONFIG driver

You can add the environment driver in your config/k8s.php file:

return [

        // ...

        /*
        |--------------------------------------------------------------------------
        | Environment Variable Driver
        |--------------------------------------------------------------------------
        |
        | The environment variable driver leverages your current (possibly set)
        | KUBECONFIG environment variable. The variable contains a list of paths
        | towards multiple kubeconfig files that will be read, merged and based
        | on the selected context from the configuration, it will connect
        | to the cluster, just like the "kubeconfig" driver.
        |
        | Read more: https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/
        |
        */

        'environment' => [
            'driver' => 'environment',
            'context' => env('KUBECONFIG_CONTEXT', 'minikube'),
        ],
];

2.3.0

06 Apr 20:49
Compare
Choose a tag to compare
  • Laravel Octane support

2.1.2

24 Mar 09:45
Compare
Choose a tag to compare
  • Fixed in-cluster config accessing the wrong host (9147d9a)

2.1.1

22 Mar 21:56
043e664
Compare
Choose a tag to compare
Laravel Zero extra discovery