-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: operator lifecycle manager (#66)
* feat: add flag to init/api subcommands This simply adds the flag for init/api subcommands for use later in the scaffolding process. Signed-off-by: Dustin Scott <[email protected]> * feat: add scorecard for OLM integration Signed-off-by: Dustin Scott <[email protected]> * test: add tests to makefile for olm Signed-off-by: Dustin Scott <[email protected]> * feat: add sample kustomization required for OLM Signed-off-by: Dustin Scott <[email protected]> * feat: adjust makefile with appropriate values Signed-off-by: Dustin Scott <[email protected]> * feat: add olm tasks to makefile Additionally, update the makefile to the latest makefile for kubebuilder Signed-off-by: Dustin Scott <[email protected]> * feat: add manifests and update makefile with operator-sdk Signed-off-by: Dustin Scott <[email protected]> * chore: make makefile consistent with other targets This simply provides consistency with other make targets and allows the make targets to properly show up in the help menu. Signed-off-by: Dustin Scott <[email protected]> * feat: add olm tidbits to README Signed-off-by: Dustin Scott <[email protected]> * chore: remove references to old repo Signed-off-by: Dustin Scott <[email protected]> * fix: formatting in makefile which breaks help menu Signed-off-by: Dustin Scott <[email protected]> * chore: disable incorrect gci findings Signed-off-by: Dustin Scott <[email protected]> * chore: fix linter errors Signed-off-by: Dustin Scott <[email protected]> * chore: disable unused/deprecated linters Signed-off-by: Dustin Scott <[email protected]> * chore: fix linting and update linter version Signed-off-by: Dustin Scott <[email protected]> * chore: update license checker config for new year Signed-off-by: Dustin Scott <[email protected]> * ci: fix deprecated github actions feature Signed-off-by: Dustin Scott <[email protected]> * chore: fix additional missing copyrights Signed-off-by: Dustin Scott <[email protected]> * ci: fix cli test Signed-off-by: Dustin Scott <[email protected]> * ci: switch to string over float value for ci Signed-off-by: Dustin Scott <[email protected]> --------- Signed-off-by: Dustin Scott <[email protected]>
- Loading branch information
Showing
137 changed files
with
1,047 additions
and
615 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check Latest Commit Message | ||
run: make test-commit | ||
|
@@ -27,7 +27,7 @@ jobs: | |
if: github.event_name == 'pull_request' | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get PR Commits | ||
id: get-pr-commits | ||
|
@@ -52,7 +52,7 @@ jobs: | |
if: github.event_name == 'pull_request' | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check Pull Request Title | ||
uses: deepakputhraya/action-pr-title@master | ||
|
@@ -80,7 +80,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check License Lines | ||
uses: kt3k/[email protected] | ||
|
@@ -91,13 +91,13 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
go-version: "1.19" | ||
|
||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.46.2 | ||
version: v1.52.2 | ||
args: --timeout 3m |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"**/*.go": [ | ||
"// Copyright 2022 Nukleros" | ||
"// Copyright 2023 Nukleros" | ||
] | ||
} |
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.