-
Notifications
You must be signed in to change notification settings - Fork 0
chore: prod to test backmerge #419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
fcb3bde
chore: update image tags for prod release
github-actions[bot] bd881cf
Merge pull request #389 from nudgebee/test-prod-2701
blue4209211 8c455c3
fix: switch OTel Collector ClickHouse exporter from native TCP to HTTP
mayankpande88 9460317
fix: fix for version
mayankpande88 27d03db
chore: update image tags for prod release
github-actions[bot] 3902852
Merge branch 'prod' into fix-cpllector-deprication
mayankpande88 cb97027
Merge pull request #392 from nudgebee/feat/node-agent-headless-service
mayankpande88 c14b204
Merge pull request #391 from nudgebee/fix-cpllector-deprication
blue4209211 6394d87
fix: set loki datasource isDefault=false to prevent Grafana crash
mayankpande88 da6033c
chore: update image tags for prod release
github-actions[bot] 89eb0bb
style: quote namespace variable and improve readability of loki helm …
mayankpande88 224c8fe
chore: bump chart version to 0.0.117
mayankpande88 fedf346
Merge pull request #394 from nudgebee/fix/loki-default-datasource
blue4209211 92e0ee3
fix: readme
mayankpande88 45fd023
Merge pull request #395 from nudgebee/mayankpande88-patch-15
blue4209211 0da1c77
chore: updated release version
mayankpande88 390b40e
chore: update image tags for prod release
github-actions[bot] 73e2021
Merge pull request #403 from nudgebee/mayankpande88-patch-16
blue4209211 04fab81
fix: expose rate_limit params for crash loop and image pull backoff t…
mayankpande88 093c020
chore: update image tags for prod release
github-actions[bot] 3062636
Merge pull request #404 from nudgebee/fix/expose-rate-limit-params
blue4209211 5301ce5
chore: updated version
mayankpande88 8ef7cb4
chore: update image tags for prod release
github-actions[bot] 3795e49
Merge pull request #405 from nudgebee/mayankpande88-patch-18
blue4209211 d16d595
fix: add --no-paginate to nudgebee-agent ECR query in release workflows
mayankpande88 da98129
chore: update image tags for prod release
github-actions[bot] e1bee32
Merge pull request #408 from nudgebee/fix/ecr-no-paginate-prod
mayankpande88 27350f6
chore: updated version
mayankpande88 06835b0
Merge pull request #409 from nudgebee/mayankpande88-patch-19
mayankpande88 e652538
fix: default runner.clickhouse_enabled to false to prevent secret loo…
mayankpande88 064128f
chore: bump chart version to 0.0.121
mayankpande88 d3c36ec
Merge pull request #411 from nudgebee/fix-clickhouse-enabled-param-prod
blue4209211 dbefaab
fix: remove invalid matchers field from AlertmanagerConfig receiver
mayankpande88 21f043c
chore: update image tags for prod release
github-actions[bot] 52cb81e
ci: add kubeconform validation and helm template rendering to CI
mayankpande88 0da6c48
Merge pull request #413 from nudgebee/fix-alertconfig-prod
blue4209211 235a4b9
feat: add new flags to installation script for self-hosted and compon…
mayankpande88 7351f08
fix: reduce alert-rule noise with rate/ratio-based thresholds
mayankpande88 1c52baa
chore: bump chart version to 0.0.123
mayankpande88 3877f76
fix: replace probabilistic with tail sampling and add memory limiter …
mayankpande88 d796014
fix: aggregate 5xx ratio across status codes in ApplicationAPIFailures
mayankpande88 e6a1839
Merge pull request #415 from nudgebee/fix/installation-script-new-fla…
mayankpande88 14bf977
Merge pull request #417 from nudgebee/fix/alert-rules-reduce-noise
mayankpande88 804ecae
fix(otel): make filter/drop_health_check OTTL conditions parse
mayankpande88 77d4d04
chore: update image tags for prod release
github-actions[bot] 78e34b4
Merge pull request #418 from nudgebee/fix/otel-drop-health-check-ottl…
mayankpande88 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,60 @@ | ||
| # CI Workflow for Agent Helm chart | ||
| name: CI | ||
|
|
||
| # Controls when the workflow will run | ||
| on: | ||
| # Triggers the workflow on push or pull request events but only for the "main" branch | ||
| push: | ||
| branches: [ "main" ] | ||
| pull_request: | ||
| branches: [ "main"] | ||
|
|
||
| # Allows you to run this workflow manually from the Actions tab | ||
| workflow_dispatch: | ||
|
|
||
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
| jobs: | ||
| helm-test: | ||
| helm-lint-and-validate: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v3 | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Add dependency chart repos | ||
| run: | | ||
| helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | ||
| helm repo add opencost https://opencost.github.io/opencost-helm-chart | ||
| helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts | ||
| helm repo add bitnami https://charts.bitnami.com/bitnami | ||
|
|
||
| - uses: azure/setup-helm@v3 | ||
| - uses: azure/setup-helm@v4 | ||
| with: | ||
| version: v3.10.0 | ||
| version: v3.14.0 | ||
|
|
||
| - uses: actions/setup-python@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.9' | ||
| check-latest: true | ||
| python-version: '3.12' | ||
|
|
||
| - name: Set up chart-testing | ||
| uses: helm/chart-testing-action@v2.3.1 | ||
| uses: helm/chart-testing-action@v2.7.0 | ||
|
|
||
| - name: Run chart-testing (lint) | ||
| run: ct lint --debug --config ./.github/configs/ct.yaml --lint-conf ./.github/configs/lintconf.yaml --check-version-increment=false | ||
|
|
||
| - name: Build chart dependencies | ||
| run: helm dependency build charts/nudgebee-agent | ||
|
|
||
| - name: Render templates | ||
| run: helm template nudgebee-agent charts/nudgebee-agent --namespace nudgebee-agent > /tmp/rendered.yaml | ||
|
|
||
| - name: Install kubeconform | ||
| run: | | ||
| curl -sSLo /tmp/kubeconform.tar.gz https://github.com/yannh/kubeconform/releases/download/v0.6.7/kubeconform-linux-amd64.tar.gz | ||
| tar -xzf /tmp/kubeconform.tar.gz -C /usr/local/bin kubeconform | ||
|
|
||
| - name: Validate rendered templates | ||
| run: | | ||
| kubeconform \ | ||
| -strict \ | ||
| -summary \ | ||
| -schema-location default \ | ||
| -schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' \ | ||
| -skip SecurityContextConstraints \ | ||
| /tmp/rendered.yaml |
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.