You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type KfApps struct {
Children map[string]KfApp
}
type kfApp struct {
kftypes.KfApps
Client *cltypes.Client
}
where currently Ksonnet, Gcp, Minikube and other types implementing KfApp are added to
the Children member. Ksonnet is added as "none" based on legacy code in kfctl.sh.
We should redefine this to be:
type KfApps struct {
Platforms map[string]KfApp
PackageManagers map[string]KfApp
}
type kfApp struct {
kftypes.KfApps
Client *cltypes.Client
}
This would then be used to cleanly separate platforms from package managers.
The text was updated successfully, but these errors were encountered:
The kfctl Client is defined as
where currently Ksonnet, Gcp, Minikube and other types implementing KfApp are added to
the Children member. Ksonnet is added as "none" based on legacy code in kfctl.sh.
We should redefine this to be:
This would then be used to cleanly separate platforms from package managers.
The text was updated successfully, but these errors were encountered: