Skip to content

build(deps): bump flame_k8s_backend from 0.5.7 to 0.6.0#504

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/hex/flame_k8s_backend-0.6.0
Open

build(deps): bump flame_k8s_backend from 0.5.7 to 0.6.0#504
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/hex/flame_k8s_backend-0.6.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Bumps flame_k8s_backend from 0.5.7 to 0.6.0.

Release notes

Sourced from flame_k8s_backend's releases.

v0.6.0

This release revamps the runner pod manifest configuration. The migration steps depend on the value you are currently passing:

  • If you are currently passing a map or a callback to :runner_pod_tpl, you can simply rename the option to :manifest and it should maintain the current behaviour.

  • If you are using %FLAMEK8sBackend.RunnerPodTemplate{} with :env and/or :resources fields, you need to convert it into a manifest map.

    manifest = %{
      "spec" => %{
        "containers" => [
          %{
            "env" => [
              %{"name" => "FOO", "value" => "bar"}
            ],
            "resources" => %{
              "requests" => %{"memory" => "256Mi", "cpu" => "100m"},
              "limits" => %{"memory" => "256Mi", "cpu" => "400m"}
            }
          }
        ]
      }
    }
    {FLAME.Pool,
    name: MyApp.SamplePool,
    backend: {FLAMEK8sBackend, manifest: manifest}}

    Note that, by default, using %FLAMEK8sBackend.RunnerPodTemplate{} implied that envs and resources were copied from the parent pod. If you want to maintain that behaviour, you can use a manifest function, as fallows:

      manifest_fun = fn parent_pod_manifest, app_container ->
        %{
          "spec" => %{
            "containers" => [
              %{
                # Copy env vars and resources from the parent container definition.
                # For fields that you don't want to copy, you can specify the desired
                # values here.
                "env" => app_container["env"] || [],
                "envFrom" => app_container["envFrom"] || [],
                "resources" => app_container["resources"] || %{}
              }
            ]
          }
        }
      end
    {FLAME.Pool,
    

... (truncated)

Changelog

Sourced from flame_k8s_backend's changelog.

[0.6.0] - 2026-03-06

This release revamps the runner pod manifest configuration. The migration steps depend on the value you are currently passing:

  • If you are currently passing a map or a callback to :runner_pod_tpl, you can simply rename the option to :manifest and it should maintain the current behaviour.

  • If you are using %FLAMEK8sBackend.RunnerPodTemplate{} with :env and/or :resources fields, you need to convert it into a manifest map.

    manifest = %{
      "spec" => %{
        "containers" => [
          %{
            "env" => [
              %{"name" => "FOO", "value" => "bar"}
            ],
            "resources" => %{
              "requests" => %{"memory" => "256Mi", "cpu" => "100m"},
              "limits" => %{"memory" => "256Mi", "cpu" => "400m"}
            }
          }
        ]
      }
    }
    {FLAME.Pool,
    name: MyApp.SamplePool,
    backend: {FLAMEK8sBackend, manifest: manifest}}

    Note that, by default, using %FLAMEK8sBackend.RunnerPodTemplate{} implied that envs and resources were copied from the parent pod. If you want to maintain that behaviour, you can use a manifest function, as fallows:

      manifest_fun = fn parent_pod_manifest, app_container ->
        %{
          "spec" => %{
            "containers" => [
              %{
                # Copy env vars and resources from the parent container definition.
                # For fields that you don't want to copy, you can specify the desired
                # values here.
                "env" => app_container["env"] || [],
                "envFrom" => app_container["envFrom"] || [],
                "resources" => app_container["resources"] || %{}
              }
            ]
          }
        }
      end

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [flame_k8s_backend](https://github.com/mruoss/flame_k8s_backend) from 0.5.7 to 0.6.0.
- [Release notes](https://github.com/mruoss/flame_k8s_backend/releases)
- [Changelog](https://github.com/mruoss/flame_k8s_backend/blob/main/CHANGELOG.md)
- [Commits](mruoss/flame_k8s_backend@v0.5.7...v0.6.0)

---
updated-dependencies:
- dependency-name: flame_k8s_backend
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file elixir Pull requests that update Elixir code labels Mar 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file elixir Pull requests that update Elixir code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants