-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: added rbac to create and update events, automated chart upgrade … (
#34) * fix: added rbac to create and update events, automated chart upgrade and image pull secrets * fix:per PR feedback, changing the image pull secrets to global list Co-authored-by: Sangeetha Madamanchi <[email protected]>
- Loading branch information
1 parent
210462a
commit da2a7dd
Showing
7 changed files
with
77 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apiVersion: v2 | ||
name: overwhelm | ||
version: 1.2.0 | ||
version: 1.2.2 | ||
maintainers: | ||
- name: "Expedia Group" | ||
url: "https://github.com/ExpediaGroup/overwhelm" |
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 |
---|---|---|
|
@@ -37,8 +37,10 @@ rules: | |
resources: | ||
- events | ||
verbs: | ||
- create | ||
- get | ||
- list | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
|
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,19 +1,18 @@ | ||
# Use <GOTEMPLATE></GOTEMPLATE> tags for Go template delimiters to be inserted by the script/helm-charts/update.go script | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: overwhelm-controller-manager | ||
namespace: overwhelm-system | ||
spec: | ||
replicas: <GOTEMPLATE> .Values.deployment.replicas </GOTEMPLATE> | ||
replicas: "{{ .Values.deployment.replicas }}" | ||
template: | ||
metadata: | ||
$patch: replace | ||
annotations: <GOTEMPLATE> toYaml .Values.deployment.annotations | indent 8 </GOTEMPLATE> | ||
labels: <GOTEMPLATE> toYaml .Values.deployment.labels | indent 8 </GOTEMPLATE> | ||
annotations: "{{ toYaml .Values.deployment.annotations | indent 8 }}" | ||
labels: "{{ toYaml .Values.deployment.labels | indent 8 }}" | ||
spec: | ||
containers: | ||
- name: manager | ||
image: <GOTEMPLATE> .Values.deployment.image.manager.repository </GOTEMPLATE>:<GOTEMPLATE> .Values.deployment.image.manager.tag </GOTEMPLATE> | ||
image: "{{ .Values.deployment.image.manager.repository }}:{{ .Values.deployment.image.manager.tag }}" | ||
- name: kube-rbac-proxy | ||
image: <GOTEMPLATE> .Values.deployment.image.kubeRbacProxy.repository </GOTEMPLATE>:<GOTEMPLATE> .Values.deployment.image.kubeRbacProxy.tag </GOTEMPLATE> | ||
image: "{{ .Values.deployment.image.kubeRbacProxy.repository }}:{{ .Values.deployment.image.kubeRbacProxy.tag }}" |
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