Skip to content

Commit 3d82521

Browse files
authored
Merge branch 'master' into dont-annotate-immediately
2 parents 6f49023 + a35a3a1 commit 3d82521

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-man
2424
USER 1001
2525

2626
EXPOSE 8080
27-
EXPOSE 443
27+
EXPOSE 5443
2828

2929
# Apply labels as needed. ART build automation fills in others required for
3030
# shipping, including component NVR (name-version-release) and image name. OSBS

Documentation/install/local-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package:
2525
ref: quay.io/coreos/olm:local
2626
pullPolicy: IfNotPresent
2727
service:
28-
internalPort: 443
28+
internalPort: 5443
2929

3030
catalog_sources:
3131
- rh-operators

e2e.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-man
2020
COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-manager/bin/catalog /bin/catalog
2121
COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-manager/bin/package-server /bin/package-server
2222
EXPOSE 8080
23-
EXPOSE 443
23+
EXPOSE 5443
2424
CMD ["/bin/olm"]
2525

2626
FROM golang:1.10

test/e2e/csv_e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ func TestCreateCSVWithOwnedAPIService(t *testing.T) {
816816
Version: "v1alpha1",
817817
Kind: "PackageManifest",
818818
DeploymentName: depName,
819-
ContainerPort: int32(443),
819+
ContainerPort: int32(5443),
820820
DisplayName: "Package Manifest",
821821
Description: "An apiservice that exists",
822822
},

upstream.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-man
1515
COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-manager/bin/catalog /bin/catalog
1616
COPY --from=builder /go/src/github.com/operator-framework/operator-lifecycle-manager/bin/package-server /bin/package-server
1717
EXPOSE 8080
18-
EXPOSE 443
18+
EXPOSE 5443
1919
CMD ["/bin/olm"]
2020

2121
FROM quay.io/coreos/alm-ci:base

0 commit comments

Comments
 (0)