-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate client using GraphQL schema
Most notably: - Removes dependency on API client in github.com/humio/cli. Instead we call GraphQL directly from `ClientConfig` using generated Go code based on the GraphQL schema. - Bump minimum supported LogScale version to 1.130.0. Other changes: - Remove unused operator-sdk GitHub Action. - Moves some exported functions to an internal package as they are not meant for external consumption. - Bump gosec and staticcheck that is used by CI GitHub Actions workflow.
- Loading branch information
1 parent
faa6439
commit 40d73c9
Showing
107 changed files
with
43,224 additions
and
3,660 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -40,13 +40,12 @@ jobs: | |
- name: Run Gosec Security Scanner | ||
run: | | ||
export PATH=$PATH:$(go env GOPATH)/bin | ||
go get github.com/securego/gosec/cmd/gosec | ||
go install github.com/securego/gosec/cmd/gosec | ||
gosec ./... | ||
go install github.com/securego/gosec/v2/cmd/gosec@latest | ||
gosec -exclude-dir images/logscale-dummy -exclude-generated ./... | ||
- name: Run Staticcheck | ||
uses: dominikh/[email protected] | ||
with: | ||
version: "2023.1.7" | ||
version: "2024.1.1" | ||
install-go: false | ||
- name: operator image | ||
run: make docker-build-operator IMG=humio/humio-operator:${{ github.sha }} | ||
|
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.