-
Notifications
You must be signed in to change notification settings - Fork 504
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.] Merge Webhook and Server Helm Chart #817
Changes from 2 commits
fa0accc
dca9027
f5fa815
014d696
02c3648
576db26
a299c02
553b222
550ada2
0e56753
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
{{- $globconfig := .Files.Glob "data/config.toml" }} | ||
{{- if $globconfig }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Values.config_name }} | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
terrascan-config: |- | ||
{{ .Files.Get "data/config.toml" | b64enc }} | ||
{{- end }} | ||
terrascan-config: | | ||
{{ .Files.Get "data/config.toml" | indent 4 }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,22 @@ name: terrascan | |
persistence: | ||
enabled: false | ||
existingclaim: terrascanPvc | ||
|
||
webhook: | ||
name: webhook.terrascan.io | ||
failurePolicy: Ignore | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Had to change this to |
||
sideEffects: None | ||
admissionReviewVersions: | ||
- "v1" | ||
- "v1beta1" | ||
apiGroups: | ||
- "apps" | ||
- "" | ||
resources: | ||
- "deployments" | ||
- "pods" | ||
apiVersions: | ||
- "*" | ||
operations: | ||
- CREATE | ||
- UPDATE |
This file was deleted.
This file was deleted.
This file was deleted.
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.
No need to create
LoadBalancer
service, until we are using this service from outside of this cluster. It's the user choice to change it afterwards to enhance its usecases.cc: @jlk @kanchwala-yusuf @dev-gaur