Skip to content

Commit bc438fd

Browse files
Merge pull request #82415 from michaelryanpeter/osdocs-12117-catalogd-https-support
OSDOCS#12117: Catalogd https support
2 parents 27d1406 + 806a816 commit bc438fd

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

extensions/index.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,7 @@ Administrators can use file-based catalogs to install and manage extensions, suc
5252
+
5353
In addition, bundle size is no longer constrained by the etcd value size limit. For more information, see xref:../extensions/ce/managing-ce.adoc#managing-ce[Installing extensions].
5454

55+
Secure catalog communication::
56+
{olmv1} uses HTTPS encryption for catalogd server responses.
57+
5558
include::modules/olmv1-about-purpose.adoc[leveloffset=+1]

modules/olmv1-adding-a-catalog.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include::snippets/olmv1-secure-registry-pull-secret.adoc[]
3232
[source,yaml,subs="attributes+"]
3333
----
3434
apiVersion: catalogd.operatorframework.io/v1alpha1
35-
kind: Catalog
35+
kind: ClusterCatalog
3636
metadata:
3737
name: redhat-operators
3838
spec:
@@ -93,7 +93,7 @@ Namespace:
9393
Labels: <none>
9494
Annotations: <none>
9595
API Version: catalogd.operatorframework.io/v1alpha1
96-
Kind: Catalog
96+
Kind: ClusterCatalog
9797
Metadata:
9898
Creation Timestamp: 2024-06-10T17:34:53Z
9999
Finalizers:
@@ -114,7 +114,7 @@ Status: <1>
114114
Reason: UnpackSuccessful <2>
115115
Status: True
116116
Type: Unpacked
117-
Content URL: http://catalogd-catalogserver.openshift-catalogd.svc/catalogs/redhat-operators/all.json
117+
Content URL: https://catalogd-catalogserver.openshift-catalogd.svc/catalogs/redhat-operators/all.json
118118
Observed Generation: 1
119119
Phase: Unpacked <3>
120120
Resolved Source:

modules/olmv1-finding-operators-to-install.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ After you add a catalog to your cluster, you can query the catalog to find Opera
2020
+
2121
[source,terminal]
2222
----
23-
$ oc -n openshift-catalogd port-forward svc/catalogd-catalogserver 8080:80
23+
$ oc -n openshift-catalogd port-forward svc/catalogd-catalogserver 8080:443
2424
----
2525

26-
. Download the catalog's JSON file locally by running the following command:
26+
. In a new terminal window or tab, download the catalog's JSON file locally by running the following command:
2727
+
2828
[source,terminal]
2929
----
30-
$ curl -L http://localhost:8080/catalogs/<catalog_name>/all.json \
30+
$ curl -L -k https://localhost:8080/catalogs/<catalog_name>/all.json \
3131
-C - -o /<path>/<catalog_name>.json
3232
----
3333
+
@@ -36,7 +36,7 @@ $ curl -L http://localhost:8080/catalogs/<catalog_name>/all.json \
3636
====
3737
[source,terminal]
3838
----
39-
$ curl -L http://localhost:8080/catalogs/redhat-operators/all.json \
39+
$ curl -L -k https://localhost:8080/catalogs/redhat-operators/all.json \
4040
-C - -o /home/username/catalogs/rhoc.json
4141
----
4242
====

modules/olmv1-red-hat-catalogs.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include::snippets/olmv1-secure-registry-pull-secret.adoc[]
3232
[source,yaml,subs="attributes+"]
3333
----
3434
apiVersion: catalogd.operatorframework.io/v1alpha1
35-
kind: Catalog
35+
kind: ClusterCatalog
3636
metadata:
3737
name: redhat-operators
3838
spec:
@@ -49,7 +49,7 @@ spec:
4949
[source,yaml,subs="attributes+"]
5050
----
5151
apiVersion: catalogd.operatorframework.io/v1alpha1
52-
kind: Catalog
52+
kind: ClusterCatalog
5353
metadata:
5454
name: certified-operators
5555
spec:
@@ -65,7 +65,7 @@ spec:
6565
[source,yaml,subs="attributes+"]
6666
----
6767
apiVersion: catalogd.operatorframework.io/v1alpha1
68-
kind: Catalog
68+
kind: ClusterCatalog
6969
metadata:
7070
name: community-operators
7171
spec:

0 commit comments

Comments
 (0)