Skip to content
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

[grafana] Added support for .spec.loadBalancerClass #2730

Closed
wants to merge 52 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
fdf8923
Added support for spec.loadBalancerClass
Sheikh-Abubaker Oct 20, 2023
740e9a5
Updated chart version
Sheikh-Abubaker Oct 20, 2023
9abe7e6
Added support for loadbalancer
Sheikh-Abubaker Oct 21, 2023
871e9b0
Updated values.yaml
Sheikh-Abubaker Oct 22, 2023
698d310
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Oct 22, 2023
3658626
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Oct 24, 2023
7d2a515
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Oct 26, 2023
1d06af9
Update Chart.yaml
Sheikh-Abubaker Oct 26, 2023
ab79a79
Add extraLabels entry
matazr Oct 16, 2023
28c5a88
Add extraLabels entry
matazr Oct 16, 2023
4bd8892
Bumped version
matazr Oct 18, 2023
de14347
run helm-docs
matazr Oct 18, 2023
d00a7ad
Added support for spec.loadBalancerClass
Sheikh-Abubaker Oct 20, 2023
bec1ce8
Updated chart version
Sheikh-Abubaker Oct 20, 2023
8b22287
Added support for loadbalancer
Sheikh-Abubaker Oct 21, 2023
a27cd98
Updated values.yaml
Sheikh-Abubaker Oct 22, 2023
d77d6bb
Corrected Default trace API location of gateway.nginxConfig.file in t…
Sheikh-Abubaker Oct 20, 2023
2dba62b
Adding support for workflow with Github App authentication (#2728)
yorugac Oct 24, 2023
36cbd40
[agent-operator] update helm chart for grafana agent v0.37.3 (#2742)
tpaschalis Oct 26, 2023
1ffb41a
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Oct 26, 2023
ae398f5
Merge branch 'spec_branch' of https://github.com/Sheikh-Abubaker/helm…
Sheikh-Abubaker Oct 26, 2023
ec0d15c
fixed Helm chart should template namespace Signed-off-by: Sheikh-Abub…
Sheikh-Abubaker Oct 7, 2023
d332f37
[loki-distributed] Query scheduler and index gateway join the memberlist
verejoel Oct 9, 2023
748d25d
fix docs
verejoel Oct 9, 2023
6d906a7
tempo-distributed: add missing namespaces to gateway resource
jhedev Sep 28, 2023
2407548
Update Chart.yaml
zanhsieh Oct 17, 2023
5a0f00c
Update README.md
zanhsieh Oct 17, 2023
27d4368
[loki-distributed] Enable custom metrics for HPA
verejoel Oct 13, 2023
3f37746
update Chart version
verejoel Oct 13, 2023
337c61b
update the docs
verejoel Oct 13, 2023
6564021
typo
verejoel Oct 13, 2023
c380f2c
Update Loki to 2.9.2
verejoel Oct 16, 2023
f9f80ac
readme
verejoel Oct 16, 2023
a965ec6
[promtail] bump promtail version to 2.9.2
emilkor1 Oct 17, 2023
ef660e6
add externalTrafficPolicy support
schneidermr Oct 17, 2023
a9d95b7
Add extraLabels entry
matazr Oct 16, 2023
fece74f
Add extraLabels entry
matazr Oct 16, 2023
2b48e58
Bumped version
matazr Oct 18, 2023
98f97c4
run helm-docs
matazr Oct 18, 2023
2d68ef2
Added support for spec.loadBalancerClass
Sheikh-Abubaker Oct 20, 2023
6eeb883
Added support for loadbalancer
Sheikh-Abubaker Oct 21, 2023
d65fe87
Updated values.yaml
Sheikh-Abubaker Oct 22, 2023
56de0d6
Corrected Default trace API location of gateway.nginxConfig.file in t…
Sheikh-Abubaker Oct 20, 2023
fb984c4
Adding support for workflow with Github App authentication (#2728)
yorugac Oct 24, 2023
211ba74
Added support for spec.loadBalancerClass
Sheikh-Abubaker Oct 20, 2023
d625146
Added support for loadbalancer
Sheikh-Abubaker Oct 21, 2023
0f7d962
Updated values.yaml
Sheikh-Abubaker Oct 22, 2023
0e4dc97
Update Chart.yaml
Sheikh-Abubaker Oct 26, 2023
796c768
Update Chart.yaml
Sheikh-Abubaker Oct 26, 2023
cf310ce
Update Chart.yaml Signed-off-by: Sheikh-Abubaker <sheikhabubaker761@…
Sheikh-Abubaker Oct 26, 2023
74b484f
Merge branch 'main' of https://github.com/Sheikh-Abubaker/helm-charts…
Sheikh-Abubaker Oct 26, 2023
0f8b988
Merge branch 'spec_branch' of https://github.com/Sheikh-Abubaker/helm…
Sheikh-Abubaker Oct 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/grafana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: grafana
version: 6.61.1
version: 6.61.2
appVersion: 10.1.5
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
Expand Down
8 changes: 8 additions & 0 deletions charts/grafana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,17 @@ gossipPortName: gossip
## or access it from within the cluster (ClusterIP service). Set the service type and the port to serve it.
## ref: http://kubernetes.io/docs/user-guide/services/
##

service:
enabled: true
type: ClusterIP
loadBalancer:
enabled: true
type: LoadBalancer
status:
loadBalancer:
ingress:
- ip: 192.0.2.127
port: 80
targetPort: 3000
# targetPort: 4181 To be used with a proxy extraContainer
Expand Down
Loading