-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overhaul patching and webhook configuration (#25)
Updated chart version to 1.0.0 - Backwards incompatible, major revision update Overhaul patching and webhook configuration Overhaul to remove `haystack` specific references Directly read configmaps instead of hardcoded sidecar names. Remove old deployment methods, only support helm. Remove old mutation code Remove support for annotations Update DEVELOP.md and README.md
- Loading branch information
Showing
38 changed files
with
1,079 additions
and
1,134 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
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,14 +1,11 @@ | ||
name: kubernetes-sidecar-injector | ||
home: https://github.com/expediagroup/kubernetes-sidecar-injector | ||
version: 0.0.1 | ||
appVersion: 0.1 | ||
version: 1.0.0 | ||
appVersion: "0.1" | ||
keywords: | ||
- kubernetes | ||
- sidecar-injection | ||
description: | ||
apiVersion: | ||
sources: | ||
- https://github.com/expediagroup/kubernetes-sidecar-injector | ||
maintainers: | ||
- name: Ayan Sen | ||
email: [email protected] |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "serviceaccount.name" . }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{- include "common.labels" . | indent 4 }} | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: {{ include "clusterrole.name" . }} | ||
labels: | ||
{{- include "common.labels" . | indent 4 }} | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ include "clusterrolebinding.name" . }} | ||
labels: | ||
{{- include "common.labels" . | indent 4 }} | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: {{ include "clusterrole.name" . }} | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "serviceaccount.name" . }} | ||
namespace: {{ .Release.Namespace }} |
Oops, something went wrong.