You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/26 10:46:11 UTC

[camel-k] branch main updated: fix(doc): Add openshift builder image re-creation as known issue

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new 1bdf6c2c8 fix(doc): Add openshift builder image re-creation as known issue
1bdf6c2c8 is described below

commit 1bdf6c2c8f4d860a41f44caff2fcf0e76ae85377
Author: Gaelle Fournier <ga...@gmail.com>
AuthorDate: Wed Jul 26 11:49:15 2023 +0200

    fix(doc): Add openshift builder image re-creation as known issue
    
    Ref #4569
---
 docs/modules/ROOT/pages/troubleshooting/known-issues.adoc | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/docs/modules/ROOT/pages/troubleshooting/known-issues.adoc b/docs/modules/ROOT/pages/troubleshooting/known-issues.adoc
index 7b0330243..d4e422833 100644
--- a/docs/modules/ROOT/pages/troubleshooting/known-issues.adoc
+++ b/docs/modules/ROOT/pages/troubleshooting/known-issues.adoc
@@ -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
+----
+