-
Notifications
You must be signed in to change notification settings - Fork 97
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
β¨ feat(k8sgpt-rbac.yaml): add new RBAC configuration for k8sgpt operator #274
Closed
MateSousa
wants to merge
37
commits into
k8sgpt-ai:main
from
MateSousa:feat-migrate-all-rbac-to-helm-chart-template
Closed
Changes from 10 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
2cd94bf
β¨ feat(k8sgpt-rbac.yaml): add new RBAC configuration for k8sgpt operator
MateSousa af51fce
π₯ remove(k8sgpt.go): Remove service account, cluster role and clusterβ¦
MateSousa 7b5ed19
π fix(k8sgpt-rbac.yaml): correct indentation error
MateSousa 58199da
β¨ feat(k8sgpt-cluster-role-binding.yaml): add new Kubernetes ClusterRβ¦
MateSousa 46f4b21
β¨ feat(k8sgpt-cluster-role.yaml): add new Kubernetes cluster role witβ¦
MateSousa 89248c1
π₯ remove(k8sgpt-rbac.yaml): split resources between files.
MateSousa b7dd30c
β¨ feat(k8sgpt-sa.yaml): add new ServiceAccount for k8sgpt-operator
MateSousa dcafac4
π₯ remove(manager-rbac.yaml): remove permissions for apiextensions.k8s.io
MateSousa 6d79177
Merge branch 'main' into feat-migrate-all-rbac-to-helm-chart-template
MateSousa 271a2e1
Merge branch 'main' into feat-migrate-all-rbac-to-helm-chart-template
AlexsJones a1d919d
fix: fixed conflict mistake
MateSousa f5a1a49
chore(deps): update gcr.io/kubebuilder/kube-rbac-proxy docker tag to β¦
renovate[bot] 21aa48d
fix Amazon Bedrock instructions in README (#397)
aaroniscode 3b4795f
bug: fixing missing details (#402)
AlexsJones ffcf3ae
chore: small update to fix linter (#403)
AlexsJones ee6651f
fix(deps): update module google.golang.org/grpc to v1.63.0 (#401)
renovate[bot] 3d67b9f
chore(main): release 0.1.3 (#392)
github-actions[bot] 0c81761
[feature]: add gemini to supported AI backends (#406)
VaibhavMalik4187 6656760
fix(deps): update module google.golang.org/grpc to v1.63.2 (#409)
renovate[bot] 4226402
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuβ¦
renovate[bot] c815df4
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/grpc/go toβ¦
renovate[bot] 91b1692
feature: generate results in the target namespace (#399)
VaibhavMalik4187 7a02bf2
chore(deps): update actions/upload-artifact digest to 1746f4a (#416)
renovate[bot] 334a945
fix(deps): update controller-gen version to 0.14.0 (#395)
VaibhavMalik4187 d005325
chore(deps): update azure/setup-helm digest to fe7b79c (#413)
renovate[bot] a8e32b1
chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 (#418)
dependabot[bot] 954d770
chore(deps): update docker/setup-buildx-action digest to d70bba7 (#408)
renovate[bot] ed4d01e
fix(deps): update module github.com/onsi/gomega to v1.33.0 (#417)
renovate[bot] 9af5d29
fix: change deployment image reconciling (#348)
ultram4rine fa84906
chore(deps): update helm/kind-action action to v1.10.0 (#424)
renovate[bot] 8c48826
fix(deps): update k8s.io/utils digest to 0849a56 (#425)
renovate[bot] 34c9d10
chore(deps): update anchore/sbom-action action to v0.15.11 (#427)
renovate[bot] 19dc780
chore(deps): update actions/checkout digest to 0ad4b8f (#422)
renovate[bot] 51d2808
chore(deps): update actions/upload-artifact digest to 6546280 (#423)
renovate[bot] b5c6fc1
Update README.md (#429)
billabongrob 296b8cd
fix(deps): update module buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuβ¦
renovate[bot] acb8011
chore: removed old logic
MateSousa 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 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 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ include "chart.fullname" . }}-k8sgpt | ||
labels: | ||
{{- include "chart.labels" . | nindent 4 }} | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: {{ include "chart.fullname" . }}-k8sgpt | ||
subjects: | ||
- kind: ServiceAccount | ||
name: "k8sgpt" | ||
namespace: {{ .Release.Namespace }} |
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,23 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: {{ include "chart.fullname" . }}-k8sgpt | ||
labels: | ||
{{- include "chart.labels" . | nindent 4 }} | ||
rules: | ||
- apiGroups: | ||
- '*' | ||
resources: | ||
- '*' | ||
verbs: | ||
- create | ||
- list | ||
- get | ||
- watch | ||
- delete | ||
- apiGroups: | ||
- apiextensions.k8s.io | ||
resources: | ||
- '*' | ||
verbs: | ||
- '*' |
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,10 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: "k8sgpt" | ||
labels: | ||
app.kubernetes.io/component: rbac | ||
app.kubernetes.io/created-by: k8sgpt-operator | ||
app.kubernetes.io/part-of: k8sgpt-operator | ||
{{- include "chart.labels" . | nindent 4 }} | ||
|
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^