* postflight db-migration-check implemented, docs updated * fixed typo: changed kube-version to k8s-version
17 lines
288 B
Go
17 lines
288 B
Go
package postflight
|
|
|
|
import (
|
|
"github.com/qlik-oss/sense-installer/pkg/api"
|
|
"github.com/qlik-oss/sense-installer/pkg/qliksense"
|
|
)
|
|
|
|
type PostflightOptions struct {
|
|
Verbose bool
|
|
}
|
|
|
|
type QliksensePostflight struct {
|
|
Q *qliksense.Qliksense
|
|
P *PostflightOptions
|
|
CG *api.ClientGoUtils
|
|
}
|