Skip to content

0.12.30

Compare
Choose a tag to compare
@eysi09 eysi09 released this 05 Nov 20:43

Garden 0.12.30 is out! 🎉

This release primarily contains bug fixes, but also adds a new feature—timeouts for container services.

Happy hacking!

timeout option for container services

This had been requested by a few users in our community. The deployment timeout for container services can now be configured:

kind: Module
name: api
type: container
services:
  - name: api
    timeout: 500 # This increases the timeout from the default (300 seconds) to 500 seconds
    ...

Make deployment logic compatible with the latest Kubernetes version (1.22)

This fixes an issue when using newer versions of kubectl with older cluster versions, which was causing deployments
to fail on Kubernetes versions that didn't support the extensions/v1beta1/Ingress batch/v1beta1/CronJob API
versions.

Changelog

Bug Fixes

  • container: propagate privileged flag (58cb5715)
  • k8s: backwards-compatible deployment logic (b960b9c6)
  • k8s: fix casing in ingress spec (827ba407)
  • k8s: use module ns in getServiceResource (62dadfcc)
  • k8s: validation fix in serviceResource schema (f070729a)

Features

  • k8s: add timeout to container services (2927fa5b)