package
Version:
v0.0.0-...-c4207ce
Opens a new window with list of versions in this module.
Published: Dec 5, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 2
Opens a new window with list of known importers.
Documentation
¶
type Helm struct {
Repo []Repo `json:"repo"`
Release []Release `json:"release"`
}
type Kubernetes struct {
Nodes []Node `json:"nodes"`
Workloads map[string]interface{} `json:"workloads"`
}
type Node struct {
Name interface{} `json:"name,omitempty"`
Labels interface{} `json:"labels,omitempty"`
Addresses interface{} `json:"addresses,omitempty"`
NodeInfo interface{} `json:"nodeinfo,omitempty"`
}
type Release struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
Revision int `json:"revision"`
Updated time.Time `json:"updated"`
Status string `json:"status"`
ChartNameVersion string `json:"chart"`
AppVersion string `json:"app_version"`
}
type Repo struct {
Name string `json:"name"`
URL string `json:"url"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.