-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dominik Rosiek <[email protected]>
- Loading branch information
Dominik Rosiek
committed
May 23, 2024
1 parent
4f38ee0
commit 0fa29f6
Showing
6 changed files
with
225 additions
and
7 deletions.
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
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
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,25 @@ | ||
//go:build allversions | ||
// +build allversions | ||
|
||
package integration | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func Test_Helm_Routing_Partial(t *testing.T) { | ||
|
||
installChecks := []featureCheck{ | ||
CheckOtelcolMetadataLogsInstall, | ||
CheckOtelcolLogsCollectorInstall, | ||
} | ||
|
||
featInstall := GetInstallFeature(installChecks) | ||
|
||
featLogs := GetPartialLogsFeature() | ||
|
||
featDeployMock := DeployAdditionalSumologicMock() | ||
featDeleteMock := DeleteAdditionalSumologicMock() | ||
|
||
testenv.Test(t, featInstall, featDeployMock, featLogs, featDeleteMock) | ||
} |
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
File renamed without changes.
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,12 @@ | ||
sumologic: | ||
logs: | ||
otelcol: | ||
extraExporters: | ||
sumologic/additional-sumologic-mock: | ||
endpoint: http://sumologic-mock.additional-sumologic-mock:3000/receiver | ||
routing: | ||
fallbackExporters: | ||
- sumologic | ||
table: | ||
- exporter: sumologic/additional-sumologic-mock | ||
statement: route() where resource.attributes["deployment"] == "logs-generator" |