Skip to content

Commit

Permalink
feat: add embeddedcluster.replicated.com/v1beta1 as kots kind
Browse files Browse the repository at this point in the history
objects of this kind should not be created in the cluster as they
don't have a crd representation.
  • Loading branch information
ricardomaraschini committed Oct 16, 2023
1 parent d673a3e commit 2cabb11
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/kotsutil/kots.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ func IsKotsKind(apiVersion string, kind string) bool {
if apiVersion == "kurl.sh/v1beta1" {
return true
}
if apiVersion == "embeddedcluster.replicated.com/v1beta1" {
return true
}
// In addition to kotskinds, we exclude the application crd for now
if apiVersion == "app.k8s.io/v1beta1" {
return true
Expand Down

0 comments on commit 2cabb11

Please sign in to comment.