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

[9.99.x-prod] SRVLOGIC-219: Update Operator's manifests to reflect devmode and builder images #24

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
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
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't matter at all since it's not used, but to test and readme.


# 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
Loading