Skip to content

Commit

Permalink
Merge pull request #24 from domhanak/SRVLOGIC-219
Browse files Browse the repository at this point in the history
[9.99.x-prod] SRVLOGIC-219: Update Operator's manifests to reflect devmode and builder images
  • Loading branch information
ricardozanini authored Feb 29, 2024
2 parents 3e18441 + 3b22c5a commit ef58396
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM registry.redhat.io/openshift-serverless-1-tech-preview/logic-rhel8-operator:1.32.0 AS builder
FROM registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-builder-rhel8:1.32.0 AS builder

# Kogito User
USER 1001
Expand Down
8 changes: 4 additions & 4 deletions controllers/platform/services/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ func (d DataIndexHandler) GetServiceImageName(persistenceName string) string {
if persistenceName == "ephemeral" {
return "registry.redhat.io/openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8:" + version.OperatorVersion
}
// Since we don't have an upstream version so far, use latest nightly
var tag = "latest"
// Since we don't have an upstream version so far, use TAG from the cut-off date - main-2024-02-09
var tag = "main-2024-02-09"
var suffix = constants.ImageNameNightlySuffix
// returns "quay.io/kiegroup/kogito-data-index-<persistence_layer>:<tag>"
return fmt.Sprintf("%s-%s-%s:%s", constants.ImageNamePrefix, constants.DataIndexName, persistenceName+suffix, tag)
Expand Down Expand Up @@ -257,8 +257,8 @@ func (j JobServiceHandler) GetContainerName() string {
}

func (j JobServiceHandler) GetServiceImageName(persistenceName string) string {
// Use latest nightly since we don't have a release upstream nor a prod version of Jobs Service
var tag = "latest"
// Use TAG from the cut-off date - main-2024-02-09 since we don't have prod version of Jobs Service
var tag = "main-2024-02-09"
var suffix = constants.ImageNameNightlySuffix
// returns "quay.io/kiegroup/kogito-jobs-service-<persistece_layer>:<tag>"
return fmt.Sprintf("%s-%s-%s:%s", constants.ImageNamePrefix, constants.JobServiceName, persistenceName+suffix, tag)
Expand Down

0 comments on commit ef58396

Please sign in to comment.