dybyte commented on code in PR #10501:
URL: https://github.com/apache/seatunnel/pull/10501#discussion_r2832975091
##########
.github/workflows/backend.yml:
##########
@@ -699,6 +699,25 @@ jobs:
cache: 'maven'
- name: run seatunnel zeta on k8s test
run: |
+ ./mvnw -B install -DskipTests -am
+
+
TARGET_PATH="seatunnel-e2e/seatunnel-engine-e2e/seatunnel-engine-k8s-e2e/src/test/resources"
+ mkdir -p $TARGET_PATH/jars $TARGET_PATH/bin $TARGET_PATH/connectors
$TARGET_PATH/config
+ cp -r config/* $TARGET_PATH/config/
+ cp $TARGET_PATH/custom_config/hazelcast-kubernetes-discovery.yaml
$TARGET_PATH/config/hazelcast.yaml
+ cp $TARGET_PATH/custom_config/hazelcast-client.yaml
$TARGET_PATH/config/hazelcast-client.yaml
+ cp
seatunnel-shade/seatunnel-hadoop3-3.1.4-uber/target/seatunnel-hadoop3-3.1.4-uber.jar
$TARGET_PATH/jars/
+ cp seatunnel-core/seatunnel-starter/target/seatunnel-starter.jar
$TARGET_PATH/jars/
+ cp seatunnel-transforms-v2/target/seatunnel-transforms-v2.jar
$TARGET_PATH/jars/
+ cp seatunnel-core/seatunnel-starter/src/main/bin/seatunnel.sh
$TARGET_PATH/bin/
+ cp
seatunnel-core/seatunnel-starter/src/main/bin/seatunnel-cluster.sh
$TARGET_PATH/bin/
+ cp $TARGET_PATH/custom_config/plugin-mapping.properties
$TARGET_PATH/connectors/
+ cp seatunnel-connectors-v2/connector-fake/target/connector-fake*.jar
$TARGET_PATH/connectors/
+ cp
seatunnel-connectors-v2/connector-console/target/connector-console*.jar
$TARGET_PATH/connectors/
+
+ docker build -t seatunnel:latest -f
$TARGET_PATH/seatunnel_dockerfile $TARGET_PATH
+ docker save seatunnel:latest | sudo k3s ctr images import -
Review Comment:
Manually importing the SeaTunnel image into k3s because the cluster could
not resolve the local Docker image. This sideloading ensures the latest
binaries are available for e2e test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]