-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eventrouter: Various chart improvements
* Add ingress NetworkPolicy and Prometheus annotations. * Add config checksum to recreate pods on changes * Add a emptyDir volume for /tmp to work arround Issue 114 [1] * Add the option to overwrite kubernetes master/api environment variables to work arround IP SAN limitation of puppet CA [1] vmware-archive/eventrouter#114 Bug: T262675 Change-Id: Ia1632157971c6bee5eadb94be3ed81a058e64466
- Loading branch information
1 parent
30c0961
commit 032b446
Showing
5 changed files
with
61 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: NetworkPolicy | ||
metadata: | ||
labels: {{ include "eventrouter.labels" . | indent 4 }} | ||
name: {{ template "eventrouter.fullname" . }} | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: {{ template "eventrouter.name" . }} | ||
release: {{ .Release.Name }} | ||
policyTypes: | ||
- Ingress | ||
ingress: | ||
- ports: | ||
- port: 8080 | ||
protocol: TCP |
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