Skip to content

Commit 3a77eb2

Browse files
author
Mateusz
committed
changes to workflows - release and checks
install steps in cheks now wait for resources, archive is no longer in the branch - it is pulled during the tests and release.
1 parent 138f84e commit 3a77eb2

4 files changed

Lines changed: 33 additions & 9 deletions

File tree

.github/workflows/checks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ jobs:
4040
run: |
4141
helm repo add opentelemetry-collector https://open-telemetry.github.io/opentelemetry-helm-charts
4242
43+
- name: Build chart dependencies
44+
run: |
45+
helm dependency build charts/netdata
46+
4347
- name: Check documentation is up-to-date
4448
run: |
4549
./generate-documentation.sh

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@ jobs:
2929
git config --global user.name Netdatabot
3030
git config --global user.email bot@netdata.cloud
3131
32+
- name: Set up Helm
33+
uses: azure/setup-helm@v4
34+
with:
35+
version: v3.12.0
36+
37+
- name: Add helm repo for dependencies
38+
run: |
39+
helm repo add opentelemetry-collector https://open-telemetry.github.io/opentelemetry-helm-charts
40+
41+
- name: Build chart dependencies
42+
run: |
43+
helm dependency build charts/netdata
44+
3245
- name: Get current version
3346
id: get_current_var
3447
run: echo "current_version=$(.github/scripts/update_versions.py get_chart_version)" >> $GITHUB_OUTPUT
-31 KB
Binary file not shown.

charts/netdata/values.yaml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ child:
454454
# @section -- Child
455455
failureThreshold: 3
456456
# -- How often (in seconds) to perform the liveness probe
457-
# @section -- Child1.0
457+
# @section -- Child
458458
periodSeconds: 30
459459
# -- Minimum consecutive successes for the liveness probe to be considered successful after having failed
460460
# @section -- Child
@@ -871,14 +871,21 @@ netdataOpentelemetry:
871871
# -- Service annotations
872872
# @section -- Netdata OpenTelemetry
873873
annotations: {}
874-
## Only to be used with type LoadBalancer
875-
# loadBalancerIP: 10.0.1.69
876-
# loadBalancerSourceRanges: []
877-
# externalTrafficPolicy: Local
878-
## Only to be used with type LoadBalancer and external traffic policy Local
879-
# healthCheckNodePort:
880-
## Only to be used with type ClusterIP
881-
# clusterIP: 10.1.2.3
874+
# -- Cluster IP address (only used with service.type ClusterIP)
875+
# @section -- Netdata OpenTelemetry
876+
clusterIP: ""
877+
# -- LoadBalancer IP address (only used with service.type LoadBalancer)
878+
# @section -- Netdata OpenTelemetry
879+
loadBalancerIP: ""
880+
# -- Allowed source ranges for LoadBalancer (only used with service.type LoadBalancer)
881+
# @section -- Netdata OpenTelemetry
882+
loadBalancerSourceRanges: []
883+
# -- External traffic policy (only used with service.type LoadBalancer)
884+
# @section -- Netdata OpenTelemetry
885+
externalTrafficPolicy: ""
886+
# -- Health check node port (only used with service.type LoadBalancer and external traffic policy Local)
887+
# @section -- Netdata OpenTelemetry
888+
healthCheckNodePort: ""
882889

883890
# -- Compute resources required by this Deployment
884891
# @section -- Netdata OpenTelemetry

0 commit comments

Comments
 (0)