Add component deployment to Kind/Minikube and OpenShift/K8s clusters (CRW-10962) - #5957
Open
vrubezhny wants to merge 1 commit into
Open
Add component deployment to Kind/Minikube and OpenShift/K8s clusters (CRW-10962)#5957vrubezhny wants to merge 1 commit into
vrubezhny wants to merge 1 commit into
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #5957 +/- ##
===========================================
+ Coverage 32.37% 51.10% +18.72%
===========================================
Files 85 116 +31
Lines 6505 11003 +4498
Branches 1349 2490 +1141
===========================================
+ Hits 2106 5623 +3517
- Misses 4399 5373 +974
- Partials 0 7 +7 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
vrubezhny
force-pushed
the
feature/image-build-support
branch
2 times, most recently
from
July 13, 2026 01:31
ac9f931 to
a491e02
Compare
vrubezhny
marked this pull request as draft
July 13, 2026 02:16
vrubezhny
force-pushed
the
feature/image-build-support
branch
from
July 13, 2026 12:34
a491e02 to
c11a77f
Compare
vrubezhny
force-pushed
the
feature/image-build-support
branch
from
August 6, 2026 00:48
c11a77f to
b00e176
Compare
vrubezhny
force-pushed
the
feature/image-build-support
branch
14 times, most recently
from
August 7, 2026 20:13
ec77dfb to
b8e183e
Compare
vrubezhny
force-pushed
the
feature/image-build-support
branch
7 times, most recently
from
August 8, 2026 02:57
203725b to
9ad9ccd
Compare
vrubezhny
force-pushed
the
feature/image-build-support
branch
7 times, most recently
from
August 8, 2026 14:42
e5fd3f2 to
d404720
Compare
vrubezhny
marked this pull request as ready for review
August 8, 2026 15:02
… clusters (CRW-10962) Signed-off-by: Victor Rubezhny <vrubezhny@redhat.com> Assisted-By: Claude Opus 4.6 <noreply@anthropic.com>
vrubezhny
force-pushed
the
feature/image-build-support
branch
from
August 10, 2026 14:25
d404720 to
db92647
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a complete deploy pipeline that builds container images and
deploys them to Kind, Minikube, OpenShift, and generic Kubernetes
clusters — all from the OpenShift terminal.
Key changes
image delivery accordingly — local load for Kind/Minikube, registry
push for OpenShift/K8s
(podman > docker > buildah) with build, tag, push, and load commands
(quay.io, docker.io, ghcr.io, custom URL, or OpenShift internal
registry as fallback) when deploying to OpenShift/K8s
pull secret and links it to the default service account. Created
once per registry/namespace, reused on subsequent deploys. Prompts
for password only when needed (no existing secret, no stored
credentials, not already logged in via podman). Shows warning at
end of deploy output when secret creation fails or is skipped
apply) run in one terminal tab via a combined temp script
in Kubernetes manifests via imageNameMap before
oc applyimages on Kind/Minikube to prevent pulling from remote registry
.odo/deploystate.jsonfor context-switch reconciliationDeploy/Undeploy hidden when dev is active (via
whenclauses)runanywhere in viewItem (e.g.
dep-runtriggering Stop Dev)applyCommand, deploy
Fixes: https://redhat.atlassian.net/browse/CRW-10962
Fixes: #4482
Assisted-By: Claude Opus 4.6 noreply@anthropic.com