Browse Source

Fix e2e compose paths

& update docs
Roman Zabaluev 2 năm trước cách đây
mục cha
commit
ecb28f4dd5

+ 1 - 1
.github/workflows/e2e-checks.yaml

@@ -43,7 +43,7 @@ jobs:
         id: compose_app
         # use the following command until #819 will be fixed
         run: |
-          docker-compose -f ./documentation/compose/kafka-ui-e2e.yaml up -d
+          docker-compose -f ./documentation/compose/e2e-tests.yaml up -d
       - name: e2e run
         run: |
           mvn versions:set -DnewVersion=${{ github.event.pull_request.head.sha }}

+ 1 - 1
documentation/compose/DOCKER_COMPOSE.md

@@ -6,7 +6,7 @@
 4. [kafka-ui-ssl.yml](./kafka-ssl.yml) - Connect to Kafka via TLS/SSL
 5. [kafka-cluster-sr-auth.yaml](./kafka-cluster-sr-auth.yaml) - Schema registry with authentication.
 6. [kafka-ui-auth-context.yaml](./kafka-ui-auth-context.yaml) - Basic (username/password) authentication with custom path (URL) (issue 861).
-7. [kafka-e2e.yaml](./kafka-e2e.yaml) - Configuration with different connectors (github-source, s3, sink-activities, source-activities) and Ksql functionality.
+7. [e2e-tests.yaml](./e2e-tests.yaml) - Configuration with different connectors (github-source, s3, sink-activities, source-activities) and Ksql functionality.
 8. [kafka-ui-jmx-secured.yml](./kafka-ui-jmx-secured.yml) - Kafka’s JMX with SSL and authentication.
 9. [kafka-ui-reverse-proxy.yaml](./kafka-ui-reverse-proxy.yaml) - An example for using the app behind a proxy (like nginx).
 10. [kafka-ui-sasl.yaml](./kafka-ui-sasl.yaml) - SASL auth for Kafka.

+ 0 - 0
documentation/compose/kafka-e2e.yaml → documentation/compose/e2e-tests.yaml


+ 1 - 1
documentation/project/contributing/building.md

@@ -4,7 +4,7 @@ Once you installed the prerequisites and cloned the repository, run the followin
 
 Build a docker container with the app:
 ```sh
-./mvnw clean install -Pprod
+./mvnw clean install -Dmaven.test.skip=true -Pprod
 ``` 
 Start the app with Kafka clusters:
 ```sh

+ 1 - 1
kafka-ui-e2e-checks/README.md

@@ -48,7 +48,7 @@ docker pull selenoid/vnc:chrome_86.0
 1. Run `kafka-ui`: 
 ```
 cd kafka-ui
-docker-compose -f documentation/compose/kafka-e2e.yaml up -d
+docker-compose -f documentation/compose/e2e-tests.yaml up -d
 ```
 2. Run tests using your QaseIO API token as environment variable (put instead %s into command below)
 ```