Skip to content

Commit 91e36ca

Browse files
[v1.22.x] enable --skip-tls-verify and --use-http for FBC run bundle and upgrade (#5953)
* modified run bundle install and upgrade flow for FBC that will honor --skip-tls-verify and --use-http flags Signed-off-by: laxmikantbpandhare <[email protected]> * added changelog Signed-off-by: laxmikantbpandhare <[email protected]> * handeled error properly Signed-off-by: laxmikantbpandhare <[email protected]> * removed comments Signed-off-by: laxmikantbpandhare <[email protected]> * removed duplicated code and worked on review comments Signed-off-by: laxmikantbpandhare <[email protected]> * added these two flags to FBCContext Signed-off-by: laxmikantbpandhare <[email protected]> * added these two flags to FBCContext Signed-off-by: laxmikantbpandhare <[email protected]> * worked on review comments Signed-off-by: laxmikantbpandhare <[email protected]> * added flags for FBC registry Signed-off-by: laxmikantbpandhare <[email protected]> * reverted changes Signed-off-by: laxmikantbpandhare <[email protected]> Co-authored-by: laxmikantbpandhare <[email protected]>
1 parent 46ab175 commit 91e36ca

File tree

4 files changed

+69
-18
lines changed

4 files changed

+69
-18
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# entries is a list of entries to include in
2+
# release notes and/or the migration guide
3+
entries:
4+
- description: >
5+
Honor `--skip-tls-verify` and `--use-http` flags from run bundle(-upgrade)
6+
7+
# kind is one of:
8+
# - addition
9+
# - change
10+
# - deprecation
11+
# - removal
12+
# - bugfix
13+
kind: "bugfix"
14+
15+
# Is this a breaking change?
16+
breaking: false
17+

internal/olm/fbcutil/util.go

+27-7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626
"github.com/operator-framework/operator-registry/alpha/declcfg"
2727
declarativeconfig "github.com/operator-framework/operator-registry/alpha/declcfg"
2828
"github.com/operator-framework/operator-registry/pkg/containertools"
29+
"github.com/operator-framework/operator-registry/pkg/image/containerdregistry"
2930
registryutil "github.com/operator-framework/operator-sdk/internal/registry"
3031
log "github.com/sirupsen/logrus"
3132
)
@@ -58,17 +59,19 @@ type BundleDeclcfg struct {
5859
// a new File-Based Catalog on the fly. The fields from this struct are passed as
5960
// parameters to Operator Registry API calls to generate declarative config objects.
6061
type FBCContext struct {
61-
Package string
62-
ChannelName string
63-
Refs []string
64-
ChannelEntry declarativeconfig.ChannelEntry
62+
Package string
63+
ChannelName string
64+
Refs []string
65+
ChannelEntry declarativeconfig.ChannelEntry
66+
SkipTLSVerify bool
67+
UseHTTP bool
6568
}
6669

6770
// CreateFBC generates an FBC by creating bundle, package and channel blobs.
6871
func (f *FBCContext) CreateFBC(ctx context.Context) (BundleDeclcfg, error) {
6972
var bundleDC BundleDeclcfg
7073
// Rendering the bundle image into a declarative config format.
71-
declcfg, err := RenderRefs(ctx, f.Refs)
74+
declcfg, err := RenderRefs(ctx, f.Refs, f.SkipTLSVerify, f.UseHTTP)
7275
if err != nil {
7376
return BundleDeclcfg{}, err
7477
}
@@ -120,11 +123,28 @@ func ValidateAndStringify(declcfg *declarativeconfig.DeclarativeConfig) (string,
120123
return buf.String(), nil
121124
}
122125

126+
func NullLogger() *log.Entry {
127+
logger := log.New()
128+
logger.SetOutput(ioutil.Discard)
129+
return log.NewEntry(logger)
130+
}
131+
123132
// RenderRefs will invoke Operator Registry APIs and return a declarative config object representation
124133
// of the references that are passed in as a string array.
125-
func RenderRefs(ctx context.Context, refs []string) (*declarativeconfig.DeclarativeConfig, error) {
134+
func RenderRefs(ctx context.Context, refs []string, skipTLSVerify bool, useHTTP bool) (*declarativeconfig.DeclarativeConfig, error) {
135+
136+
reg, err := containerdregistry.NewRegistry(
137+
containerdregistry.WithLog(NullLogger()),
138+
containerdregistry.SkipTLSVerify(skipTLSVerify),
139+
containerdregistry.WithPlainHTTP(useHTTP))
140+
141+
if err != nil {
142+
return nil, fmt.Errorf("error creating new image registry: %v", err)
143+
}
144+
126145
render := action.Render{
127-
Refs: refs,
146+
Refs: refs,
147+
Registry: reg,
128148
}
129149

130150
log.SetOutput(ioutil.Discard)

internal/olm/operator/bundle/install.go

+17-3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727
"github.com/operator-framework/api/pkg/operators/v1alpha1"
2828
"github.com/operator-framework/operator-registry/alpha/action"
2929
declarativeconfig "github.com/operator-framework/operator-registry/alpha/declcfg"
30+
"github.com/operator-framework/operator-registry/pkg/image/containerdregistry"
3031
registrybundle "github.com/operator-framework/operator-registry/pkg/lib/bundle"
3132
fbcutil "github.com/operator-framework/operator-sdk/internal/olm/fbcutil"
3233
"github.com/operator-framework/operator-sdk/internal/olm/operator"
@@ -120,6 +121,8 @@ func (i *Install) setup(ctx context.Context) error {
120121
ChannelEntry: declarativeconfig.ChannelEntry{
121122
Name: csv.Name,
122123
},
124+
SkipTLSVerify: i.SkipTLSVerify,
125+
UseHTTP: i.UseHTTP,
123126
}
124127

125128
if _, hasChannelMetadata := labels[registrybundle.ChannelsLabel]; hasChannelMetadata {
@@ -167,7 +170,7 @@ func generateFBCContent(ctx context.Context, f *fbcutil.FBCContext, bundleImage,
167170
if indexImage != fbcutil.DefaultIndexImage { // non-default index image was specified.
168171
// since an index image is specified, the bundle image will be added to the index image.
169172
// generateExtraFBC will ensure that the bundle is not already present in the index image and error out if it does.
170-
declcfg, err = generateExtraFBC(ctx, indexImage, bundleDeclcfg)
173+
declcfg, err = generateExtraFBC(ctx, indexImage, bundleDeclcfg, f.SkipTLSVerify, f.UseHTTP)
171174
if err != nil {
172175
return "", fmt.Errorf("error adding bundle image %q to index image %q: %v", bundleImage, indexImage, err)
173176
}
@@ -186,11 +189,22 @@ func generateFBCContent(ctx context.Context, f *fbcutil.FBCContext, bundleImage,
186189

187190
// generateExtraFBC verifies that a bundle is not already present on the index and if not, it renders the bundle contents into a
188191
// declarative config type.
189-
func generateExtraFBC(ctx context.Context, indexImage string, bundleDeclConfig fbcutil.BundleDeclcfg) (*declarativeconfig.DeclarativeConfig, error) {
192+
func generateExtraFBC(ctx context.Context, indexImage string, bundleDeclConfig fbcutil.BundleDeclcfg, skipTLSVerify bool, useHTTP bool) (*declarativeconfig.DeclarativeConfig, error) {
190193
log.Infof("Rendering a File-Based Catalog of the Index Image %q to verify if bundle %q is present", indexImage, bundleDeclConfig.Bundle.Name)
191194
log.SetOutput(ioutil.Discard)
195+
196+
reg, err := containerdregistry.NewRegistry(
197+
containerdregistry.WithLog(fbcutil.NullLogger()),
198+
containerdregistry.SkipTLSVerify(skipTLSVerify),
199+
containerdregistry.WithPlainHTTP(useHTTP))
200+
201+
if err != nil {
202+
return nil, fmt.Errorf("error creating new image registry: %v", err)
203+
}
204+
192205
render := action.Render{
193-
Refs: []string{indexImage},
206+
Refs: []string{indexImage},
207+
Registry: reg,
194208
}
195209

196210
imageDeclConfig, err := render.Run(ctx)

internal/olm/operator/registry/index_image.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ func getChannelHead(entries []declarativeconfig.ChannelEntry) (string, error) {
144144
}
145145

146146
// handleTraditionalUpgrade upgrades an operator that was installed using OLM. Subsequent upgrades will go through the runFBCUpgrade function
147-
func handleTraditionalUpgrade(ctx context.Context, indexImage string, bundleImage string, channelName string) (string, error) {
147+
func handleTraditionalUpgrade(ctx context.Context, indexImage string, bundleImage string, channelName string, skipTLSVerify bool, useHTTP bool) (string, error) {
148148
// render the index image
149-
originalDeclCfg, err := fbcutil.RenderRefs(ctx, []string{indexImage})
149+
originalDeclCfg, err := fbcutil.RenderRefs(ctx, []string{indexImage}, skipTLSVerify, useHTTP)
150150
if err != nil {
151151
return "", fmt.Errorf("error rendering index %q", indexImage)
152152
}
153153

154154
// render the bundle image
155-
bundleDeclConfig, err := fbcutil.RenderRefs(ctx, []string{bundleImage})
155+
bundleDeclConfig, err := fbcutil.RenderRefs(ctx, []string{bundleImage}, skipTLSVerify, useHTTP)
156156
if err != nil {
157157
return "", fmt.Errorf("error rendering bundle image %q", bundleImage)
158158
}
@@ -201,7 +201,7 @@ func (c *IndexImageCatalogCreator) runFBCUpgrade(ctx context.Context) error {
201201
refs = append(refs, c.IndexImage)
202202
}
203203

204-
originalDeclcfg, err := fbcutil.RenderRefs(ctx, refs)
204+
originalDeclcfg, err := fbcutil.RenderRefs(ctx, refs, c.SkipTLSVerify, c.UseHTTP)
205205
if err != nil {
206206
return err
207207
}
@@ -215,7 +215,7 @@ func (c *IndexImageCatalogCreator) runFBCUpgrade(ctx context.Context) error {
215215
}
216216

217217
// Adding the FBC "f" to the originalDeclcfg to generate a new FBC
218-
declcfg, err := upgradeFBC(ctx, f, originalDeclcfg)
218+
declcfg, err := upgradeFBC(ctx, f, originalDeclcfg, c.SkipTLSVerify, c.UseHTTP)
219219
if err != nil {
220220
return fmt.Errorf("error creating the upgraded FBC: %v", err)
221221
}
@@ -235,8 +235,8 @@ func (c *IndexImageCatalogCreator) runFBCUpgrade(ctx context.Context) error {
235235

236236
// upgradeFBC constructs a new File-Based Catalog from both the FBCContext object and the declarative config object. This function will check to see
237237
// if the FBCContext object "f" is already present in the original declarative config.
238-
func upgradeFBC(ctx context.Context, f *fbcutil.FBCContext, originalDeclCfg *declarativeconfig.DeclarativeConfig) (*declarativeconfig.DeclarativeConfig, error) {
239-
declcfg, err := fbcutil.RenderRefs(ctx, f.Refs)
238+
func upgradeFBC(ctx context.Context, f *fbcutil.FBCContext, originalDeclCfg *declarativeconfig.DeclarativeConfig, skipTLSVerify bool, useHTTP bool) (*declarativeconfig.DeclarativeConfig, error) {
239+
declcfg, err := fbcutil.RenderRefs(ctx, f.Refs, skipTLSVerify, useHTTP)
240240
if err != nil {
241241
return nil, err
242242
}
@@ -387,7 +387,7 @@ func (c IndexImageCatalogCreator) UpdateCatalog(ctx context.Context, cs *v1alpha
387387
}
388388

389389
// Upgrading when installed traditionally by OLM
390-
upgradedFBC, err := handleTraditionalUpgrade(ctx, c.IndexImage, c.BundleImage, subscription.Spec.Channel)
390+
upgradedFBC, err := handleTraditionalUpgrade(ctx, c.IndexImage, c.BundleImage, subscription.Spec.Channel, c.SkipTLSVerify, c.UseHTTP)
391391
if err != nil {
392392
return fmt.Errorf("unable to upgrade bundle: %v", err)
393393
}

0 commit comments

Comments
 (0)