-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add more ci scenarios * bump chart version * removing agent and standalone for now * added back both collectors * testing only both collector values * lowered resource limit * unblocking other scenarios * added metric example * updated metrics examples * blocking agent metrics for now * Pivoted to only enabling metrics endpoint * added clusterrole scenario * updated examples * added log scenario * added another scenario * added config override example * remove metric scenario
- Loading branch information
1 parent
249a2a0
commit 8820ae2
Showing
7 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
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
6 changes: 6 additions & 0 deletions
6
charts/opentelemetry-collector/ci/agent-collector-conatiner-logs-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
agentCollector: | ||
enabled: true | ||
containerLogs: | ||
enabled: true | ||
standaloneCollector: | ||
enabled: false |
4 changes: 4 additions & 0 deletions
4
charts/opentelemetry-collector/ci/agent-collector-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
agentCollector: | ||
enabled: true | ||
standaloneCollector: | ||
enabled: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
clusterRole: | ||
create: true | ||
name: "testing-clusterrole" | ||
rules: | ||
- apiGroups: | ||
- '' | ||
resources: | ||
- 'pods' | ||
- 'nodes' | ||
verbs: | ||
- 'get' | ||
- 'list' | ||
- 'watch' | ||
clusterRoleBinding: | ||
name: "testing-clusterrolebinding" | ||
|
||
agentCollector: | ||
enabled: true | ||
standaloneCollector: | ||
enabled: false |
16 changes: 16 additions & 0 deletions
16
charts/opentelemetry-collector/ci/config-override-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
agentCollector: | ||
enabled: true | ||
configOverride: | ||
receivers: | ||
hostmetrics: | ||
scrapers: | ||
cpu: | ||
disk: | ||
filesystem: | ||
service: | ||
pipelines: | ||
metrics: | ||
receivers: [prometheus, hostmetrics] | ||
|
||
standaloneCollector: | ||
enabled: false |
14 changes: 14 additions & 0 deletions
14
charts/opentelemetry-collector/ci/disabling-protocols-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
ports: | ||
jaeger-compact: | ||
enabled: false | ||
jaeger-thrift: | ||
enabled: false | ||
jaeger-grpc: | ||
enabled: false | ||
zipkin: | ||
enabled: false | ||
|
||
agentCollector: | ||
enabled: true | ||
standaloneCollector: | ||
enabled: false |
8 changes: 8 additions & 0 deletions
8
charts/opentelemetry-collector/ci/standalone-and-agent-collectors-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
agentCollector: | ||
enabled: true | ||
standaloneCollector: | ||
enabled: true | ||
# Needed to lower from default so that both can run in the Kind cluster | ||
resources: | ||
limits: | ||
cpu: 256m |