forked from envoyproxy/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
helm: add envoy gateway addon helm chart support (envoyproxy#3470)
* initial dashboard addon helm chart Signed-off-by: shawnh2 <shawnhxh@outlook.com> * rename addon name and remove gateway-helm support Signed-off-by: shawnh2 <shawnhxh@outlook.com> * remove /charts from .helmignore Signed-off-by: shawnh2 <shawnhxh@outlook.com> * rename to gateway-addons-helm and keep one source of truth Signed-off-by: shawnh2 <shawnhxh@outlook.com> * restore examples values and fix comments Signed-off-by: shawnh2 <shawnhxh@outlook.com> * rewrite helm makefile Signed-off-by: shawnh2 <shawnhxh@outlook.com> --------- Signed-off-by: shawnh2 <shawnhxh@outlook.com>
- Loading branch information
Showing
12 changed files
with
181 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,9 @@ | ||
dependencies: | ||
- name: prometheus | ||
repository: https://prometheus-community.github.io/helm-charts | ||
version: 23.1.0 | ||
- name: grafana | ||
repository: https://grafana.github.io/helm-charts | ||
version: 6.58.4 | ||
digest: sha256:d4ffdf4c4b286fd4fdebf553d4d48cf2654c8df431d75d7c22c0bfabfe1c6b15 | ||
generated: "2024-06-02T11:28:44.08768+08:00" |
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,33 @@ | ||
apiVersion: v2 | ||
name: gateway-addons-helm | ||
description: An Add-ons Helm chart for Envoy Gateway | ||
type: application | ||
|
||
version: v0.0.0-latest | ||
appVersion: "latest" | ||
icon: https://raw.githubusercontent.com/envoyproxy/gateway/main/site/assets/icons/logo.svg | ||
|
||
maintainers: | ||
- name: envoy-gateway-steering-committee | ||
url: https://github.com/envoyproxy/gateway/blob/main/GOVERNANCE.md | ||
- name: envoy-gateway-maintainers | ||
url: https://github.com/envoyproxy/gateway/blob/main/CODEOWNERS | ||
|
||
keywords: | ||
- gateway-api | ||
- envoyproxy | ||
- envoy-gateway | ||
- eg | ||
|
||
home: https://gateway.envoyproxy.io/ | ||
|
||
sources: | ||
- https://github.com/envoyproxy/gateway | ||
|
||
dependencies: | ||
- name: prometheus | ||
version: 23.1.0 | ||
repository: https://prometheus-community.github.io/helm-charts | ||
- name: grafana | ||
repository: https://grafana.github.io/helm-charts | ||
version: 6.58.4 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,20 @@ | ||
************************************************************************** | ||
*** PLEASE BE PATIENT: Envoy Gateway may take a few minutes to install *** | ||
************************************************************************** | ||
|
||
Envoy Gateway is an open source project for managing Envoy Proxy as a standalone or Kubernetes-based application gateway. | ||
|
||
Thank you for installing the Add-ons for Envoy Gateway! 🎉 | ||
|
||
Your release is named: {{ .Release.Name }}. 🎉 | ||
|
||
Your release is in namespace: {{ .Release.Namespace }}. 🎉 | ||
|
||
To learn more about the release, try: | ||
|
||
$ helm status {{ .Release.Name }} -n {{ .Release.Namespace }} | ||
$ helm get all {{ .Release.Name }} -n {{ .Release.Namespace }} | ||
|
||
To have a quickstart of the Add-ons for Envoy Gateway, please refer to https://gateway.envoyproxy.io/latest/tasks/observability/. | ||
|
||
To get more details, please visit https://gateway.envoyproxy.io and https://github.com/envoyproxy/gateway. |
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,39 @@ | ||
# Values for Grafana dependency | ||
grafana: | ||
datasources: | ||
datasources.yaml: | ||
apiVersion: 1 | ||
datasources: | ||
- name: Prometheus | ||
type: prometheus | ||
url: http://prometheus-server | ||
adminPassword: admin | ||
service: | ||
type: LoadBalancer | ||
|
||
# Values for Prometheus dependency | ||
prometheus: | ||
# To simplify the deployment, disable non-essential components | ||
alertmanager: | ||
enabled: false | ||
prometheus-pushgateway: | ||
enabled: false | ||
kube-state-metrics: | ||
enabled: false | ||
prometheus-node-exporter: | ||
enabled: false | ||
server: | ||
fullnameOverride: prometheus | ||
persistentVolume: | ||
enabled: false | ||
readinessProbeInitialDelay: 0 | ||
global: | ||
# Speed up scraping a bit from the default | ||
scrape_interval: 15s | ||
service: | ||
# use LoadBalancer to expose prometheus | ||
type: LoadBalancer | ||
# use dockerhub | ||
image: | ||
repository: prom/prometheus | ||
securityContext: null |
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 |
---|---|---|
|
@@ -22,4 +22,3 @@ server: | |
image: | ||
repository: prom/prometheus | ||
securityContext: null | ||
|
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