We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
harness-application will automatically create a deploy folder containing a values.yaml file.
harness-application
deploy
values.yaml
Example path: applications/my-app/deploy/values.yaml
applications/my-app/deploy/values.yaml
The values.yaml can be used to configure your application.
A resource must be present as a file in a resources folder inside the deploy folder.
resources
Resources will be mounted in the container at a specific path at deployment time.
Currently, we support json and yaml resource files.
json
yaml
Resources are defined at harness.resources. Each resource must consist of a name, a src path and a dst path.
harness.resources
name
src
dst
Example
harness: ... resources: - name: my-config src: "myConfig.json" dst: "/tmp/resources/myConfig.json" - name: example src: "example.yaml" dst: "/usr/src/app/important_config.yaml"