HelmInput

Helm chart input

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
path string
version string
helmRepository string
repository string
caCertFile string
caCert string
View JSON Schema on GitHub

JSON Schema

application-research-helminput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HelmInput",
  "title": "HelmInput",
  "type": "object",
  "description": "Helm chart input",
  "required": [
    "type",
    "path"
  ],
  "properties": {
    "type": {
      "const": "helm"
    },
    "path": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "helmRepository": {
      "type": "string"
    },
    "repository": {
      "type": "string"
    },
    "caCertFile": {
      "type": "string"
    },
    "caCert": {
      "type": "string"
    }
  }
}