Skip to content

24.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Feb 11:16
· 112 commits to master since this release

Features

  • ${{ project.project_name }} now also configures volume's remote path and image reference if the project name was not set.

    If you do not have project_name set in project.yaml, the volume paths are assumed within your current project configured in CLI.
    However, if you set project_name, this project will be assumed while managing jobs, bakes, volumes, building images etc. within this flow. (#1081)

  • Added support of extra Kaniko arguments while building an image:

    images:
      image_a:
        ref: image:imagea
        context: dir
        dockerfile: dir/Dockerfile
        extra_kaniko_args: >-
          --reproducible
          --cache-ttl=1h
          --single-snapshot
    

    More details on available arguments could be found in official Kaniko documentation. (#1110)