Skip to content

Commit

Permalink
fix(doc): Add openshift builder image re-creation as known issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gansheer committed Jul 26, 2023
1 parent 44aeb22 commit e269521
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/modules/ROOT/pages/troubleshooting/known-issues.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,16 @@ Or by patching your `IntegrationPlatform` resource directly if you have Camel K
----
$ kubectl patch ip camel-k --type='merge' -p '{"spec":{"build":{"publishStrategy":"kaniko"}}}'
----


== `[Openshift] Repeated install/uninstall and removal of CamelCatalog leads to re-creation of builder image`

Openshift's internal container image registry operates on image streams instead of directly on images. As a side effect in a non production usage it can lead to an increase of the container image storage. This is because the `uninstall` command will remove the CamelCatalog but can't remove the actual container image.

In case you don't need any change in the CamelCatalog, the solutions is to use the following flag when uninstalling if you plan to install again after:

[source,console]
----
kamel uninstall --skip-camel-catalogs
----

0 comments on commit e269521

Please sign in to comment.