Hi there,
We’ve been in the process of doing helm 3 updates. I’m encountering an error that I can’t seem to sort out.
Running plugin DeployToDev
Failed to prepare plugin. Validation error
should NOT have additional properties
keyword:additionalProperties
schema path: #/additionalProperties
params:
additionalProperty:custom_values_file
[SYSTEM]
Message Validation error
I’m not sure how the custom_values_file is not valid when it’s part of the arguments for install: action and type is helm. The documentation shows examples with its use.
DeployToDev:
title: Deploy to dev environment
type: helm
stage: deploy
working_directory: ./app
arguments:
action: install
chart_name: infrastructure/app
helm_version: 3.2.4
release_name: my-release
namespace: recos
kube_context: our-cluster
custom_values_file: 'infrastructure/app/values.yaml'
custom_values:
- 'app_image_tag=${{CF_BRANCH_TAG_NORMALIZED}}-${{CF_SHORT_REVISION}}'
- 'frontend_image_tag=${{CF_BRANCH_TAG_NORMALIZED}}-${{CF_SHORT_REVISION}}'