feat(obi): add OBI to otel-ecs-ec2 and otel-linux-standalone #51
This file contains hidden or 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: Standalone Charts Render Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'otel-linux-standalone/**' | |
| - 'otel-windows-standalone/**' | |
| - 'otel-macos-standalone/**' | |
| env: | |
| ARTIFACTORY_URL: https://cgx.jfrog.io/artifactory/ | |
| ARTIFACTORY_USERNAME: integrations-actions | |
| jobs: | |
| render: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| chart: | |
| - otel-linux-standalone | |
| - otel-windows-standalone | |
| - otel-macos-standalone | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Setup Helm repos | |
| run: | | |
| helm repo add coralogix-charts-virtual ${{ env.ARTIFACTORY_URL }}coralogix-charts-virtual --username ${{ env.ARTIFACTORY_USERNAME }} --password ${{ secrets.ARTIFACTORY_NONUSER_ACCESS_TOKEN }} | |
| helm repo add opentelemetry https://open-telemetry.github.io/opentelemetry-helm-charts | |
| helm repo update | |
| - name: Build dependencies | |
| run: helm dependency build ./${{ matrix.chart }}/ | |
| - name: Lint | |
| run: helm lint ./${{ matrix.chart }}/ | |
| - name: Render default values | |
| run: helm template render-check ./${{ matrix.chart }}/ > /dev/null |