Skip to content

Commit

Permalink
Prepare for WTO 1.10 release
Browse files Browse the repository at this point in the history
* Update changelog, CSV version
* Update base images for controller build
* Update minimum OpenShift version annotation

Signed-off-by: Andrew Obuchowicz <aobuchow@redhat.com>
  • Loading branch information
AObuchow committed Mar 15, 2024
1 parent b531de4 commit e250481
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.20.10
go-version: 1.20.12
-
name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
#### 1.10
- Default tooling versions have been updated:
- oc v4.14.5 -> v4.15.0
- kubectl v1.27.4 -> 1.28.2
- kustomize v5.2.1 -> v5.3.0
- odo v3.15.0 -> v3.15.0
- helm v3.12.1 -> v3.12.1
- knative v1.9.2 -> v1.10.0
- tekton v0.33.0 -> v0.35.1
- rhoas v0.53.0 -> v0.53.0
- submariner v0.16.2 -> v0.17.0
- virtctl v1.1.0 -> v1.2.0

#### 1.9
- The wtoctl utility now supports adding persistent storage to existing Web Terminal instances (see `wtoctl storage --help`).
- The Web Terminal operator will update images in DevWorkspaceTemplates (`web-terminal-tooling` and `web-terminal-exec`) if they are in an unmanaged state but the image has not been changed. This allows customizing Web Terminal defaults while still receiving updated images.
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/Dockerfile
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.14"
LABEL com.redhat.openshift.versions="v4.15"

# 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
Expand Up @@ -10,7 +10,7 @@
#

# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/go-toolset
FROM registry.access.redhat.com/ubi8/go-toolset:1.20.10-3 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.20.12-2 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/ubi8-minimal
FROM registry.access.redhat.com/ubi8-minimal:8.9-1029
FROM registry.access.redhat.com/ubi8-minimal:8.9-1137
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
6 changes: 3 additions & 3 deletions manifests/web-terminal.clusterserviceversion.yaml
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.9.0
name: web-terminal.v1.10.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -137,5 +137,5 @@ spec:
maturity: alpha
provider:
name: Red Hat
replaces: web-terminal.v1.8.0
version: 1.9.0
replaces: web-terminal.v1.9.0
version: 1.10.0

0 comments on commit e250481

Please sign in to comment.