e2e-k8s.yml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. on:
  18. pull_request:
  19. push:
  20. branches:
  21. - dev
  22. name: E2E-K8S
  23. concurrency:
  24. group: E2E-K8S-${{ github.event.pull_request.number || github.ref }}
  25. cancel-in-progress: true
  26. jobs:
  27. paths-filter:
  28. name: E2E-K8S-Path-Filter
  29. runs-on: ubuntu-latest
  30. outputs:
  31. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  32. steps:
  33. - uses: actions/checkout@v2
  34. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  35. id: filter
  36. with:
  37. filters: |
  38. not-ignore:
  39. - '!(docs/**)'
  40. e2e-k8s:
  41. name: E2E-K8S-Execute
  42. needs: paths-filter
  43. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  44. runs-on: ubuntu-latest
  45. timeout-minutes: 20
  46. steps:
  47. - uses: actions/checkout@v2
  48. with:
  49. submodules: true
  50. - name: Build Image
  51. run: |
  52. ./mvnw -B clean package \
  53. -Dmaven.test.skip \
  54. -Dmaven.javadoc.skip \
  55. -Dspotless.skip=true \
  56. -Dmaven.checkstyle.skip \
  57. -Dmaven.deploy.skip \
  58. -Ddocker.push.skip=true \
  59. -Pdocker,release -Ddocker.tag=ci \
  60. -pl org.apache.dolphinscheduler:dolphinscheduler-alert-server \
  61. -pl dolphinscheduler-tools \
  62. -pl dolphinscheduler-api \
  63. -pl dolphinscheduler-master \
  64. -pl dolphinscheduler-worker -am
  65. - name: Create k8s Kind Cluster
  66. run: |
  67. # install kubectl
  68. curl -LO "https://dl.k8s.io/release/v1.28.3/bin/linux/amd64/kubectl"
  69. sudo chmod +x kubectl
  70. sudo mv kubectl /usr/local/bin/kubectl
  71. # install kind
  72. curl -LO https://github.com/kubernetes-sigs/kind/releases/download/v0.20.0/kind-linux-amd64
  73. sudo chmod +x kind-linux-amd64
  74. sudo mv kind-linux-amd64 /usr/local/bin/kind
  75. kind version
  76. # create kind cluster
  77. kind_node_image="kindest/node:v1.23.17"
  78. echo "Kubernetes version: ${kind_node_image}"
  79. kind create cluster --name dolphinscheduler --image ${kind_node_image}
  80. kubectl version
  81. kubectl get all --all-namespaces
  82. - name: Load images
  83. run: |
  84. components=("master" "worker" "api" "tools" "alert-server")
  85. for component in "${components[@]}"; do
  86. kind load docker-image apache/dolphinscheduler-${component}:ci --name dolphinscheduler
  87. done
  88. - name: Helm install dolphinscheduler
  89. working-directory: ${{ github.workspace }}/deploy/kubernetes/dolphinscheduler
  90. run: |
  91. # install helm
  92. curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
  93. # install ds chart via helm
  94. helm repo add bitnami https://charts.bitnami.com/bitnami
  95. helm dependency update .
  96. helm upgrade --install --create-namespace -n dolphinscheduler dolphinscheduler . -f - <<EOF
  97. image:
  98. registry: apache
  99. tag: ci
  100. master:
  101. replicas: 1
  102. livenessProbe:
  103. initialDelaySeconds: 120
  104. readinessProbe:
  105. initialDelaySeconds: 120
  106. worker:
  107. replicas: 1
  108. livenessProbe:
  109. initialDelaySeconds: 120
  110. readinessProbe:
  111. initialDelaySeconds: 120
  112. alert:
  113. livenessProbe:
  114. initialDelaySeconds: 120
  115. readinessProbe:
  116. initialDelaySeconds: 120
  117. api:
  118. livenessProbe:
  119. initialDelaySeconds: 120
  120. readinessProbe:
  121. initialDelaySeconds: 120
  122. EOF
  123. - name: Wait for pods
  124. run: |
  125. JSONPATH='{range .items[*]}{@.metadata.name}:{range @.status.conditions[*]}{@.type}={@.status};{end}{end}';
  126. components=("master" "worker" "api" "alert")
  127. for component in "${components[@]}"; do
  128. until kubectl -n dolphinscheduler get pods -l app.kubernetes.io/component=${component} -o jsonpath="$JSONPATH" 2>&1 | grep -q "Ready=True"; do
  129. echo "waiting for dolphinscheduler ${component} to be available"
  130. sleep 10
  131. kubectl get pods --all-namespaces
  132. kubectl get events --all-namespaces
  133. for pod in $(kubectl get pods -n dolphinscheduler -o jsonpath='{.items[*].metadata.name}'); do
  134. echo "logs for pod $pod:"
  135. kubectl logs --tail=1000 -n dolphinscheduler $pod
  136. done
  137. done
  138. done