HelmAccess

Access to a Helm chart

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
helmRepository string Helm repository URL
helmChart string Chart name and version
caCert string
keyring string
View JSON Schema on GitHub

JSON Schema

application-research-helmaccess-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HelmAccess",
  "title": "HelmAccess",
  "type": "object",
  "description": "Access to a Helm chart",
  "required": [
    "type",
    "helmRepository",
    "helmChart"
  ],
  "properties": {
    "type": {
      "const": "helm"
    },
    "helmRepository": {
      "type": "string",
      "description": "Helm repository URL"
    },
    "helmChart": {
      "type": "string",
      "description": "Chart name and version"
    },
    "caCert": {
      "type": "string"
    },
    "keyring": {
      "type": "string"
    }
  }
}