Create scaffolding for opentelemetry-kube-stack chart #2
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: Test Otel Cloud Stack Charts | |
on: | |
pull_request: | |
paths: | |
- "charts/otel-cloud-stack/**" | |
branches: | |
- main | |
jobs: | |
otel-cloud-stack-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
create-kind-cluster: "true" | |
# We'll need this eventually, but for now leave it commented. | |
# - name: Install cert-manager | |
# run: | | |
# kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.6.1/cert-manager.yaml | |
# kubectl wait --timeout=5m --for=condition=available deployment cert-manager -n cert-manager | |
# kubectl wait --timeout=5m --for=condition=available deployment cert-manager-webhook -n cert-manager | |
- name: Run chart-testing (install) | |
run: ct install --charts charts/otel-cloud-stack |