Add documentation for kind string constants
Signed-off-by: Philip Laine <philip.laine@xenit.se>
This commit is contained in:
parent
c0ee546ce8
commit
0596513afd
|
@ -23,6 +23,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// BucketKind is the string representation of a Bucket.
|
||||||
BucketKind = "Bucket"
|
BucketKind = "Bucket"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// GitRepositoryKind is the string representation of a GitRepository.
|
||||||
GitRepositoryKind = "GitRepository"
|
GitRepositoryKind = "GitRepository"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ import (
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// HelmChartKind is the string representation of a HelmChart.
|
||||||
const HelmChartKind = "HelmChart"
|
const HelmChartKind = "HelmChart"
|
||||||
|
|
||||||
// HelmChartSpec defines the desired state of a Helm chart.
|
// HelmChartSpec defines the desired state of a Helm chart.
|
||||||
|
|
Loading…
Reference in New Issue