-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Add kubernetes targets #547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 20 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a3c1c00
feat: Add kubernetes targets
AtzeDeVries 2d6fc76
add function/struct to setup routing to buf/std(in/out)
AtzeDeVries 97cb2b2
enable dyff devtool
AtzeDeVries bf1334a
enable helm devtool
AtzeDeVries ef13eb9
add worktree func to git
AtzeDeVries 0dd98e7
update kubernetes targets
AtzeDeVries 928101b
merge main to this
AtzeDeVries 7b2a138
sync cmd lib with mage pr
AtzeDeVries 5e8bcaa
make file files in sub dir always return relative paths
AtzeDeVries cdcc5cd
use better var name
AtzeDeVries 8616b7c
make kubercorm, helm annd kubescore actually work in docker
AtzeDeVries 5b60779
make dyff also work in docker
AtzeDeVries 87352b8
rewrite the render template again after some learning
AtzeDeVries f68483b
removed unused function
AtzeDeVries 8d0b265
add github stuff
AtzeDeVries 5cce67f
add changes detection
AtzeDeVries 9c34703
use custom escape
AtzeDeVries a6ed219
add log groups
AtzeDeVries bb5d448
Merge branch 'main' into add-kubernetes
AtzeDeVries 1179430
fix a bunch of linting issues
AtzeDeVries 7fc417e
fix typos in devtool.dyff and add renovate snippet for dyff updates
AtzeDeVries f5e2c3b
add test for listrecursivefiles
AtzeDeVries ffb4804
make function outof printing buffers to strings
AtzeDeVries 3919a63
return removal error as string in worktree
AtzeDeVries 6230409
add kubernets validation as default target
AtzeDeVries 4cd42ef
fix dyff version diff
AtzeDeVries 5b47d37
fix version comment in kubescore
AtzeDeVries 8222c8b
rename ListRecursiveFiles to ListFilesRecursively
AtzeDeVries 6014e58
make finding of environment and related value values independed of a …
AtzeDeVries cb04608
fix double err check
AtzeDeVries File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,39 @@ | ||
| concurrency: | ||
| group: reusable-kubernetes-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| on: | ||
| workflow_call: | ||
| inputs: {} | ||
| secrets: {} | ||
|
|
||
| jobs: | ||
| validate-kubernetes: | ||
| name: Validate Kuberenetes | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| issues: write | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Go | ||
| uses: actions/setup-go@v6 | ||
| with: | ||
| go-version: "stable" | ||
| cache-dependency-path: "**/go.sum" | ||
| - name: Install go Tools | ||
| run: go install tool | ||
|
|
||
| - name: Kubernetes List Detected charts | ||
| id: list | ||
| run: go tool mage k8s:list | ||
|
|
||
| - name: Kubernetes validation | ||
| id: validate | ||
| run: go tool mage k8s:validate | ||
|
|
||
| - name: Kubernetes validation | ||
| id: diff | ||
| run: go tool mage k8s:diff |
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.