Skip to content

Commit 419e3fa

Browse files
lfranckerazvan
authored andcommitted
Remove Hello World operator (#1194)
* Remove Hello World operator * Fix README generation * make pre-commit happy
1 parent 8240fc7 commit 419e3fa

File tree

7 files changed

+14
-97
lines changed

7 files changed

+14
-97
lines changed

.github/workflows/build_hello-world.yaml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.scripts/update_readme_badges.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,15 @@ for BUILD_WORKFLOW_FILE in .github/workflows/build_*.yaml; do
5454
echo >> "$BADGES_TMP"
5555
fi
5656
done
57-
# This needs to add the remaning empty columns of the last row in the table
58-
# This is a hack to fix the status quo and make markdownlint happy.
59-
for _ in $(seq 0 $((COLS - 1))); do
60-
echo -n "| " >> "$BADGES_TMP"
61-
done
62-
echo "|" >> "$BADGES_TMP"
57+
58+
# Add remaining empty columns to complete the last row if needed
59+
# "if needed" is the first if here: It'll only run when we're NOT on the last column (0 indexed)
60+
if [ ${CURRENT_COLUMN} -ne $((COLS - 1)) ]; then
61+
for _ in $(seq $((CURRENT_COLUMN + 1)) $((COLS - 1))); do
62+
echo -n "| " >> "$BADGES_TMP"
63+
done
64+
echo "|" >> "$BADGES_TMP"
65+
fi
6366
echo -n "<!-- end:badges -->" >> "$BADGES_TMP"
6467

6568
# Print the image and link shortcuts. Eg:

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ This repository contains Dockerfiles and scripts to build base images for use wi
66
| | | | |
77
| -: | -: | -: | -: |
88
| [![Build Airflow]][build_airflow.yaml] | [![Build Druid]][build_druid.yaml] | [![Build Hadoop]][build_hadoop.yaml] | [![Build HBase]][build_hbase.yaml] |
9-
| [![Build Hello-World]][build_hello-world.yaml] | [![Build Hive]][build_hive.yaml] | [![Build Java Base]][build_java-base.yaml] | [![Build Java Development]][build_java-devel.yaml] |
10-
| [![Build Kafka Testing Tools]][build_kafka-testing-tools.yaml] | [![Build Kafka]][build_kafka.yaml] | [![Build Krb5]][build_krb5.yaml] | [![Build NiFi]][build_nifi.yaml] |
11-
| [![Build Omid]][build_omid.yaml] | [![Build OPA]][build_opa.yaml] | [![Build Spark Connect Client]][build_spark-connect-client.yaml] | [![Build Spark K8s]][build_spark-k8s.yaml] |
12-
| [![Build Stackable Base]][build_stackable-base.yaml] | [![Build Superset]][build_superset.yaml] | [![Build Testing Tools]][build_testing-tools.yaml] | [![Build Tools]][build_tools.yaml] |
13-
| [![Build Trino CLI]][build_trino-cli.yaml] | [![Build Trino]][build_trino.yaml] | [![Build Vector]][build_vector.yaml] | [![Build ZooKeeper]][build_zookeeper.yaml] |
14-
| | | | |
9+
| [![Build Hive]][build_hive.yaml] | [![Build Java Base]][build_java-base.yaml] | [![Build Java Development]][build_java-devel.yaml] | [![Build Kafka Testing Tools]][build_kafka-testing-tools.yaml] |
10+
| [![Build Kafka]][build_kafka.yaml] | [![Build Krb5]][build_krb5.yaml] | [![Build NiFi]][build_nifi.yaml] | [![Build Omid]][build_omid.yaml] |
11+
| [![Build OPA]][build_opa.yaml] | [![Build Spark Connect Client]][build_spark-connect-client.yaml] | [![Build Spark K8s]][build_spark-k8s.yaml] | [![Build Stackable Base]][build_stackable-base.yaml] |
12+
| [![Build Superset]][build_superset.yaml] | [![Build Testing Tools]][build_testing-tools.yaml] | [![Build Tools]][build_tools.yaml] | [![Build Trino CLI]][build_trino-cli.yaml] |
13+
| [![Build Trino]][build_trino.yaml] | [![Build Vector]][build_vector.yaml] | [![Build ZooKeeper]][build_zookeeper.yaml] | |
1514
<!-- end:badges -->
1615

1716
## Prerequisites
@@ -222,8 +221,6 @@ ENTRYPOINT ["/stackable-zookeeper-operator"]
222221
[build_hadoop.yaml]: https://github.com/stackabletech/docker-images/actions/workflows/build_hadoop.yaml
223222
[Build HBase]: https://github.com/stackabletech/docker-images/actions/workflows/build_hbase.yaml/badge.svg
224223
[build_hbase.yaml]: https://github.com/stackabletech/docker-images/actions/workflows/build_hbase.yaml
225-
[Build Hello-World]: https://github.com/stackabletech/docker-images/actions/workflows/build_hello-world.yaml/badge.svg
226-
[build_hello-world.yaml]: https://github.com/stackabletech/docker-images/actions/workflows/build_hello-world.yaml
227224
[Build Hive]: https://github.com/stackabletech/docker-images/actions/workflows/build_hive.yaml/badge.svg
228225
[build_hive.yaml]: https://github.com/stackabletech/docker-images/actions/workflows/build_hive.yaml
229226
[Build Java Base]: https://github.com/stackabletech/docker-images/actions/workflows/build_java-base.yaml/badge.svg

conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
hbase_phoenix = importlib.import_module("hbase.phoenix.versions")
1919
hbase_opa_authorizer = importlib.import_module("hbase.hbase-opa-authorizer.versions")
2020
hbase_operator_tools = importlib.import_module("hbase.hbase-operator-tools.versions")
21-
hello_world = importlib.import_module("hello-world.versions")
2221
hive = importlib.import_module("hive.versions")
2322
java_base = importlib.import_module("java-base.versions")
2423
java_devel = importlib.import_module("java-devel.versions")
@@ -54,7 +53,6 @@
5453
{"name": "hbase/phoenix", "versions": hbase_phoenix.versions},
5554
{"name": "hbase/hbase-opa-authorizer", "versions": hbase_opa_authorizer.versions},
5655
{"name": "hbase/hbase-operator-tools", "versions": hbase_operator_tools.versions},
57-
{"name": "hello-world", "versions": hello_world.versions},
5856
{"name": "hive", "versions": hive.versions},
5957
{"name": "java-base", "versions": java_base.versions},
6058
{"name": "java-devel", "versions": java_devel.versions},

hello-world/Dockerfile

Lines changed: 0 additions & 41 deletions
This file was deleted.

hello-world/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

hello-world/versions.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)