Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.23.6
go-version: 1.25.7
-
name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#### 1.16
- Default tooling versions have been updated:
- oc v4.20.1 -> v4.21.4
- kubectl 1.33.3 -> 1.34.4
- kustomize v5.7.1 -> v5.8.1
- helm v3.17.1 -> v3.17.1
- knative v1.15.0-6 -> v1.15.0-6
- tekton v1.20.0 -> v1.20.0
- rhoas v0.53.0 -> v0.53.0
- submariner v0.21.0 -> v0.22.1
- virtctl v1.6.2 -> v1.7.1

#### 1.15
- Default tooling versions have been updated:
- oc v4.19.9 -> v4.20.1
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ LABEL com.redhat.delivery.operator.bundle=true

# This second label tells the pipeline which versions of OpenShift the operator supports (i.e. which version of oc is installed).
# This is used to control which index images should include this operator.
LABEL com.redhat.openshift.versions="v4.20"
LABEL com.redhat.openshift.versions="v4.21"

# The rest of these labels are copies of the same content in annotations.yaml and are needed by OLM
# Note the package name and channels which are very important!
Expand Down
4 changes: 2 additions & 2 deletions build/dockerfiles/controller.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#

# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
FROM registry.access.redhat.com/ubi9/go-toolset:1.24.6-1760420453 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1772454089 AS builder
ENV GOPATH=/go/
USER root

Expand All @@ -30,7 +30,7 @@ COPY . .
RUN make compile

# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9-minimal
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6-1760515502
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1771346502
RUN microdnf -y update && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
WORKDIR /
COPY --from=builder /web-terminal-operator/_output/bin/web-terminal-controller /usr/local/bin/web-terminal-controller
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/devtools.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN curl -sSLO https://github.com/operator-framework/operator-registry/releases/
chmod +x linux-amd64-opm && \
mv linux-amd64-opm /usr/local/bin/opm

ENV OC_VERSION=4.19
ENV OC_VERSION=4.21
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/stable-${OC_VERSION}/openshift-client-linux.tar.gz | \
tar -C /usr/local/bin -xz --no-same-owner && \
chmod +x /usr/local/bin/oc
Expand Down
2 changes: 1 addition & 1 deletion build/makefiles/controller.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ compile:

### build_controller_image: Build container image for Web Terminal Operator
build_controller_image:
$(DOCKER) build -t $(WTO_IMG) -f build/dockerfiles/controller.Dockerfile .
$(DOCKER) build --platform=linux/amd64 -t $(WTO_IMG) -f build/dockerfiles/controller.Dockerfile .
ifneq ($(INITIATOR),CI)
ifeq ($(WTO_IMG),quay.io/wto/web-terminal-operator:next)
@echo -n "Are you sure you want to push $(WTO_IMG)? [y/N] " && read ans && [ $${ans:-N} = y ]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/redhat-developer/web-terminal-operator

go 1.23.0
go 1.25.7

require (
github.com/devfile/api/v2 v2.2.0
Expand Down
6 changes: 3 additions & 3 deletions manifests/web-terminal.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ metadata:
operatorframework.io/suggested-namespace: openshift-operators
repository: https://github.com/redhat-developer/web-terminal-operator/
support: Red Hat, Inc.
name: web-terminal.v1.15.0
name: web-terminal.v1.16.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -137,5 +137,5 @@ spec:
maturity: alpha
provider:
name: Red Hat
replaces: web-terminal.v1.14.0
version: 1.15.0
replaces: web-terminal.v1.15.0
version: 1.16.0