hey can I disable `--set \.garden.mode` in the he...
# 🤖|ask-kapa
c
hey @microscopic-river-74022 can I disable
--set \.garden.mode
in the helm deploy action
m
Please stand by @clean-kite-99549 as I search the knowledge base. We are experiencing especially high traffic right now and might take longer than usual. :wave:
---------------------- Based on the information provided in the extracts, there is no direct mention of disabling
--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:
Copy code
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: ----------------------