Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix processing airgap bundle images #4390

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 24 additions & 42 deletions pkg/apparchive/helm-v1beta2.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@ import (
"github.com/pkg/errors"
"github.com/replicatedhq/kots/pkg/base"
"github.com/replicatedhq/kots/pkg/docker/registry"
dockerregistrytypes "github.com/replicatedhq/kots/pkg/docker/registry/types"
"github.com/replicatedhq/kots/pkg/image"
imagetypes "github.com/replicatedhq/kots/pkg/image/types"
"github.com/replicatedhq/kots/pkg/kotsutil"
"github.com/replicatedhq/kots/pkg/logger"
"github.com/replicatedhq/kots/pkg/midstream"
upstreamtypes "github.com/replicatedhq/kots/pkg/upstream/types"
"github.com/replicatedhq/kots/pkg/util"
kotsv1beta1 "github.com/replicatedhq/kotskinds/apis/kots/v1beta1"
kotsv1beta2 "github.com/replicatedhq/kotskinds/apis/kots/v1beta2"
"gopkg.in/yaml.v2"
"helm.sh/helm/v3/pkg/action"
Expand Down Expand Up @@ -68,7 +66,7 @@ type WriteV1Beta2HelmChartsOptions struct {
Upstream *upstreamtypes.Upstream
WriteUpstreamOptions upstreamtypes.WriteOptions
RenderOptions *base.RenderOptions
ProcessImageOptions image.ProcessImageOptions
ProcessImageOptions imagetypes.ProcessImageOptions
KotsKinds *kotsutil.KotsKinds
Clientset kubernetes.Interface
}
Expand All @@ -83,8 +81,6 @@ func WriteV1Beta2HelmCharts(opts WriteV1Beta2HelmChartsOptions) error {
return nil
}

checkedImages := []kotsv1beta1.InstallationImage{}

for _, v1Beta2Chart := range opts.KotsKinds.V1Beta2HelmCharts.Items {
helmChart := v1Beta2Chart

Expand Down Expand Up @@ -158,20 +154,9 @@ func WriteV1Beta2HelmCharts(opts WriteV1Beta2HelmChartsOptions) error {
continue
}

result, err := processV1Beta2HelmChartImages(opts, &helmChart, chartDir)
if err != nil {
if err := processOnlineV1Beta2HelmChartImages(opts, &helmChart, chartDir); err != nil {
return errors.Wrap(err, "failed to process online images")
}

checkedImages = append(checkedImages, result.CheckedImages...)
}

if len(checkedImages) > 0 {
opts.KotsKinds.Installation.Spec.KnownImages = append(opts.KotsKinds.Installation.Spec.KnownImages, checkedImages...)

if err := kotsutil.SaveInstallation(&opts.KotsKinds.Installation, opts.Upstream.GetUpstreamDir(opts.WriteUpstreamOptions)); err != nil {
return errors.Wrap(err, "failed to save installation")
}
}

return nil
Expand All @@ -183,7 +168,7 @@ type WriteRenderedV1Beta2HelmChartsOptions struct {
Log *logger.CLILogger
Downstreams []string
KotsKinds *kotsutil.KotsKinds
ProcessImageOptions image.ProcessImageOptions
ProcessImageOptions imagetypes.ProcessImageOptions
}

// WriteRenderedV1Beta2HelmCharts writes the rendered v1beta2 helm charts to the rendered directory for diffing
Expand Down Expand Up @@ -279,36 +264,36 @@ func templateV1Beta2HelmChartWithValuesToDir(helmChart *kotsv1beta2.HelmChart, c
return nil
}

func processV1Beta2HelmChartImages(opts WriteV1Beta2HelmChartsOptions, helmChart *kotsv1beta2.HelmChart, chartDir string) (*base.RewriteImagesResult, error) {
func processOnlineV1Beta2HelmChartImages(opts WriteV1Beta2HelmChartsOptions, helmChart *kotsv1beta2.HelmChart, chartDir string) error {
// template the chart with the builder values to a temp dir and then process images
tmpDir, err := os.MkdirTemp("", fmt.Sprintf("kots-images-%s", helmChart.GetDirName()))
if err != nil {
return nil, errors.Wrap(err, "failed to create temp dir for image processing")
return errors.Wrap(err, "failed to create temp dir for image processing")
}
defer os.RemoveAll(tmpDir)

builderHelmValues, err := helmChart.GetBuilderValues()
if err != nil {
return nil, errors.Wrap(err, "failed to get builder values for chart")
return errors.Wrap(err, "failed to get builder values for chart")
}

builderValuesContent, err := yaml.Marshal(builderHelmValues)
if err != nil {
return nil, errors.Wrap(err, "failed to marshal builder values")
return errors.Wrap(err, "failed to marshal builder values")
}

builderValuesPath := path.Join(tmpDir, "builder-values.yaml")
if err := os.WriteFile(builderValuesPath, builderValuesContent, 0644); err != nil {
return nil, errors.Wrap(err, "failed to write builder values file")
return errors.Wrap(err, "failed to write builder values file")
}

templatedOutputDir := path.Join(tmpDir, helmChart.GetDirName())
if err := os.Mkdir(templatedOutputDir, 0755); err != nil {
return nil, errors.Wrap(err, "failed to create temp dir for image processing")
return errors.Wrap(err, "failed to create temp dir for image processing")
}

if err := templateV1Beta2HelmChartWithValuesToDir(helmChart, chartDir, builderValuesPath, templatedOutputDir, opts.RenderOptions.Log.Debug); err != nil {
return nil, errors.Wrap(err, "failed to template helm chart for image processing")
return errors.Wrap(err, "failed to template helm chart for image processing")
}

var dockerHubRegistryCreds registry.Credentials
Expand All @@ -317,27 +302,24 @@ func processV1Beta2HelmChartImages(opts WriteV1Beta2HelmChartsOptions, helmChart
dockerHubRegistryCreds, _ = registry.GetCredentialsForRegistryFromConfigJSON(dockerhubSecret.Data[".dockerconfigjson"], registry.DockerHubRegistryName)
}

destRegistry := &dockerregistrytypes.RegistryOptions{
Endpoint: opts.ProcessImageOptions.RegistrySettings.Hostname,
Namespace: opts.ProcessImageOptions.RegistrySettings.Namespace,
Username: opts.ProcessImageOptions.RegistrySettings.Username,
Password: opts.ProcessImageOptions.RegistrySettings.Password,
}

baseImages, err := image.FindImagesInDir(templatedOutputDir)
chartImages, err := image.FindImagesInDir(templatedOutputDir)
if err != nil {
return nil, errors.Wrap(err, "failed to find base images")
return errors.Wrap(err, "failed to find base images")
}

kotsKindsImages, err := kotsutil.GetImagesFromKotsKinds(opts.KotsKinds, destRegistry)
if err != nil {
return nil, errors.Wrap(err, "failed to get images from kots kinds")
if err := image.UpdateInstallationImages(image.UpdateInstallationImagesOptions{
Images: chartImages,
KotsKinds: opts.KotsKinds,
IsAirgap: opts.ProcessImageOptions.IsAirgap,
UpstreamDir: opts.Upstream.GetUpstreamDir(opts.WriteUpstreamOptions),
DockerHubRegistryCreds: dockerHubRegistryCreds,
}); err != nil {
return errors.Wrap(err, "failed to update installation images")
}

result, err := midstream.RewriteBaseImages(opts.ProcessImageOptions, baseImages, kotsKindsImages, opts.KotsKinds, opts.KotsKinds.License, dockerHubRegistryCreds, opts.RenderOptions.Log)
if err != nil {
return nil, errors.Wrap(err, "failed to rewrite base images")
if err := image.CopyOnlineImages(opts.ProcessImageOptions, chartImages, opts.KotsKinds, opts.KotsKinds.License, dockerHubRegistryCreds, opts.RenderOptions.Log); err != nil {
return errors.Wrap(err, "failed to rewrite base images")
}

return result, nil
return nil
}
36 changes: 36 additions & 0 deletions pkg/archives/archives.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,42 @@ func ExtractTGZArchiveFromFile(tgzFile string, destDir string) error {
return nil
}

func DirExistsInAirgap(dirToCheck string, archive string) (bool, error) {
fileReader, err := os.Open(archive)
if err != nil {
return false, errors.Wrap(err, "failed to open file")
}
defer fileReader.Close()

gzipReader, err := gzip.NewReader(fileReader)
if err != nil {
return false, errors.Wrap(err, "failed to get new gzip reader")
}
defer gzipReader.Close()

tarReader := tar.NewReader(gzipReader)
for {
header, err := tarReader.Next()
if err == io.EOF {
break
}
if err != nil {
return false, errors.Wrap(err, "failed to get read archive")
}

if header.Typeflag != tar.TypeDir {
continue
}
if header.Name != dirToCheck {
continue
}

return true, nil
}

return false, nil
}

func GetFileFromAirgap(fileToGet string, archive string) ([]byte, error) {
fileReader, err := os.Open(archive)
if err != nil {
Expand Down
95 changes: 0 additions & 95 deletions pkg/base/airgap.go

This file was deleted.

57 changes: 0 additions & 57 deletions pkg/base/airgap_test.go

This file was deleted.

Loading
Loading