astonishing-tomato-18259
06/22/2023, 3:42 PMmanifests/deployment.yml
and i want to use that manifest file for kubernetes deploy action.microscopic-river-74022
06/22/2023, 3:42 PMfiles
directive in your Garden configuration. In your case, with the manifest file located at manifests/deployment.yml
, you can configure the deploy action like this:
yaml
kind: Deploy
type: kubernetes
name: your-deploy-name
spec:
files:
- manifests/deployment.yml
This will tell Garden to use the manifests/deployment.yml
file for the Kubernetes deploy action. For more information, refer to the Garden documentation on referencing manifests ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------