cartservice - Splunk OTel .NET 1.3.0 #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Integration" | |
on: | |
push: | |
# run on pushes to main | |
branches: | |
- main | |
pull_request: | |
# run on pull requests targeting main | |
branches: | |
- main | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create kind cluster | |
uses: helm/kind-action@v1.8.0 | |
- name: Deploy From Source | |
uses: hiberbee/github-action-skaffold@1.27.0 | |
with: | |
command: run | |
- name: Wait For Pods | |
timeout-minutes: 20 | |
run: | | |
set -x | |
kubectl wait --for=condition=available --timeout=10m deployment/adservice | |
kubectl wait --for=condition=available --timeout=10m deployment/cartservice | |
kubectl wait --for=condition=available --timeout=10m deployment/checkoutservice | |
kubectl wait --for=condition=available --timeout=10m deployment/currencyservice | |
kubectl wait --for=condition=available --timeout=10m deployment/emailservice | |
kubectl wait --for=condition=available --timeout=10m deployment/frontend | |
kubectl wait --for=condition=available --timeout=10m deployment/loadgenerator | |
kubectl wait --for=condition=available --timeout=10m deployment/paymentservice | |
kubectl wait --for=condition=available --timeout=10m deployment/productcatalogservice | |
kubectl wait --for=condition=available --timeout=10m deployment/recommendationservice | |
kubectl wait --for=condition=available --timeout=10m deployment/shippingservice |