syntax = "proto3"; package hapi.chart; import "hapi/chart/config.proto"; import "hapi/chart/metadata.proto"; import "hapi/chart/template.proto"; import "google/protobuf/any.proto"; option go_package = "chart"; // Chart is a helm package that contains metadata, a default config, zero or more // optionally parameterizable templates, and zero or more charts (dependencies). message Chart { // Contents of the Chartfile. hapi.chart.Metadata metadata = 1; // Templates for this chart. repeated hapi.chart.Template templates = 2; // Charts that this chart depends on. repeated Chart dependencies = 3; // Default config for this template. hapi.chart.Config values = 4; // Miscellaneous files in a chart archive, // e.g. README, LICENSE, etc. repeated google.protobuf.Any files = 5; }