Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(doc): Add openshift builder image re-creation as known issue #4611

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
----