From 4437b481be6169429bdc142c572f79bf6ecb4c9a Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Fri, 28 Nov 2025 14:34:47 -0500 Subject: [PATCH 1/9] Pull dependencies RCO@cfg-probes and OLO@cfg-probes --- go.sum | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.sum b/go.sum index 3f989cd0..d22d5afa 100644 --- a/go.sum +++ b/go.sum @@ -8,6 +8,8 @@ github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuy github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36 h1:fweyU4TX3vSrbWecLy6FYjIgnoybPdoJbOiZsoV+iDw= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935 h1:ec2HXWsnLK3EedMe+ub50/KIarTOm7oufDi9q5mgc8Y= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= From 838beb899870202c3bab8c102f0a39724d6fe109 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Fri, 28 Nov 2025 14:35:14 -0500 Subject: [PATCH 2/9] Implement GetManagedPort() --- api/v1/webspherelibertyapplication_types.go | 17 +++++++++++------ utils/utils.go | 17 ++++++++++------- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/api/v1/webspherelibertyapplication_types.go b/api/v1/webspherelibertyapplication_types.go index a3eb7551..090e3821 100644 --- a/api/v1/webspherelibertyapplication_types.go +++ b/api/v1/webspherelibertyapplication_types.go @@ -929,6 +929,16 @@ func (cr *WebSphereLibertyApplication) GetManageTLS() *bool { return cr.Spec.ManageTLS } +func (cr *WebSphereLibertyApplication) GetManagedPort() int { + if cr.GetService() != nil && cr.GetService().GetPort() != 0 { + return int(cr.GetService().GetPort()) + } + if cr.GetManageTLS() == nil || *cr.GetManageTLS() { + return 9443 + } + return 9080 +} + // GetEnv returns slice of environment variables func (cr *WebSphereLibertyApplication) GetEnv() []corev1.EnvVar { return cr.Spec.Env @@ -1452,12 +1462,7 @@ func (cr *WebSphereLibertyApplication) Initialize() { } if cr.Spec.Service.Port == 0 { - if cr.Spec.ManageTLS == nil || *cr.Spec.ManageTLS { - cr.Spec.Service.Port = 9443 - - } else { - cr.Spec.Service.Port = 9080 - } + cr.Spec.Service.Port = int32(cr.GetManagedPort()) } // If TargetPorts on Serviceports are not set, default them to the Port value in the CR diff --git a/utils/utils.go b/utils/utils.go index e3588575..8a9e864e 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -28,6 +28,8 @@ import ( "math/rand/v2" + "github.com/application-stacks/runtime-component-operator/common" + wlv1 "github.com/WASdev/websphere-liberty-operator/api/v1" rcoutils "github.com/application-stacks/runtime-component-operator/utils" routev1 "github.com/openshift/api/route/v1" @@ -1153,7 +1155,7 @@ func patchFileBasedProbe(defaultProbe *corev1.Probe, instanceProbe *corev1.Probe defaultProbe = getOrInitProbe(defaultProbe) instanceProbe = getOrInitProbe(instanceProbe) isExecConfigured := instanceProbe.Exec != nil // this flag allows the user to override the ExecAction object to bring their own custom file-based health check - instanceProbe = rcoutils.CustomizeProbeDefaults(instanceProbe, defaultProbe) + instanceProbe = common.CustomizeProbeDefaults(instanceProbe, defaultProbe) if !isExecConfigured { configureFileBasedProbeExec(instanceProbe, scriptName, probeFile) } @@ -1186,14 +1188,15 @@ func customizeFileBasedProbes(appContainer *corev1.Container, instance *wlv1.Web if appContainer == nil { return } - if instance.Spec.Probes.WebSphereLibertyApplicationProbes.Startup != nil { - appContainer.StartupProbe = patchFileBasedProbe(instance.Spec.Probes.WebSphereLibertyApplicationProbes.GetDefaultStartupProbe(instance), instance.Spec.Probes.Startup, StartupProbeFileBasedScriptName, StartupProbeFileName) + probes := instance.Spec.Probes.WebSphereLibertyApplicationProbes + if probes.Startup != nil { + appContainer.StartupProbe = patchFileBasedProbe(probes.GetDefaultStartupProbe(instance), probes.GetStartupProbe(), StartupProbeFileBasedScriptName, StartupProbeFileName) } - if instance.Spec.Probes.WebSphereLibertyApplicationProbes.Liveness != nil { - appContainer.LivenessProbe = patchFileBasedProbe(instance.Spec.Probes.WebSphereLibertyApplicationProbes.GetDefaultLivenessProbe(instance), instance.Spec.Probes.Liveness, LivenessProbeFileBasedScriptName, LivenessProbeFileName) + if probes.Liveness != nil { + appContainer.LivenessProbe = patchFileBasedProbe(probes.GetDefaultLivenessProbe(instance), probes.GetLivenessProbe(), LivenessProbeFileBasedScriptName, LivenessProbeFileName) } - if instance.Spec.Probes.WebSphereLibertyApplicationProbes.Readiness != nil { - appContainer.ReadinessProbe = patchFileBasedProbe(instance.Spec.Probes.WebSphereLibertyApplicationProbes.GetDefaultReadinessProbe(instance), instance.Spec.Probes.Readiness, ReadinessProbeFileBasedScriptName, ReadinessProbeFileName) + if probes.Readiness != nil { + appContainer.ReadinessProbe = patchFileBasedProbe(probes.GetDefaultReadinessProbe(instance), probes.GetReadinessProbe(), ReadinessProbeFileBasedScriptName, ReadinessProbeFileName) } } From 6d5fe0c2c3bbeac03684fc24162cc9689b62c786 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:38:24 -0500 Subject: [PATCH 3/9] Add GetManagedScheme() --- api/v1/webspherelibertyapplication_types.go | 7 +++++++ go.sum | 2 ++ 2 files changed, 9 insertions(+) diff --git a/api/v1/webspherelibertyapplication_types.go b/api/v1/webspherelibertyapplication_types.go index 090e3821..9ce5dce4 100644 --- a/api/v1/webspherelibertyapplication_types.go +++ b/api/v1/webspherelibertyapplication_types.go @@ -939,6 +939,13 @@ func (cr *WebSphereLibertyApplication) GetManagedPort() int { return 9080 } +func (cr *WebSphereLibertyApplication) GetManagedScheme() corev1.URIScheme { + if cr.GetManageTLS() == nil || *cr.GetManageTLS() { + return corev1.URISchemeHTTPS + } + return corev1.URISchemeHTTP +} + // GetEnv returns slice of environment variables func (cr *WebSphereLibertyApplication) GetEnv() []corev1.EnvVar { return cr.Spec.Env diff --git a/go.sum b/go.sum index d22d5afa..f4457b4a 100644 --- a/go.sum +++ b/go.sum @@ -10,6 +10,8 @@ github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0. github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935 h1:ec2HXWsnLK3EedMe+ub50/KIarTOm7oufDi9q5mgc8Y= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 h1:nI0JouJAKXJnm3KBPVW5deVChcmojq+dxTKBMms0NWA= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= From 4a334d80756ad9e323d1cc35732c4f83c407774c Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:45:10 -0500 Subject: [PATCH 4/9] Add GetManagedPort and GetManagedScheme comment --- api/v1/webspherelibertyapplication_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/v1/webspherelibertyapplication_types.go b/api/v1/webspherelibertyapplication_types.go index 9ce5dce4..72c60e76 100644 --- a/api/v1/webspherelibertyapplication_types.go +++ b/api/v1/webspherelibertyapplication_types.go @@ -929,6 +929,7 @@ func (cr *WebSphereLibertyApplication) GetManageTLS() *bool { return cr.Spec.ManageTLS } +// GetManagedPort returns the application's CR managed port func (cr *WebSphereLibertyApplication) GetManagedPort() int { if cr.GetService() != nil && cr.GetService().GetPort() != 0 { return int(cr.GetService().GetPort()) @@ -939,6 +940,7 @@ func (cr *WebSphereLibertyApplication) GetManagedPort() int { return 9080 } +// GetManagedScheme returns the application's CR managed scheme func (cr *WebSphereLibertyApplication) GetManagedScheme() corev1.URIScheme { if cr.GetManageTLS() == nil || *cr.GetManageTLS() { return corev1.URISchemeHTTPS From 4cb54f105d8ce4a2661fc70e027443da63363c60 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:23:06 -0500 Subject: [PATCH 5/9] Remove probe file name definition --- utils/utils.go | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/utils/utils.go b/utils/utils.go index 8a9e864e..9f4b24c7 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -111,9 +111,6 @@ var entitlementCloudPakID = map[wlv1.LicenseEntitlement]string{ const StartupProbeFileBasedScriptName = "startupHealthCheck.sh" const LivenessProbeFileBasedScriptName = "livenessHealthCheck.sh" const ReadinessProbeFileBasedScriptName = "readinessHealthCheck.sh" -const StartupProbeFileName = "started" -const LivenessProbeFileName = "live" -const ReadinessProbeFileName = "ready" type LTPAMetadata struct { Kind string @@ -1115,7 +1112,7 @@ func clearFileBasedProbe(probe *corev1.Probe) *corev1.Probe { return probe } -func configureFileBasedProbeExec(probe *corev1.Probe, scriptName string, probeFile string) { +func configureFileBasedProbeExec(probe *corev1.Probe, scriptName string) { probe = getProbeWithoutHandlers(probe) // remove any preset handlers configured to this probe cmdList := []string{scriptName} if scriptName == StartupProbeFileBasedScriptName { @@ -1151,13 +1148,13 @@ func getOrInitProbe(probe *corev1.Probe) *corev1.Probe { return probe } -func patchFileBasedProbe(defaultProbe *corev1.Probe, instanceProbe *corev1.Probe, scriptName string, probeFile string) *corev1.Probe { +func patchFileBasedProbe(defaultProbe *corev1.Probe, instanceProbe *corev1.Probe, scriptName string) *corev1.Probe { defaultProbe = getOrInitProbe(defaultProbe) instanceProbe = getOrInitProbe(instanceProbe) isExecConfigured := instanceProbe.Exec != nil // this flag allows the user to override the ExecAction object to bring their own custom file-based health check instanceProbe = common.CustomizeProbeDefaults(instanceProbe, defaultProbe) if !isExecConfigured { - configureFileBasedProbeExec(instanceProbe, scriptName, probeFile) + configureFileBasedProbeExec(instanceProbe, scriptName) } return instanceProbe } @@ -1190,13 +1187,13 @@ func customizeFileBasedProbes(appContainer *corev1.Container, instance *wlv1.Web } probes := instance.Spec.Probes.WebSphereLibertyApplicationProbes if probes.Startup != nil { - appContainer.StartupProbe = patchFileBasedProbe(probes.GetDefaultStartupProbe(instance), probes.GetStartupProbe(), StartupProbeFileBasedScriptName, StartupProbeFileName) + appContainer.StartupProbe = patchFileBasedProbe(probes.GetDefaultStartupProbe(instance), probes.GetStartupProbe(), StartupProbeFileBasedScriptName) } if probes.Liveness != nil { - appContainer.LivenessProbe = patchFileBasedProbe(probes.GetDefaultLivenessProbe(instance), probes.GetLivenessProbe(), LivenessProbeFileBasedScriptName, LivenessProbeFileName) + appContainer.LivenessProbe = patchFileBasedProbe(probes.GetDefaultLivenessProbe(instance), probes.GetLivenessProbe(), LivenessProbeFileBasedScriptName) } if probes.Readiness != nil { - appContainer.ReadinessProbe = patchFileBasedProbe(probes.GetDefaultReadinessProbe(instance), probes.GetReadinessProbe(), ReadinessProbeFileBasedScriptName, ReadinessProbeFileName) + appContainer.ReadinessProbe = patchFileBasedProbe(probes.GetDefaultReadinessProbe(instance), probes.GetReadinessProbe(), ReadinessProbeFileBasedScriptName) } } From 0455bf97842b34f8e3f77cf01940af833f3bc0d8 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Fri, 28 Nov 2025 14:34:47 -0500 Subject: [PATCH 6/9] Pull dependencies RCO@cfg-probes and OLO@cfg-probes --- go.sum | 2 -- 1 file changed, 2 deletions(-) diff --git a/go.sum b/go.sum index f4457b4a..d22d5afa 100644 --- a/go.sum +++ b/go.sum @@ -10,8 +10,6 @@ github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0. github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935 h1:ec2HXWsnLK3EedMe+ub50/KIarTOm7oufDi9q5mgc8Y= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 h1:nI0JouJAKXJnm3KBPVW5deVChcmojq+dxTKBMms0NWA= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= From 0f7093e78157550e8b147c86293d7fe6d0ccd7e9 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:38:24 -0500 Subject: [PATCH 7/9] Add GetManagedScheme() --- go.sum | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.sum b/go.sum index d22d5afa..f4457b4a 100644 --- a/go.sum +++ b/go.sum @@ -10,6 +10,8 @@ github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0. github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935 h1:ec2HXWsnLK3EedMe+ub50/KIarTOm7oufDi9q5mgc8Y= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 h1:nI0JouJAKXJnm3KBPVW5deVChcmojq+dxTKBMms0NWA= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= From 699d4ed7e6a042874a36d7f3ba9524f349281ea3 Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:31:51 -0500 Subject: [PATCH 8/9] Pull RCO@cfg-probes and OLO@cfg-probes deps --- go.mod | 4 ++-- go.sum | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index e6d9b528..350cd0cf 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module github.com/WASdev/websphere-liberty-operator go 1.25 require ( - github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251124214343-4fee1b0d8d1e - github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36 + github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f + github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 github.com/cert-manager/cert-manager v1.16.5 github.com/go-logr/logr v1.4.3 github.com/openshift/api v0.0.0-20250710004639-926605d3338b diff --git a/go.sum b/go.sum index f4457b4a..e2841940 100644 --- a/go.sum +++ b/go.sum @@ -4,6 +4,8 @@ github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE= github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251124214343-4fee1b0d8d1e h1:7pCncY3KcsAge1E1E9tYo1ZM2bcfsg7dJ4XLKraVmkI= github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251124214343-4fee1b0d8d1e/go.mod h1:ghwA2Fvfq6YphR93lp8vKEJ7mLYT1+sEvI6re16Kn0c= +github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f h1:kcbP3XmHp/8GjOdzkUWbxfCONKQsuJJtpjurH5+J6Jg= +github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f/go.mod h1:+r7gFflzy/kzTxP2jCQLzLo5XgVu4rFdW+VsMmLkpBU= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36 h1:fweyU4TX3vSrbWecLy6FYjIgnoybPdoJbOiZsoV+iDw= From 53816a8738c6c70710901be4c6b22bac51fcabae Mon Sep 17 00:00:00 2001 From: Kirby Chin <37311900+kabicin@users.noreply.github.com> Date: Tue, 6 Jan 2026 10:46:02 -0500 Subject: [PATCH 9/9] Pull RCO@main and OLO@cfg-probes --- go.mod | 4 ++-- go.sum | 14 ++++---------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/go.mod b/go.mod index 350cd0cf..9be8142c 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module github.com/WASdev/websphere-liberty-operator go 1.25 require ( - github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f - github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 + github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20260106154422-7a3d19a805da + github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20260106154102-e673c1d851ac github.com/cert-manager/cert-manager v1.16.5 github.com/go-logr/logr v1.4.3 github.com/openshift/api v0.0.0-20250710004639-926605d3338b diff --git a/go.sum b/go.sum index e2841940..ed7525db 100644 --- a/go.sum +++ b/go.sum @@ -2,18 +2,12 @@ github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25 github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ= github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE= -github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251124214343-4fee1b0d8d1e h1:7pCncY3KcsAge1E1E9tYo1ZM2bcfsg7dJ4XLKraVmkI= -github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251124214343-4fee1b0d8d1e/go.mod h1:ghwA2Fvfq6YphR93lp8vKEJ7mLYT1+sEvI6re16Kn0c= -github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f h1:kcbP3XmHp/8GjOdzkUWbxfCONKQsuJJtpjurH5+J6Jg= -github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20251203142519-a7219139425f/go.mod h1:+r7gFflzy/kzTxP2jCQLzLo5XgVu4rFdW+VsMmLkpBU= +github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20260106154422-7a3d19a805da h1:ooXuTyefwe1YnfV4hUxTWlAIi6vKHy7YZKSAGOGjiww= +github.com/OpenLiberty/open-liberty-operator v0.8.1-0.20260106154422-7a3d19a805da/go.mod h1:qEW+woqfHEZDWbpEbH0T3FFZn5vh9cRkEI5eBnIrJo4= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36 h1:fweyU4TX3vSrbWecLy6FYjIgnoybPdoJbOiZsoV+iDw= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251120112423-05f65c81aa36/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935 h1:ec2HXWsnLK3EedMe+ub50/KIarTOm7oufDi9q5mgc8Y= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251127222413-652a0c602935/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4 h1:nI0JouJAKXJnm3KBPVW5deVChcmojq+dxTKBMms0NWA= -github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20251128205306-dde3d2b3b7a4/go.mod h1:Hs5AbE9J+rLM34IAc75X7dtxnrzFg2AvG1XYLcX/ApU= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20260106154102-e673c1d851ac h1:kFJbKPEr/mxg5jtA6eEKYA54DXVKDwErINQ4P3zz4kE= +github.com/application-stacks/runtime-component-operator v1.0.0-20220602-0850.0.20260106154102-e673c1d851ac/go.mod h1:pmfannSJv1Tby0uSPXLPg3A+mC1WahsMJTNa2oU3SHk= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=