clean-kite-99549
07/21/2023, 2:18 PM--set \.garden.mode
in the helm deploy actionmicroscopic-river-74022
07/21/2023, 2:18 PM--set \.garden.mode
in the helm deploy action. However, Garden does provide a way to disable actions or tests. You can disable actions by setting disabled: true
in the action config file. You can also disable it conditionally using template strings. For example:
yaml
kind: Deploy
description: Postgres container for storing voting results
type: helm
name: db
disabled: ${environment.name == "prod"}
In this example, the action is disabled if the environment name is "prod".
For more specific information about disabling --set \.garden.mode
in the helm deploy action, you may want to refer to the official Garden documentation or their GitHub issues page.
Sources:
- Garden Documentation - Using Garden Actions ()
- Garden Documentation - Conftest Helm ()
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------