mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
feat(oci): oci helm support [r8s-361] (#787)
This commit is contained in:
parent
b6a6ce9aaf
commit
2697d6c5d7
80 changed files with 4264 additions and 812 deletions
|
@ -45,6 +45,8 @@ type Release struct {
|
|||
// Labels of the release.
|
||||
// Disabled encoding into Json cause labels are stored in storage driver metadata field.
|
||||
Labels map[string]string `json:"-"`
|
||||
// ChartReference are the labels that are used to identify the chart source.
|
||||
ChartReference ChartReference `json:"chartReference,omitempty"`
|
||||
// Values are the values used to deploy the chart.
|
||||
Values Values `json:"values,omitempty"`
|
||||
}
|
||||
|
@ -54,6 +56,12 @@ type Values struct {
|
|||
ComputedValues string `json:"computedValues,omitempty"`
|
||||
}
|
||||
|
||||
type ChartReference struct {
|
||||
ChartPath string `json:"chartPath,omitempty"`
|
||||
RepoURL string `json:"repoURL,omitempty"`
|
||||
RegistryID int64 `json:"registryID,omitempty"`
|
||||
}
|
||||
|
||||
// Chart is a helm package that contains metadata, a default config, zero or more
|
||||
// optionally parameterizable templates, and zero or more charts (dependencies).
|
||||
type Chart struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue