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

chore: Add a pre-release issue template #775

Merged
merged 4 commits into from
Jul 12, 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
76 changes: 76 additions & 0 deletions .github/ISSUE_TEMPLATE/pre-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
name: Pre-Release Container Image Updates
about: This template can be used to track the container image updates leading up to the next Stackable release
title: "chore: Update Container Images for Stackable Release XX.(X)X"
labels: ['epic']
assignees: ''
---

<!--
DO NOT REMOVE THIS COMMENT. It is intended for people who might copy/paste from the previous release issue.
This was created by an issue template: https://github.com/stackabletech/issues/issues/new/choose.
-->

## Container Image Updates for Stackable Release XX.(X)X

> [!NOTE]
> Update the product versions based on what has been decided upon in the _Product Spreadsheet[^1]_.

[^1]: Currently this is a private spreadsheet

Replace the items in the task lists below with the applicable Pull Requests

<!--
Find any other image directories not covered by the list above:

find . -name "versions.py" \
| cut -d/ -f2 \
| sort \
| xargs -I {} echo "- [ ] https://github.com/stackabletech/docker-images/tree/main/{}/versions.py"
-->

```[tasklist]
### Product Container Images
- [ ] https://github.com/stackabletech/docker-images/tree/main/airflow/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/druid/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hadoop/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hbase/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hello-world/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/hive/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/java-base/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/java-devel/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kafka/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kafka-testing-tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/kcat/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/krb5/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/nifi/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/omid/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/opa/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/spark-k8s/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/stackable-base/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/superset/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/testing-tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/tools/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/trino/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/trino-cli/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/vector/versions.py
- [ ] https://github.com/stackabletech/docker-images/tree/main/zookeeper/versions.py
```

> [!NOTE]
> Generally you will only need to update the rust-toolchain version (`RUST_DEFAULT_TOOLCHAIN_VERSION`).

<!--
Find any other image directories not covered by the list above

comm -3 \
<(find . -name "Dockerfile" | cut -d/ -f2 | sort) \
<(find . -name "versions.py" | cut -d/ -f2 | sort) \
| xargs -I {} echo "- [ ] https://github.com/stackabletech/docker-images/tree/main/{}/Dockerfile"
-->

```[tasklist]
### Other Container Images
- [ ] https://github.com/stackabletech/docker-images/tree/main/ubi8-rust-builder/Dockerfile
- [ ] https://github.com/stackabletech/docker-images/tree/main/ubi9-rust-builder/Dockerfile
```
2 changes: 2 additions & 0 deletions .github/workflows/pr_pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ jobs:
with:
python-version: '3.12'
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
with:
extra_args: "" # Disable --all-files until we have time to fix druid/stackable/bin/run-druid
46 changes: 23 additions & 23 deletions druid/versions.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
versions = [
{
"product": "26.0.0",
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0"
},
{
"product": "28.0.1",
# Java 17 should be fully supported as of 27.0.0 https://github.com/apache/druid/releases#27.0.0-highlights-java-17-support
# Did not work in a quick test due to reflection error:
# Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class
# java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0"
},
{
"product": "30.0.0",
# https://druid.apache.org/docs/30.0.0/operations/java/
"java-base": "17",
"java-devel": "17",
"authorizer": "0.5.0"
}
{
"product": "26.0.0",
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0",
},
{
"product": "28.0.1",
# Java 17 should be fully supported as of 27.0.0 https://github.com/apache/druid/releases#27.0.0-highlights-java-17-support
# Did not work in a quick test due to reflection error:
# Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class
# java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError
"java-base": "11",
"java-devel": "11",
"authorizer": "0.5.0",
},
{
"product": "30.0.0",
# https://druid.apache.org/docs/30.0.0/operations/java/
"java-base": "17",
"java-devel": "17",
"authorizer": "0.5.0",
},
]